@alicloud/cms20190101 2.0.9 → 2.0.11

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/src/client.ts CHANGED
@@ -11,12 +11,16 @@ import * as $tea from '@alicloud/tea-typescript';
11
11
  export class AlertEvent extends $tea.Model {
12
12
  alertName?: string;
13
13
  alertStatus?: string;
14
+ arn?: string;
15
+ content?: string;
14
16
  customLabels?: { [key: string]: any };
15
17
  deDupId?: string;
16
18
  details?: string;
17
19
  eventName?: string;
20
+ eventType?: string;
18
21
  expression?: string;
19
22
  metrics?: AlertEventMetrics[];
23
+ product?: string;
20
24
  resourceInfo?: { [key: string]: any };
21
25
  ruleName?: string;
22
26
  severity?: string;
@@ -29,12 +33,16 @@ export class AlertEvent extends $tea.Model {
29
33
  return {
30
34
  alertName: 'AlertName',
31
35
  alertStatus: 'AlertStatus',
36
+ arn: 'Arn',
37
+ content: 'Content',
32
38
  customLabels: 'CustomLabels',
33
39
  deDupId: 'DeDupId',
34
40
  details: 'Details',
35
41
  eventName: 'EventName',
42
+ eventType: 'EventType',
36
43
  expression: 'Expression',
37
44
  metrics: 'Metrics',
45
+ product: 'Product',
38
46
  resourceInfo: 'ResourceInfo',
39
47
  ruleName: 'RuleName',
40
48
  severity: 'Severity',
@@ -50,12 +58,16 @@ export class AlertEvent extends $tea.Model {
50
58
  return {
51
59
  alertName: 'string',
52
60
  alertStatus: 'string',
61
+ arn: 'string',
62
+ content: 'string',
53
63
  customLabels: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
54
64
  deDupId: 'string',
55
65
  details: 'string',
56
66
  eventName: 'string',
67
+ eventType: 'string',
57
68
  expression: 'string',
58
69
  metrics: { 'type': 'array', 'itemType': AlertEventMetrics },
70
+ product: 'string',
59
71
  resourceInfo: { 'type': 'map', 'keyType': 'string', 'valueType': 'any' },
60
72
  ruleName: 'string',
61
73
  severity: 'string',
@@ -317,6 +329,7 @@ export class NotificationStrategy extends $tea.Model {
317
329
  filterSetting?: NotificationStrategyFilterSetting;
318
330
  groupingSetting?: NotificationStrategyGroupingSetting;
319
331
  name?: string;
332
+ product?: string;
320
333
  pushingSetting?: NotificationStrategyPushingSetting;
321
334
  updateTime?: string;
322
335
  userId?: string;
@@ -329,6 +342,7 @@ export class NotificationStrategy extends $tea.Model {
329
342
  filterSetting: 'FilterSetting',
330
343
  groupingSetting: 'GroupingSetting',
331
344
  name: 'Name',
345
+ product: 'Product',
332
346
  pushingSetting: 'PushingSetting',
333
347
  updateTime: 'UpdateTime',
334
348
  userId: 'UserId',
@@ -344,6 +358,7 @@ export class NotificationStrategy extends $tea.Model {
344
358
  filterSetting: NotificationStrategyFilterSetting,
345
359
  groupingSetting: NotificationStrategyGroupingSetting,
346
360
  name: 'string',
361
+ product: 'string',
347
362
  pushingSetting: NotificationStrategyPushingSetting,
348
363
  updateTime: 'string',
349
364
  userId: 'string',
@@ -467,7 +482,9 @@ export class Subscription extends $tea.Model {
467
482
  conditions?: SubscriptionConditions[];
468
483
  createTime?: string;
469
484
  description?: string;
485
+ enabled?: boolean;
470
486
  name?: string;
487
+ product?: string;
471
488
  relation?: string;
472
489
  strategyUuid?: string;
473
490
  updateTime?: string;
@@ -477,7 +494,9 @@ export class Subscription extends $tea.Model {
477
494
  conditions: 'Conditions',
478
495
  createTime: 'CreateTime',
479
496
  description: 'Description',
497
+ enabled: 'Enabled',
480
498
  name: 'Name',
499
+ product: 'Product',
481
500
  relation: 'Relation',
482
501
  strategyUuid: 'StrategyUuid',
483
502
  updateTime: 'UpdateTime',
@@ -490,7 +509,9 @@ export class Subscription extends $tea.Model {
490
509
  conditions: { 'type': 'array', 'itemType': SubscriptionConditions },
491
510
  createTime: 'string',
492
511
  description: 'string',
512
+ enabled: 'boolean',
493
513
  name: 'string',
514
+ product: 'string',
494
515
  relation: 'string',
495
516
  strategyUuid: 'string',
496
517
  updateTime: 'string',
@@ -557,9 +578,9 @@ export class AddTagsResponseBody extends $tea.Model {
557
578
  }
558
579
 
559
580
  export class AddTagsResponse extends $tea.Model {
560
- headers: { [key: string]: string };
561
- statusCode: number;
562
- body: AddTagsResponseBody;
581
+ headers?: { [key: string]: string };
582
+ statusCode?: number;
583
+ body?: AddTagsResponseBody;
563
584
  static names(): { [key: string]: string } {
564
585
  return {
565
586
  headers: 'headers',
@@ -653,9 +674,9 @@ export class ApplyMetricRuleTemplateResponseBody extends $tea.Model {
653
674
  }
654
675
 
655
676
  export class ApplyMetricRuleTemplateResponse extends $tea.Model {
656
- headers: { [key: string]: string };
657
- statusCode: number;
658
- body: ApplyMetricRuleTemplateResponseBody;
677
+ headers?: { [key: string]: string };
678
+ statusCode?: number;
679
+ body?: ApplyMetricRuleTemplateResponseBody;
659
680
  static names(): { [key: string]: string } {
660
681
  return {
661
682
  headers: 'headers',
@@ -731,9 +752,9 @@ export class BatchCreateInstantSiteMonitorResponseBody extends $tea.Model {
731
752
  }
732
753
 
733
754
  export class BatchCreateInstantSiteMonitorResponse extends $tea.Model {
734
- headers: { [key: string]: string };
735
- statusCode: number;
736
- body: BatchCreateInstantSiteMonitorResponseBody;
755
+ headers?: { [key: string]: string };
756
+ statusCode?: number;
757
+ body?: BatchCreateInstantSiteMonitorResponseBody;
737
758
  static names(): { [key: string]: string } {
738
759
  return {
739
760
  headers: 'headers',
@@ -809,9 +830,9 @@ export class BatchCreateIntantSiteMonitorResponseBody extends $tea.Model {
809
830
  }
810
831
 
811
832
  export class BatchCreateIntantSiteMonitorResponse extends $tea.Model {
812
- headers: { [key: string]: string };
813
- statusCode: number;
814
- body: BatchCreateIntantSiteMonitorResponseBody;
833
+ headers?: { [key: string]: string };
834
+ statusCode?: number;
835
+ body?: BatchCreateIntantSiteMonitorResponseBody;
815
836
  static names(): { [key: string]: string } {
816
837
  return {
817
838
  headers: 'headers',
@@ -939,9 +960,9 @@ export class BatchExportResponseBody extends $tea.Model {
939
960
  }
940
961
 
941
962
  export class BatchExportResponse extends $tea.Model {
942
- headers: { [key: string]: string };
943
- statusCode: number;
944
- body: BatchExportResponseBody;
963
+ headers?: { [key: string]: string };
964
+ statusCode?: number;
965
+ body?: BatchExportResponseBody;
945
966
  static names(): { [key: string]: string } {
946
967
  return {
947
968
  headers: 'headers',
@@ -1020,9 +1041,9 @@ export class CreateCmsCallNumOrderResponseBody extends $tea.Model {
1020
1041
  }
1021
1042
 
1022
1043
  export class CreateCmsCallNumOrderResponse extends $tea.Model {
1023
- headers: { [key: string]: string };
1024
- statusCode: number;
1025
- body: CreateCmsCallNumOrderResponseBody;
1044
+ headers?: { [key: string]: string };
1045
+ statusCode?: number;
1046
+ body?: CreateCmsCallNumOrderResponseBody;
1026
1047
  static names(): { [key: string]: string } {
1027
1048
  return {
1028
1049
  headers: 'headers',
@@ -1134,9 +1155,9 @@ export class CreateCmsOrderResponseBody extends $tea.Model {
1134
1155
  }
1135
1156
 
1136
1157
  export class CreateCmsOrderResponse extends $tea.Model {
1137
- headers: { [key: string]: string };
1138
- statusCode: number;
1139
- body: CreateCmsOrderResponseBody;
1158
+ headers?: { [key: string]: string };
1159
+ statusCode?: number;
1160
+ body?: CreateCmsOrderResponseBody;
1140
1161
  static names(): { [key: string]: string } {
1141
1162
  return {
1142
1163
  headers: 'headers',
@@ -1215,9 +1236,9 @@ export class CreateCmsSmspackageOrderResponseBody extends $tea.Model {
1215
1236
  }
1216
1237
 
1217
1238
  export class CreateCmsSmspackageOrderResponse extends $tea.Model {
1218
- headers: { [key: string]: string };
1219
- statusCode: number;
1220
- body: CreateCmsSmspackageOrderResponseBody;
1239
+ headers?: { [key: string]: string };
1240
+ statusCode?: number;
1241
+ body?: CreateCmsSmspackageOrderResponseBody;
1221
1242
  static names(): { [key: string]: string } {
1222
1243
  return {
1223
1244
  headers: 'headers',
@@ -1314,9 +1335,9 @@ export class CreateDynamicTagGroupResponseBody extends $tea.Model {
1314
1335
  }
1315
1336
 
1316
1337
  export class CreateDynamicTagGroupResponse extends $tea.Model {
1317
- headers: { [key: string]: string };
1318
- statusCode: number;
1319
- body: CreateDynamicTagGroupResponseBody;
1338
+ headers?: { [key: string]: string };
1339
+ statusCode?: number;
1340
+ body?: CreateDynamicTagGroupResponseBody;
1320
1341
  static names(): { [key: string]: string } {
1321
1342
  return {
1322
1343
  headers: 'headers',
@@ -1395,9 +1416,9 @@ export class CreateGroupMetricRulesResponseBody extends $tea.Model {
1395
1416
  }
1396
1417
 
1397
1418
  export class CreateGroupMetricRulesResponse extends $tea.Model {
1398
- headers: { [key: string]: string };
1399
- statusCode: number;
1400
- body: CreateGroupMetricRulesResponseBody;
1419
+ headers?: { [key: string]: string };
1420
+ statusCode?: number;
1421
+ body?: CreateGroupMetricRulesResponseBody;
1401
1422
  static names(): { [key: string]: string } {
1402
1423
  return {
1403
1424
  headers: 'headers',
@@ -1485,9 +1506,9 @@ export class CreateGroupMonitoringAgentProcessResponseBody extends $tea.Model {
1485
1506
  }
1486
1507
 
1487
1508
  export class CreateGroupMonitoringAgentProcessResponse extends $tea.Model {
1488
- headers: { [key: string]: string };
1489
- statusCode: number;
1490
- body: CreateGroupMonitoringAgentProcessResponseBody;
1509
+ headers?: { [key: string]: string };
1510
+ statusCode?: number;
1511
+ body?: CreateGroupMonitoringAgentProcessResponseBody;
1491
1512
  static names(): { [key: string]: string } {
1492
1513
  return {
1493
1514
  headers: 'headers',
@@ -1587,9 +1608,9 @@ export class CreateHostAvailabilityResponseBody extends $tea.Model {
1587
1608
  }
1588
1609
 
1589
1610
  export class CreateHostAvailabilityResponse extends $tea.Model {
1590
- headers: { [key: string]: string };
1591
- statusCode: number;
1592
- body: CreateHostAvailabilityResponseBody;
1611
+ headers?: { [key: string]: string };
1612
+ statusCode?: number;
1613
+ body?: CreateHostAvailabilityResponseBody;
1593
1614
  static names(): { [key: string]: string } {
1594
1615
  return {
1595
1616
  headers: 'headers',
@@ -1614,12 +1635,16 @@ export class CreateHostAvailabilityResponse extends $tea.Model {
1614
1635
  export class CreateHybridMonitorNamespaceRequest extends $tea.Model {
1615
1636
  description?: string;
1616
1637
  namespace?: string;
1638
+ namespaceRegion?: string;
1639
+ namespaceType?: string;
1617
1640
  regionId?: string;
1618
1641
  spec?: string;
1619
1642
  static names(): { [key: string]: string } {
1620
1643
  return {
1621
1644
  description: 'Description',
1622
1645
  namespace: 'Namespace',
1646
+ namespaceRegion: 'NamespaceRegion',
1647
+ namespaceType: 'NamespaceType',
1623
1648
  regionId: 'RegionId',
1624
1649
  spec: 'Spec',
1625
1650
  };
@@ -1629,6 +1654,8 @@ export class CreateHybridMonitorNamespaceRequest extends $tea.Model {
1629
1654
  return {
1630
1655
  description: 'string',
1631
1656
  namespace: 'string',
1657
+ namespaceRegion: 'string',
1658
+ namespaceType: 'string',
1632
1659
  regionId: 'string',
1633
1660
  spec: 'string',
1634
1661
  };
@@ -1668,9 +1695,9 @@ export class CreateHybridMonitorNamespaceResponseBody extends $tea.Model {
1668
1695
  }
1669
1696
 
1670
1697
  export class CreateHybridMonitorNamespaceResponse extends $tea.Model {
1671
- headers: { [key: string]: string };
1672
- statusCode: number;
1673
- body: CreateHybridMonitorNamespaceResponseBody;
1698
+ headers?: { [key: string]: string };
1699
+ statusCode?: number;
1700
+ body?: CreateHybridMonitorNamespaceResponseBody;
1674
1701
  static names(): { [key: string]: string } {
1675
1702
  return {
1676
1703
  headers: 'headers',
@@ -1749,9 +1776,9 @@ export class CreateHybridMonitorSLSGroupResponseBody extends $tea.Model {
1749
1776
  }
1750
1777
 
1751
1778
  export class CreateHybridMonitorSLSGroupResponse extends $tea.Model {
1752
- headers: { [key: string]: string };
1753
- statusCode: number;
1754
- body: CreateHybridMonitorSLSGroupResponseBody;
1779
+ headers?: { [key: string]: string };
1780
+ statusCode?: number;
1781
+ body?: CreateHybridMonitorSLSGroupResponseBody;
1755
1782
  static names(): { [key: string]: string } {
1756
1783
  return {
1757
1784
  headers: 'headers',
@@ -1775,6 +1802,7 @@ export class CreateHybridMonitorSLSGroupResponse extends $tea.Model {
1775
1802
 
1776
1803
  export class CreateHybridMonitorTaskRequest extends $tea.Model {
1777
1804
  attachLabels?: CreateHybridMonitorTaskRequestAttachLabels[];
1805
+ cloudAccessId?: string[];
1778
1806
  collectInterval?: string;
1779
1807
  collectTargetType?: string;
1780
1808
  description?: string;
@@ -1790,6 +1818,7 @@ export class CreateHybridMonitorTaskRequest extends $tea.Model {
1790
1818
  static names(): { [key: string]: string } {
1791
1819
  return {
1792
1820
  attachLabels: 'AttachLabels',
1821
+ cloudAccessId: 'CloudAccessId',
1793
1822
  collectInterval: 'CollectInterval',
1794
1823
  collectTargetType: 'CollectTargetType',
1795
1824
  description: 'Description',
@@ -1808,6 +1837,7 @@ export class CreateHybridMonitorTaskRequest extends $tea.Model {
1808
1837
  static types(): { [key: string]: any } {
1809
1838
  return {
1810
1839
  attachLabels: { 'type': 'array', 'itemType': CreateHybridMonitorTaskRequestAttachLabels },
1840
+ cloudAccessId: { 'type': 'array', 'itemType': 'string' },
1811
1841
  collectInterval: 'string',
1812
1842
  collectTargetType: 'string',
1813
1843
  description: 'string',
@@ -1860,9 +1890,9 @@ export class CreateHybridMonitorTaskResponseBody extends $tea.Model {
1860
1890
  }
1861
1891
 
1862
1892
  export class CreateHybridMonitorTaskResponse extends $tea.Model {
1863
- headers: { [key: string]: string };
1864
- statusCode: number;
1865
- body: CreateHybridMonitorTaskResponseBody;
1893
+ headers?: { [key: string]: string };
1894
+ statusCode?: number;
1895
+ body?: CreateHybridMonitorTaskResponseBody;
1866
1896
  static names(): { [key: string]: string } {
1867
1897
  return {
1868
1898
  headers: 'headers',
@@ -1953,9 +1983,9 @@ export class CreateInstantSiteMonitorResponseBody extends $tea.Model {
1953
1983
  }
1954
1984
 
1955
1985
  export class CreateInstantSiteMonitorResponse extends $tea.Model {
1956
- headers: { [key: string]: string };
1957
- statusCode: number;
1958
- body: CreateInstantSiteMonitorResponseBody;
1986
+ headers?: { [key: string]: string };
1987
+ statusCode?: number;
1988
+ body?: CreateInstantSiteMonitorResponseBody;
1959
1989
  static names(): { [key: string]: string } {
1960
1990
  return {
1961
1991
  headers: 'headers',
@@ -2058,9 +2088,9 @@ export class CreateMetricRuleBlackListResponseBody extends $tea.Model {
2058
2088
  }
2059
2089
 
2060
2090
  export class CreateMetricRuleBlackListResponse extends $tea.Model {
2061
- headers: { [key: string]: string };
2062
- statusCode: number;
2063
- body: CreateMetricRuleBlackListResponseBody;
2091
+ headers?: { [key: string]: string };
2092
+ statusCode?: number;
2093
+ body?: CreateMetricRuleBlackListResponseBody;
2064
2094
  static names(): { [key: string]: string } {
2065
2095
  return {
2066
2096
  headers: 'headers',
@@ -2136,9 +2166,9 @@ export class CreateMetricRuleResourcesResponseBody extends $tea.Model {
2136
2166
  }
2137
2167
 
2138
2168
  export class CreateMetricRuleResourcesResponse extends $tea.Model {
2139
- headers: { [key: string]: string };
2140
- statusCode: number;
2141
- body: CreateMetricRuleResourcesResponseBody;
2169
+ headers?: { [key: string]: string };
2170
+ statusCode?: number;
2171
+ body?: CreateMetricRuleResourcesResponseBody;
2142
2172
  static names(): { [key: string]: string } {
2143
2173
  return {
2144
2174
  headers: 'headers',
@@ -2220,9 +2250,9 @@ export class CreateMetricRuleTemplateResponseBody extends $tea.Model {
2220
2250
  }
2221
2251
 
2222
2252
  export class CreateMetricRuleTemplateResponse extends $tea.Model {
2223
- headers: { [key: string]: string };
2224
- statusCode: number;
2225
- body: CreateMetricRuleTemplateResponseBody;
2253
+ headers?: { [key: string]: string };
2254
+ statusCode?: number;
2255
+ body?: CreateMetricRuleTemplateResponseBody;
2226
2256
  static names(): { [key: string]: string } {
2227
2257
  return {
2228
2258
  headers: 'headers',
@@ -2304,9 +2334,9 @@ export class CreateMonitorAgentProcessResponseBody extends $tea.Model {
2304
2334
  }
2305
2335
 
2306
2336
  export class CreateMonitorAgentProcessResponse extends $tea.Model {
2307
- headers: { [key: string]: string };
2308
- statusCode: number;
2309
- body: CreateMonitorAgentProcessResponseBody;
2337
+ headers?: { [key: string]: string };
2338
+ statusCode?: number;
2339
+ body?: CreateMonitorAgentProcessResponseBody;
2310
2340
  static names(): { [key: string]: string } {
2311
2341
  return {
2312
2342
  headers: 'headers',
@@ -2385,9 +2415,9 @@ export class CreateMonitorGroupResponseBody extends $tea.Model {
2385
2415
  }
2386
2416
 
2387
2417
  export class CreateMonitorGroupResponse extends $tea.Model {
2388
- headers: { [key: string]: string };
2389
- statusCode: number;
2390
- body: CreateMonitorGroupResponseBody;
2418
+ headers?: { [key: string]: string };
2419
+ statusCode?: number;
2420
+ body?: CreateMonitorGroupResponseBody;
2391
2421
  static names(): { [key: string]: string } {
2392
2422
  return {
2393
2423
  headers: 'headers',
@@ -2475,9 +2505,9 @@ export class CreateMonitorGroupByResourceGroupIdResponseBody extends $tea.Model
2475
2505
  }
2476
2506
 
2477
2507
  export class CreateMonitorGroupByResourceGroupIdResponse extends $tea.Model {
2478
- headers: { [key: string]: string };
2479
- statusCode: number;
2480
- body: CreateMonitorGroupByResourceGroupIdResponseBody;
2508
+ headers?: { [key: string]: string };
2509
+ statusCode?: number;
2510
+ body?: CreateMonitorGroupByResourceGroupIdResponseBody;
2481
2511
  static names(): { [key: string]: string } {
2482
2512
  return {
2483
2513
  headers: 'headers',
@@ -2553,9 +2583,9 @@ export class CreateMonitorGroupInstancesResponseBody extends $tea.Model {
2553
2583
  }
2554
2584
 
2555
2585
  export class CreateMonitorGroupInstancesResponse extends $tea.Model {
2556
- headers: { [key: string]: string };
2557
- statusCode: number;
2558
- body: CreateMonitorGroupInstancesResponseBody;
2586
+ headers?: { [key: string]: string };
2587
+ statusCode?: number;
2588
+ body?: CreateMonitorGroupInstancesResponseBody;
2559
2589
  static names(): { [key: string]: string } {
2560
2590
  return {
2561
2591
  headers: 'headers',
@@ -2640,9 +2670,9 @@ export class CreateMonitorGroupNotifyPolicyResponseBody extends $tea.Model {
2640
2670
  }
2641
2671
 
2642
2672
  export class CreateMonitorGroupNotifyPolicyResponse extends $tea.Model {
2643
- headers: { [key: string]: string };
2644
- statusCode: number;
2645
- body: CreateMonitorGroupNotifyPolicyResponseBody;
2673
+ headers?: { [key: string]: string };
2674
+ statusCode?: number;
2675
+ body?: CreateMonitorGroupNotifyPolicyResponseBody;
2646
2676
  static names(): { [key: string]: string } {
2647
2677
  return {
2648
2678
  headers: 'headers',
@@ -2724,9 +2754,9 @@ export class CreateMonitoringAgentProcessResponseBody extends $tea.Model {
2724
2754
  }
2725
2755
 
2726
2756
  export class CreateMonitoringAgentProcessResponse extends $tea.Model {
2727
- headers: { [key: string]: string };
2728
- statusCode: number;
2729
- body: CreateMonitoringAgentProcessResponseBody;
2757
+ headers?: { [key: string]: string };
2758
+ statusCode?: number;
2759
+ body?: CreateMonitoringAgentProcessResponseBody;
2730
2760
  static names(): { [key: string]: string } {
2731
2761
  return {
2732
2762
  headers: 'headers',
@@ -2826,9 +2856,9 @@ export class CreateSiteMonitorResponseBody extends $tea.Model {
2826
2856
  }
2827
2857
 
2828
2858
  export class CreateSiteMonitorResponse extends $tea.Model {
2829
- headers: { [key: string]: string };
2830
- statusCode: number;
2831
- body: CreateSiteMonitorResponseBody;
2859
+ headers?: { [key: string]: string };
2860
+ statusCode?: number;
2861
+ body?: CreateSiteMonitorResponseBody;
2832
2862
  static names(): { [key: string]: string } {
2833
2863
  return {
2834
2864
  headers: 'headers',
@@ -2950,9 +2980,9 @@ export class CursorResponseBody extends $tea.Model {
2950
2980
  }
2951
2981
 
2952
2982
  export class CursorResponse extends $tea.Model {
2953
- headers: { [key: string]: string };
2954
- statusCode: number;
2955
- body: CursorResponseBody;
2983
+ headers?: { [key: string]: string };
2984
+ statusCode?: number;
2985
+ body?: CursorResponseBody;
2956
2986
  static names(): { [key: string]: string } {
2957
2987
  return {
2958
2988
  headers: 'headers',
@@ -3022,9 +3052,9 @@ export class DeleteContactResponseBody extends $tea.Model {
3022
3052
  }
3023
3053
 
3024
3054
  export class DeleteContactResponse extends $tea.Model {
3025
- headers: { [key: string]: string };
3026
- statusCode: number;
3027
- body: DeleteContactResponseBody;
3055
+ headers?: { [key: string]: string };
3056
+ statusCode?: number;
3057
+ body?: DeleteContactResponseBody;
3028
3058
  static names(): { [key: string]: string } {
3029
3059
  return {
3030
3060
  headers: 'headers',
@@ -3094,9 +3124,9 @@ export class DeleteContactGroupResponseBody extends $tea.Model {
3094
3124
  }
3095
3125
 
3096
3126
  export class DeleteContactGroupResponse extends $tea.Model {
3097
- headers: { [key: string]: string };
3098
- statusCode: number;
3099
- body: DeleteContactGroupResponseBody;
3127
+ headers?: { [key: string]: string };
3128
+ statusCode?: number;
3129
+ body?: DeleteContactGroupResponseBody;
3100
3130
  static names(): { [key: string]: string } {
3101
3131
  return {
3102
3132
  headers: 'headers',
@@ -3175,9 +3205,9 @@ export class DeleteCustomMetricResponseBody extends $tea.Model {
3175
3205
  }
3176
3206
 
3177
3207
  export class DeleteCustomMetricResponse extends $tea.Model {
3178
- headers: { [key: string]: string };
3179
- statusCode: number;
3180
- body: DeleteCustomMetricResponseBody;
3208
+ headers?: { [key: string]: string };
3209
+ statusCode?: number;
3210
+ body?: DeleteCustomMetricResponseBody;
3181
3211
  static names(): { [key: string]: string } {
3182
3212
  return {
3183
3213
  headers: 'headers',
@@ -3250,9 +3280,9 @@ export class DeleteDynamicTagGroupResponseBody extends $tea.Model {
3250
3280
  }
3251
3281
 
3252
3282
  export class DeleteDynamicTagGroupResponse extends $tea.Model {
3253
- headers: { [key: string]: string };
3254
- statusCode: number;
3255
- body: DeleteDynamicTagGroupResponseBody;
3283
+ headers?: { [key: string]: string };
3284
+ statusCode?: number;
3285
+ body?: DeleteDynamicTagGroupResponseBody;
3256
3286
  static names(): { [key: string]: string } {
3257
3287
  return {
3258
3288
  headers: 'headers',
@@ -3328,9 +3358,9 @@ export class DeleteEventRuleTargetsResponseBody extends $tea.Model {
3328
3358
  }
3329
3359
 
3330
3360
  export class DeleteEventRuleTargetsResponse extends $tea.Model {
3331
- headers: { [key: string]: string };
3332
- statusCode: number;
3333
- body: DeleteEventRuleTargetsResponseBody;
3361
+ headers?: { [key: string]: string };
3362
+ statusCode?: number;
3363
+ body?: DeleteEventRuleTargetsResponseBody;
3334
3364
  static names(): { [key: string]: string } {
3335
3365
  return {
3336
3366
  headers: 'headers',
@@ -3400,9 +3430,9 @@ export class DeleteEventRulesResponseBody extends $tea.Model {
3400
3430
  }
3401
3431
 
3402
3432
  export class DeleteEventRulesResponse extends $tea.Model {
3403
- headers: { [key: string]: string };
3404
- statusCode: number;
3405
- body: DeleteEventRulesResponseBody;
3433
+ headers?: { [key: string]: string };
3434
+ statusCode?: number;
3435
+ body?: DeleteEventRulesResponseBody;
3406
3436
  static names(): { [key: string]: string } {
3407
3437
  return {
3408
3438
  headers: 'headers',
@@ -3475,9 +3505,9 @@ export class DeleteExporterOutputResponseBody extends $tea.Model {
3475
3505
  }
3476
3506
 
3477
3507
  export class DeleteExporterOutputResponse extends $tea.Model {
3478
- headers: { [key: string]: string };
3479
- statusCode: number;
3480
- body: DeleteExporterOutputResponseBody;
3508
+ headers?: { [key: string]: string };
3509
+ statusCode?: number;
3510
+ body?: DeleteExporterOutputResponseBody;
3481
3511
  static names(): { [key: string]: string } {
3482
3512
  return {
3483
3513
  headers: 'headers',
@@ -3550,9 +3580,9 @@ export class DeleteExporterRuleResponseBody extends $tea.Model {
3550
3580
  }
3551
3581
 
3552
3582
  export class DeleteExporterRuleResponse extends $tea.Model {
3553
- headers: { [key: string]: string };
3554
- statusCode: number;
3555
- body: DeleteExporterRuleResponseBody;
3583
+ headers?: { [key: string]: string };
3584
+ statusCode?: number;
3585
+ body?: DeleteExporterRuleResponseBody;
3556
3586
  static names(): { [key: string]: string } {
3557
3587
  return {
3558
3588
  headers: 'headers',
@@ -3628,9 +3658,9 @@ export class DeleteGroupMonitoringAgentProcessResponseBody extends $tea.Model {
3628
3658
  }
3629
3659
 
3630
3660
  export class DeleteGroupMonitoringAgentProcessResponse extends $tea.Model {
3631
- headers: { [key: string]: string };
3632
- statusCode: number;
3633
- body: DeleteGroupMonitoringAgentProcessResponseBody;
3661
+ headers?: { [key: string]: string };
3662
+ statusCode?: number;
3663
+ body?: DeleteGroupMonitoringAgentProcessResponseBody;
3634
3664
  static names(): { [key: string]: string } {
3635
3665
  return {
3636
3666
  headers: 'headers',
@@ -3703,9 +3733,9 @@ export class DeleteHostAvailabilityResponseBody extends $tea.Model {
3703
3733
  }
3704
3734
 
3705
3735
  export class DeleteHostAvailabilityResponse extends $tea.Model {
3706
- headers: { [key: string]: string };
3707
- statusCode: number;
3708
- body: DeleteHostAvailabilityResponseBody;
3736
+ headers?: { [key: string]: string };
3737
+ statusCode?: number;
3738
+ body?: DeleteHostAvailabilityResponseBody;
3709
3739
  static names(): { [key: string]: string } {
3710
3740
  return {
3711
3741
  headers: 'headers',
@@ -3778,9 +3808,9 @@ export class DeleteHybridMonitorNamespaceResponseBody extends $tea.Model {
3778
3808
  }
3779
3809
 
3780
3810
  export class DeleteHybridMonitorNamespaceResponse extends $tea.Model {
3781
- headers: { [key: string]: string };
3782
- statusCode: number;
3783
- body: DeleteHybridMonitorNamespaceResponseBody;
3811
+ headers?: { [key: string]: string };
3812
+ statusCode?: number;
3813
+ body?: DeleteHybridMonitorNamespaceResponseBody;
3784
3814
  static names(): { [key: string]: string } {
3785
3815
  return {
3786
3816
  headers: 'headers',
@@ -3853,9 +3883,9 @@ export class DeleteHybridMonitorSLSGroupResponseBody extends $tea.Model {
3853
3883
  }
3854
3884
 
3855
3885
  export class DeleteHybridMonitorSLSGroupResponse extends $tea.Model {
3856
- headers: { [key: string]: string };
3857
- statusCode: number;
3858
- body: DeleteHybridMonitorSLSGroupResponseBody;
3886
+ headers?: { [key: string]: string };
3887
+ statusCode?: number;
3888
+ body?: DeleteHybridMonitorSLSGroupResponseBody;
3859
3889
  static names(): { [key: string]: string } {
3860
3890
  return {
3861
3891
  headers: 'headers',
@@ -3934,9 +3964,9 @@ export class DeleteHybridMonitorTaskResponseBody extends $tea.Model {
3934
3964
  }
3935
3965
 
3936
3966
  export class DeleteHybridMonitorTaskResponse extends $tea.Model {
3937
- headers: { [key: string]: string };
3938
- statusCode: number;
3939
- body: DeleteHybridMonitorTaskResponseBody;
3967
+ headers?: { [key: string]: string };
3968
+ statusCode?: number;
3969
+ body?: DeleteHybridMonitorTaskResponseBody;
3940
3970
  static names(): { [key: string]: string } {
3941
3971
  return {
3942
3972
  headers: 'headers',
@@ -4009,9 +4039,9 @@ export class DeleteLogMonitorResponseBody extends $tea.Model {
4009
4039
  }
4010
4040
 
4011
4041
  export class DeleteLogMonitorResponse extends $tea.Model {
4012
- headers: { [key: string]: string };
4013
- statusCode: number;
4014
- body: DeleteLogMonitorResponseBody;
4042
+ headers?: { [key: string]: string };
4043
+ statusCode?: number;
4044
+ body?: DeleteLogMonitorResponseBody;
4015
4045
  static names(): { [key: string]: string } {
4016
4046
  return {
4017
4047
  headers: 'headers',
@@ -4087,9 +4117,9 @@ export class DeleteMetricRuleBlackListResponseBody extends $tea.Model {
4087
4117
  }
4088
4118
 
4089
4119
  export class DeleteMetricRuleBlackListResponse extends $tea.Model {
4090
- headers: { [key: string]: string };
4091
- statusCode: number;
4092
- body: DeleteMetricRuleBlackListResponseBody;
4120
+ headers?: { [key: string]: string };
4121
+ statusCode?: number;
4122
+ body?: DeleteMetricRuleBlackListResponseBody;
4093
4123
  static names(): { [key: string]: string } {
4094
4124
  return {
4095
4125
  headers: 'headers',
@@ -4162,9 +4192,9 @@ export class DeleteMetricRuleResourcesResponseBody extends $tea.Model {
4162
4192
  }
4163
4193
 
4164
4194
  export class DeleteMetricRuleResourcesResponse extends $tea.Model {
4165
- headers: { [key: string]: string };
4166
- statusCode: number;
4167
- body: DeleteMetricRuleResourcesResponseBody;
4195
+ headers?: { [key: string]: string };
4196
+ statusCode?: number;
4197
+ body?: DeleteMetricRuleResourcesResponseBody;
4168
4198
  static names(): { [key: string]: string } {
4169
4199
  return {
4170
4200
  headers: 'headers',
@@ -4243,9 +4273,9 @@ export class DeleteMetricRuleTargetsResponseBody extends $tea.Model {
4243
4273
  }
4244
4274
 
4245
4275
  export class DeleteMetricRuleTargetsResponse extends $tea.Model {
4246
- headers: { [key: string]: string };
4247
- statusCode: number;
4248
- body: DeleteMetricRuleTargetsResponseBody;
4276
+ headers?: { [key: string]: string };
4277
+ statusCode?: number;
4278
+ body?: DeleteMetricRuleTargetsResponseBody;
4249
4279
  static names(): { [key: string]: string } {
4250
4280
  return {
4251
4281
  headers: 'headers',
@@ -4321,9 +4351,9 @@ export class DeleteMetricRuleTemplateResponseBody extends $tea.Model {
4321
4351
  }
4322
4352
 
4323
4353
  export class DeleteMetricRuleTemplateResponse extends $tea.Model {
4324
- headers: { [key: string]: string };
4325
- statusCode: number;
4326
- body: DeleteMetricRuleTemplateResponseBody;
4354
+ headers?: { [key: string]: string };
4355
+ statusCode?: number;
4356
+ body?: DeleteMetricRuleTemplateResponseBody;
4327
4357
  static names(): { [key: string]: string } {
4328
4358
  return {
4329
4359
  headers: 'headers',
@@ -4396,9 +4426,9 @@ export class DeleteMetricRulesResponseBody extends $tea.Model {
4396
4426
  }
4397
4427
 
4398
4428
  export class DeleteMetricRulesResponse extends $tea.Model {
4399
- headers: { [key: string]: string };
4400
- statusCode: number;
4401
- body: DeleteMetricRulesResponseBody;
4429
+ headers?: { [key: string]: string };
4430
+ statusCode?: number;
4431
+ body?: DeleteMetricRulesResponseBody;
4402
4432
  static names(): { [key: string]: string } {
4403
4433
  return {
4404
4434
  headers: 'headers',
@@ -4474,9 +4504,9 @@ export class DeleteMonitorGroupResponseBody extends $tea.Model {
4474
4504
  }
4475
4505
 
4476
4506
  export class DeleteMonitorGroupResponse extends $tea.Model {
4477
- headers: { [key: string]: string };
4478
- statusCode: number;
4479
- body: DeleteMonitorGroupResponseBody;
4507
+ headers?: { [key: string]: string };
4508
+ statusCode?: number;
4509
+ body?: DeleteMonitorGroupResponseBody;
4480
4510
  static names(): { [key: string]: string } {
4481
4511
  return {
4482
4512
  headers: 'headers',
@@ -4552,9 +4582,9 @@ export class DeleteMonitorGroupDynamicRuleResponseBody extends $tea.Model {
4552
4582
  }
4553
4583
 
4554
4584
  export class DeleteMonitorGroupDynamicRuleResponse extends $tea.Model {
4555
- headers: { [key: string]: string };
4556
- statusCode: number;
4557
- body: DeleteMonitorGroupDynamicRuleResponseBody;
4585
+ headers?: { [key: string]: string };
4586
+ statusCode?: number;
4587
+ body?: DeleteMonitorGroupDynamicRuleResponseBody;
4558
4588
  static names(): { [key: string]: string } {
4559
4589
  return {
4560
4590
  headers: 'headers',
@@ -4633,9 +4663,9 @@ export class DeleteMonitorGroupInstancesResponseBody extends $tea.Model {
4633
4663
  }
4634
4664
 
4635
4665
  export class DeleteMonitorGroupInstancesResponse extends $tea.Model {
4636
- headers: { [key: string]: string };
4637
- statusCode: number;
4638
- body: DeleteMonitorGroupInstancesResponseBody;
4666
+ headers?: { [key: string]: string };
4667
+ statusCode?: number;
4668
+ body?: DeleteMonitorGroupInstancesResponseBody;
4639
4669
  static names(): { [key: string]: string } {
4640
4670
  return {
4641
4671
  headers: 'headers',
@@ -4714,9 +4744,9 @@ export class DeleteMonitorGroupNotifyPolicyResponseBody extends $tea.Model {
4714
4744
  }
4715
4745
 
4716
4746
  export class DeleteMonitorGroupNotifyPolicyResponse extends $tea.Model {
4717
- headers: { [key: string]: string };
4718
- statusCode: number;
4719
- body: DeleteMonitorGroupNotifyPolicyResponseBody;
4747
+ headers?: { [key: string]: string };
4748
+ statusCode?: number;
4749
+ body?: DeleteMonitorGroupNotifyPolicyResponseBody;
4720
4750
  static names(): { [key: string]: string } {
4721
4751
  return {
4722
4752
  headers: 'headers',
@@ -4795,9 +4825,9 @@ export class DeleteMonitoringAgentProcessResponseBody extends $tea.Model {
4795
4825
  }
4796
4826
 
4797
4827
  export class DeleteMonitoringAgentProcessResponse extends $tea.Model {
4798
- headers: { [key: string]: string };
4799
- statusCode: number;
4800
- body: DeleteMonitoringAgentProcessResponseBody;
4828
+ headers?: { [key: string]: string };
4829
+ statusCode?: number;
4830
+ body?: DeleteMonitoringAgentProcessResponseBody;
4801
4831
  static names(): { [key: string]: string } {
4802
4832
  return {
4803
4833
  headers: 'headers',
@@ -4876,9 +4906,9 @@ export class DeleteSiteMonitorsResponseBody extends $tea.Model {
4876
4906
  }
4877
4907
 
4878
4908
  export class DeleteSiteMonitorsResponse extends $tea.Model {
4879
- headers: { [key: string]: string };
4880
- statusCode: number;
4881
- body: DeleteSiteMonitorsResponseBody;
4909
+ headers?: { [key: string]: string };
4910
+ statusCode?: number;
4911
+ body?: DeleteSiteMonitorsResponseBody;
4882
4912
  static names(): { [key: string]: string } {
4883
4913
  return {
4884
4914
  headers: 'headers',
@@ -4954,9 +4984,9 @@ export class DescribeActiveMetricRuleListResponseBody extends $tea.Model {
4954
4984
  }
4955
4985
 
4956
4986
  export class DescribeActiveMetricRuleListResponse extends $tea.Model {
4957
- headers: { [key: string]: string };
4958
- statusCode: number;
4959
- body: DescribeActiveMetricRuleListResponseBody;
4987
+ headers?: { [key: string]: string };
4988
+ statusCode?: number;
4989
+ body?: DescribeActiveMetricRuleListResponseBody;
4960
4990
  static names(): { [key: string]: string } {
4961
4991
  return {
4962
4992
  headers: 'headers',
@@ -5068,9 +5098,9 @@ export class DescribeAlertHistoryListResponseBody extends $tea.Model {
5068
5098
  }
5069
5099
 
5070
5100
  export class DescribeAlertHistoryListResponse extends $tea.Model {
5071
- headers: { [key: string]: string };
5072
- statusCode: number;
5073
- body: DescribeAlertHistoryListResponseBody;
5101
+ headers?: { [key: string]: string };
5102
+ statusCode?: number;
5103
+ body?: DescribeAlertHistoryListResponseBody;
5074
5104
  static names(): { [key: string]: string } {
5075
5105
  return {
5076
5106
  headers: 'headers',
@@ -5095,6 +5125,7 @@ export class DescribeAlertHistoryListResponse extends $tea.Model {
5095
5125
  export class DescribeAlertLogCountRequest extends $tea.Model {
5096
5126
  contactGroup?: string;
5097
5127
  endTime?: number;
5128
+ eventType?: string;
5098
5129
  groupBy?: string;
5099
5130
  groupId?: string;
5100
5131
  lastMin?: string;
@@ -5105,6 +5136,7 @@ export class DescribeAlertLogCountRequest extends $tea.Model {
5105
5136
  pageSize?: number;
5106
5137
  product?: string;
5107
5138
  regionId?: string;
5139
+ ruleId?: string;
5108
5140
  ruleName?: string;
5109
5141
  searchKey?: string;
5110
5142
  sendStatus?: string;
@@ -5114,6 +5146,7 @@ export class DescribeAlertLogCountRequest extends $tea.Model {
5114
5146
  return {
5115
5147
  contactGroup: 'ContactGroup',
5116
5148
  endTime: 'EndTime',
5149
+ eventType: 'EventType',
5117
5150
  groupBy: 'GroupBy',
5118
5151
  groupId: 'GroupId',
5119
5152
  lastMin: 'LastMin',
@@ -5124,6 +5157,7 @@ export class DescribeAlertLogCountRequest extends $tea.Model {
5124
5157
  pageSize: 'PageSize',
5125
5158
  product: 'Product',
5126
5159
  regionId: 'RegionId',
5160
+ ruleId: 'RuleId',
5127
5161
  ruleName: 'RuleName',
5128
5162
  searchKey: 'SearchKey',
5129
5163
  sendStatus: 'SendStatus',
@@ -5136,6 +5170,7 @@ export class DescribeAlertLogCountRequest extends $tea.Model {
5136
5170
  return {
5137
5171
  contactGroup: 'string',
5138
5172
  endTime: 'number',
5173
+ eventType: 'string',
5139
5174
  groupBy: 'string',
5140
5175
  groupId: 'string',
5141
5176
  lastMin: 'string',
@@ -5146,6 +5181,7 @@ export class DescribeAlertLogCountRequest extends $tea.Model {
5146
5181
  pageSize: 'number',
5147
5182
  product: 'string',
5148
5183
  regionId: 'string',
5184
+ ruleId: 'string',
5149
5185
  ruleName: 'string',
5150
5186
  searchKey: 'string',
5151
5187
  sendStatus: 'string',
@@ -5191,9 +5227,9 @@ export class DescribeAlertLogCountResponseBody extends $tea.Model {
5191
5227
  }
5192
5228
 
5193
5229
  export class DescribeAlertLogCountResponse extends $tea.Model {
5194
- headers: { [key: string]: string };
5195
- statusCode: number;
5196
- body: DescribeAlertLogCountResponseBody;
5230
+ headers?: { [key: string]: string };
5231
+ statusCode?: number;
5232
+ body?: DescribeAlertLogCountResponseBody;
5197
5233
  static names(): { [key: string]: string } {
5198
5234
  return {
5199
5235
  headers: 'headers',
@@ -5218,6 +5254,7 @@ export class DescribeAlertLogCountResponse extends $tea.Model {
5218
5254
  export class DescribeAlertLogHistogramRequest extends $tea.Model {
5219
5255
  contactGroup?: string;
5220
5256
  endTime?: number;
5257
+ eventType?: string;
5221
5258
  groupBy?: string;
5222
5259
  groupId?: string;
5223
5260
  lastMin?: string;
@@ -5228,6 +5265,7 @@ export class DescribeAlertLogHistogramRequest extends $tea.Model {
5228
5265
  pageSize?: number;
5229
5266
  product?: string;
5230
5267
  regionId?: string;
5268
+ ruleId?: string;
5231
5269
  ruleName?: string;
5232
5270
  searchKey?: string;
5233
5271
  sendStatus?: string;
@@ -5237,6 +5275,7 @@ export class DescribeAlertLogHistogramRequest extends $tea.Model {
5237
5275
  return {
5238
5276
  contactGroup: 'ContactGroup',
5239
5277
  endTime: 'EndTime',
5278
+ eventType: 'EventType',
5240
5279
  groupBy: 'GroupBy',
5241
5280
  groupId: 'GroupId',
5242
5281
  lastMin: 'LastMin',
@@ -5247,6 +5286,7 @@ export class DescribeAlertLogHistogramRequest extends $tea.Model {
5247
5286
  pageSize: 'PageSize',
5248
5287
  product: 'Product',
5249
5288
  regionId: 'RegionId',
5289
+ ruleId: 'RuleId',
5250
5290
  ruleName: 'RuleName',
5251
5291
  searchKey: 'SearchKey',
5252
5292
  sendStatus: 'SendStatus',
@@ -5259,6 +5299,7 @@ export class DescribeAlertLogHistogramRequest extends $tea.Model {
5259
5299
  return {
5260
5300
  contactGroup: 'string',
5261
5301
  endTime: 'number',
5302
+ eventType: 'string',
5262
5303
  groupBy: 'string',
5263
5304
  groupId: 'string',
5264
5305
  lastMin: 'string',
@@ -5269,6 +5310,7 @@ export class DescribeAlertLogHistogramRequest extends $tea.Model {
5269
5310
  pageSize: 'number',
5270
5311
  product: 'string',
5271
5312
  regionId: 'string',
5313
+ ruleId: 'string',
5272
5314
  ruleName: 'string',
5273
5315
  searchKey: 'string',
5274
5316
  sendStatus: 'string',
@@ -5314,9 +5356,9 @@ export class DescribeAlertLogHistogramResponseBody extends $tea.Model {
5314
5356
  }
5315
5357
 
5316
5358
  export class DescribeAlertLogHistogramResponse extends $tea.Model {
5317
- headers: { [key: string]: string };
5318
- statusCode: number;
5319
- body: DescribeAlertLogHistogramResponseBody;
5359
+ headers?: { [key: string]: string };
5360
+ statusCode?: number;
5361
+ body?: DescribeAlertLogHistogramResponseBody;
5320
5362
  static names(): { [key: string]: string } {
5321
5363
  return {
5322
5364
  headers: 'headers',
@@ -5341,6 +5383,7 @@ export class DescribeAlertLogHistogramResponse extends $tea.Model {
5341
5383
  export class DescribeAlertLogListRequest extends $tea.Model {
5342
5384
  contactGroup?: string;
5343
5385
  endTime?: number;
5386
+ eventType?: string;
5344
5387
  groupBy?: string;
5345
5388
  groupId?: string;
5346
5389
  lastMin?: string;
@@ -5361,6 +5404,7 @@ export class DescribeAlertLogListRequest extends $tea.Model {
5361
5404
  return {
5362
5405
  contactGroup: 'ContactGroup',
5363
5406
  endTime: 'EndTime',
5407
+ eventType: 'EventType',
5364
5408
  groupBy: 'GroupBy',
5365
5409
  groupId: 'GroupId',
5366
5410
  lastMin: 'LastMin',
@@ -5384,6 +5428,7 @@ export class DescribeAlertLogListRequest extends $tea.Model {
5384
5428
  return {
5385
5429
  contactGroup: 'string',
5386
5430
  endTime: 'number',
5431
+ eventType: 'string',
5387
5432
  groupBy: 'string',
5388
5433
  groupId: 'string',
5389
5434
  lastMin: 'string',
@@ -5446,9 +5491,9 @@ export class DescribeAlertLogListResponseBody extends $tea.Model {
5446
5491
  }
5447
5492
 
5448
5493
  export class DescribeAlertLogListResponse extends $tea.Model {
5449
- headers: { [key: string]: string };
5450
- statusCode: number;
5451
- body: DescribeAlertLogListResponseBody;
5494
+ headers?: { [key: string]: string };
5495
+ statusCode?: number;
5496
+ body?: DescribeAlertLogListResponseBody;
5452
5497
  static names(): { [key: string]: string } {
5453
5498
  return {
5454
5499
  headers: 'headers',
@@ -5545,9 +5590,9 @@ export class DescribeAlertingMetricRuleResourcesResponseBody extends $tea.Model
5545
5590
  }
5546
5591
 
5547
5592
  export class DescribeAlertingMetricRuleResourcesResponse extends $tea.Model {
5548
- headers: { [key: string]: string };
5549
- statusCode: number;
5550
- body: DescribeAlertingMetricRuleResourcesResponseBody;
5593
+ headers?: { [key: string]: string };
5594
+ statusCode?: number;
5595
+ body?: DescribeAlertingMetricRuleResourcesResponseBody;
5551
5596
  static names(): { [key: string]: string } {
5552
5597
  return {
5553
5598
  headers: 'headers',
@@ -5632,9 +5677,9 @@ export class DescribeContactGroupListResponseBody extends $tea.Model {
5632
5677
  }
5633
5678
 
5634
5679
  export class DescribeContactGroupListResponse extends $tea.Model {
5635
- headers: { [key: string]: string };
5636
- statusCode: number;
5637
- body: DescribeContactGroupListResponseBody;
5680
+ headers?: { [key: string]: string };
5681
+ statusCode?: number;
5682
+ body?: DescribeContactGroupListResponseBody;
5638
5683
  static names(): { [key: string]: string } {
5639
5684
  return {
5640
5685
  headers: 'headers',
@@ -5725,9 +5770,9 @@ export class DescribeContactListResponseBody extends $tea.Model {
5725
5770
  }
5726
5771
 
5727
5772
  export class DescribeContactListResponse extends $tea.Model {
5728
- headers: { [key: string]: string };
5729
- statusCode: number;
5730
- body: DescribeContactListResponseBody;
5773
+ headers?: { [key: string]: string };
5774
+ statusCode?: number;
5775
+ body?: DescribeContactListResponseBody;
5731
5776
  static names(): { [key: string]: string } {
5732
5777
  return {
5733
5778
  headers: 'headers',
@@ -5803,9 +5848,9 @@ export class DescribeContactListByContactGroupResponseBody extends $tea.Model {
5803
5848
  }
5804
5849
 
5805
5850
  export class DescribeContactListByContactGroupResponse extends $tea.Model {
5806
- headers: { [key: string]: string };
5807
- statusCode: number;
5808
- body: DescribeContactListByContactGroupResponseBody;
5851
+ headers?: { [key: string]: string };
5852
+ statusCode?: number;
5853
+ body?: DescribeContactListByContactGroupResponseBody;
5809
5854
  static names(): { [key: string]: string } {
5810
5855
  return {
5811
5856
  headers: 'headers',
@@ -5902,9 +5947,9 @@ export class DescribeCustomEventAttributeResponseBody extends $tea.Model {
5902
5947
  }
5903
5948
 
5904
5949
  export class DescribeCustomEventAttributeResponse extends $tea.Model {
5905
- headers: { [key: string]: string };
5906
- statusCode: number;
5907
- body: DescribeCustomEventAttributeResponseBody;
5950
+ headers?: { [key: string]: string };
5951
+ statusCode?: number;
5952
+ body?: DescribeCustomEventAttributeResponseBody;
5908
5953
  static names(): { [key: string]: string } {
5909
5954
  return {
5910
5955
  headers: 'headers',
@@ -5995,9 +6040,9 @@ export class DescribeCustomEventCountResponseBody extends $tea.Model {
5995
6040
  }
5996
6041
 
5997
6042
  export class DescribeCustomEventCountResponse extends $tea.Model {
5998
- headers: { [key: string]: string };
5999
- statusCode: number;
6000
- body: DescribeCustomEventCountResponseBody;
6043
+ headers?: { [key: string]: string };
6044
+ statusCode?: number;
6045
+ body?: DescribeCustomEventCountResponseBody;
6001
6046
  static names(): { [key: string]: string } {
6002
6047
  return {
6003
6048
  headers: 'headers',
@@ -6091,9 +6136,9 @@ export class DescribeCustomEventHistogramResponseBody extends $tea.Model {
6091
6136
  }
6092
6137
 
6093
6138
  export class DescribeCustomEventHistogramResponse extends $tea.Model {
6094
- headers: { [key: string]: string };
6095
- statusCode: number;
6096
- body: DescribeCustomEventHistogramResponseBody;
6139
+ headers?: { [key: string]: string };
6140
+ statusCode?: number;
6141
+ body?: DescribeCustomEventHistogramResponseBody;
6097
6142
  static names(): { [key: string]: string } {
6098
6143
  return {
6099
6144
  headers: 'headers',
@@ -6181,9 +6226,9 @@ export class DescribeCustomMetricListResponseBody extends $tea.Model {
6181
6226
  }
6182
6227
 
6183
6228
  export class DescribeCustomMetricListResponse extends $tea.Model {
6184
- headers: { [key: string]: string };
6185
- statusCode: number;
6186
- body: DescribeCustomMetricListResponseBody;
6229
+ headers?: { [key: string]: string };
6230
+ statusCode?: number;
6231
+ body?: DescribeCustomMetricListResponseBody;
6187
6232
  static names(): { [key: string]: string } {
6188
6233
  return {
6189
6234
  headers: 'headers',
@@ -6280,9 +6325,9 @@ export class DescribeDynamicTagRuleListResponseBody extends $tea.Model {
6280
6325
  }
6281
6326
 
6282
6327
  export class DescribeDynamicTagRuleListResponse extends $tea.Model {
6283
- headers: { [key: string]: string };
6284
- statusCode: number;
6285
- body: DescribeDynamicTagRuleListResponseBody;
6328
+ headers?: { [key: string]: string };
6329
+ statusCode?: number;
6330
+ body?: DescribeDynamicTagRuleListResponseBody;
6286
6331
  static names(): { [key: string]: string } {
6287
6332
  return {
6288
6333
  headers: 'headers',
@@ -6361,9 +6406,9 @@ export class DescribeEventRuleAttributeResponseBody extends $tea.Model {
6361
6406
  }
6362
6407
 
6363
6408
  export class DescribeEventRuleAttributeResponse extends $tea.Model {
6364
- headers: { [key: string]: string };
6365
- statusCode: number;
6366
- body: DescribeEventRuleAttributeResponseBody;
6409
+ headers?: { [key: string]: string };
6410
+ statusCode?: number;
6411
+ body?: DescribeEventRuleAttributeResponseBody;
6367
6412
  static names(): { [key: string]: string } {
6368
6413
  return {
6369
6414
  headers: 'headers',
@@ -6454,9 +6499,9 @@ export class DescribeEventRuleListResponseBody extends $tea.Model {
6454
6499
  }
6455
6500
 
6456
6501
  export class DescribeEventRuleListResponse extends $tea.Model {
6457
- headers: { [key: string]: string };
6458
- statusCode: number;
6459
- body: DescribeEventRuleListResponseBody;
6502
+ headers?: { [key: string]: string };
6503
+ statusCode?: number;
6504
+ body?: DescribeEventRuleListResponseBody;
6460
6505
  static names(): { [key: string]: string } {
6461
6506
  return {
6462
6507
  headers: 'headers',
@@ -6544,9 +6589,9 @@ export class DescribeEventRuleTargetListResponseBody extends $tea.Model {
6544
6589
  }
6545
6590
 
6546
6591
  export class DescribeEventRuleTargetListResponse extends $tea.Model {
6547
- headers: { [key: string]: string };
6548
- statusCode: number;
6549
- body: DescribeEventRuleTargetListResponseBody;
6592
+ headers?: { [key: string]: string };
6593
+ statusCode?: number;
6594
+ body?: DescribeEventRuleTargetListResponseBody;
6550
6595
  static names(): { [key: string]: string } {
6551
6596
  return {
6552
6597
  headers: 'headers',
@@ -6631,9 +6676,9 @@ export class DescribeExporterOutputListResponseBody extends $tea.Model {
6631
6676
  }
6632
6677
 
6633
6678
  export class DescribeExporterOutputListResponse extends $tea.Model {
6634
- headers: { [key: string]: string };
6635
- statusCode: number;
6636
- body: DescribeExporterOutputListResponseBody;
6679
+ headers?: { [key: string]: string };
6680
+ statusCode?: number;
6681
+ body?: DescribeExporterOutputListResponseBody;
6637
6682
  static names(): { [key: string]: string } {
6638
6683
  return {
6639
6684
  headers: 'headers',
@@ -6718,9 +6763,9 @@ export class DescribeExporterRuleListResponseBody extends $tea.Model {
6718
6763
  }
6719
6764
 
6720
6765
  export class DescribeExporterRuleListResponse extends $tea.Model {
6721
- headers: { [key: string]: string };
6722
- statusCode: number;
6723
- body: DescribeExporterRuleListResponseBody;
6766
+ headers?: { [key: string]: string };
6767
+ statusCode?: number;
6768
+ body?: DescribeExporterRuleListResponseBody;
6724
6769
  static names(): { [key: string]: string } {
6725
6770
  return {
6726
6771
  headers: 'headers',
@@ -6814,9 +6859,9 @@ export class DescribeGroupMonitoringAgentProcessResponseBody extends $tea.Model
6814
6859
  }
6815
6860
 
6816
6861
  export class DescribeGroupMonitoringAgentProcessResponse extends $tea.Model {
6817
- headers: { [key: string]: string };
6818
- statusCode: number;
6819
- body: DescribeGroupMonitoringAgentProcessResponseBody;
6862
+ headers?: { [key: string]: string };
6863
+ statusCode?: number;
6864
+ body?: DescribeGroupMonitoringAgentProcessResponseBody;
6820
6865
  static names(): { [key: string]: string } {
6821
6866
  return {
6822
6867
  headers: 'headers',
@@ -6910,9 +6955,9 @@ export class DescribeHostAvailabilityListResponseBody extends $tea.Model {
6910
6955
  }
6911
6956
 
6912
6957
  export class DescribeHostAvailabilityListResponse extends $tea.Model {
6913
- headers: { [key: string]: string };
6914
- statusCode: number;
6915
- body: DescribeHostAvailabilityListResponseBody;
6958
+ headers?: { [key: string]: string };
6959
+ statusCode?: number;
6960
+ body?: DescribeHostAvailabilityListResponseBody;
6916
6961
  static names(): { [key: string]: string } {
6917
6962
  return {
6918
6963
  headers: 'headers',
@@ -7000,9 +7045,9 @@ export class DescribeHybridMonitorDataListResponseBody extends $tea.Model {
7000
7045
  }
7001
7046
 
7002
7047
  export class DescribeHybridMonitorDataListResponse extends $tea.Model {
7003
- headers: { [key: string]: string };
7004
- statusCode: number;
7005
- body: DescribeHybridMonitorDataListResponseBody;
7048
+ headers?: { [key: string]: string };
7049
+ statusCode?: number;
7050
+ body?: DescribeHybridMonitorDataListResponseBody;
7006
7051
  static names(): { [key: string]: string } {
7007
7052
  return {
7008
7053
  headers: 'headers',
@@ -7099,9 +7144,9 @@ export class DescribeHybridMonitorNamespaceListResponseBody extends $tea.Model {
7099
7144
  }
7100
7145
 
7101
7146
  export class DescribeHybridMonitorNamespaceListResponse extends $tea.Model {
7102
- headers: { [key: string]: string };
7103
- statusCode: number;
7104
- body: DescribeHybridMonitorNamespaceListResponseBody;
7147
+ headers?: { [key: string]: string };
7148
+ statusCode?: number;
7149
+ body?: DescribeHybridMonitorNamespaceListResponseBody;
7105
7150
  static names(): { [key: string]: string } {
7106
7151
  return {
7107
7152
  headers: 'headers',
@@ -7195,9 +7240,9 @@ export class DescribeHybridMonitorSLSGroupResponseBody extends $tea.Model {
7195
7240
  }
7196
7241
 
7197
7242
  export class DescribeHybridMonitorSLSGroupResponse extends $tea.Model {
7198
- headers: { [key: string]: string };
7199
- statusCode: number;
7200
- body: DescribeHybridMonitorSLSGroupResponseBody;
7243
+ headers?: { [key: string]: string };
7244
+ statusCode?: number;
7245
+ body?: DescribeHybridMonitorSLSGroupResponseBody;
7201
7246
  static names(): { [key: string]: string } {
7202
7247
  return {
7203
7248
  headers: 'headers',
@@ -7306,9 +7351,9 @@ export class DescribeHybridMonitorTaskListResponseBody extends $tea.Model {
7306
7351
  }
7307
7352
 
7308
7353
  export class DescribeHybridMonitorTaskListResponse extends $tea.Model {
7309
- headers: { [key: string]: string };
7310
- statusCode: number;
7311
- body: DescribeHybridMonitorTaskListResponseBody;
7354
+ headers?: { [key: string]: string };
7355
+ statusCode?: number;
7356
+ body?: DescribeHybridMonitorTaskListResponseBody;
7312
7357
  static names(): { [key: string]: string } {
7313
7358
  return {
7314
7359
  headers: 'headers',
@@ -7384,9 +7429,9 @@ export class DescribeLogMonitorAttributeResponseBody extends $tea.Model {
7384
7429
  }
7385
7430
 
7386
7431
  export class DescribeLogMonitorAttributeResponse extends $tea.Model {
7387
- headers: { [key: string]: string };
7388
- statusCode: number;
7389
- body: DescribeLogMonitorAttributeResponseBody;
7432
+ headers?: { [key: string]: string };
7433
+ statusCode?: number;
7434
+ body?: DescribeLogMonitorAttributeResponseBody;
7390
7435
  static names(): { [key: string]: string } {
7391
7436
  return {
7392
7437
  headers: 'headers',
@@ -7480,9 +7525,9 @@ export class DescribeLogMonitorListResponseBody extends $tea.Model {
7480
7525
  }
7481
7526
 
7482
7527
  export class DescribeLogMonitorListResponse extends $tea.Model {
7483
- headers: { [key: string]: string };
7484
- statusCode: number;
7485
- body: DescribeLogMonitorListResponseBody;
7528
+ headers?: { [key: string]: string };
7529
+ statusCode?: number;
7530
+ body?: DescribeLogMonitorListResponseBody;
7486
7531
  static names(): { [key: string]: string } {
7487
7532
  return {
7488
7533
  headers: 'headers',
@@ -7579,9 +7624,9 @@ export class DescribeMetricDataResponseBody extends $tea.Model {
7579
7624
  }
7580
7625
 
7581
7626
  export class DescribeMetricDataResponse extends $tea.Model {
7582
- headers: { [key: string]: string };
7583
- statusCode: number;
7584
- body: DescribeMetricDataResponseBody;
7627
+ headers?: { [key: string]: string };
7628
+ statusCode?: number;
7629
+ body?: DescribeMetricDataResponseBody;
7585
7630
  static names(): { [key: string]: string } {
7586
7631
  return {
7587
7632
  headers: 'headers',
@@ -7687,9 +7732,9 @@ export class DescribeMetricLastResponseBody extends $tea.Model {
7687
7732
  }
7688
7733
 
7689
7734
  export class DescribeMetricLastResponse extends $tea.Model {
7690
- headers: { [key: string]: string };
7691
- statusCode: number;
7692
- body: DescribeMetricLastResponseBody;
7735
+ headers?: { [key: string]: string };
7736
+ statusCode?: number;
7737
+ body?: DescribeMetricLastResponseBody;
7693
7738
  static names(): { [key: string]: string } {
7694
7739
  return {
7695
7740
  headers: 'headers',
@@ -7795,9 +7840,9 @@ export class DescribeMetricListResponseBody extends $tea.Model {
7795
7840
  }
7796
7841
 
7797
7842
  export class DescribeMetricListResponse extends $tea.Model {
7798
- headers: { [key: string]: string };
7799
- statusCode: number;
7800
- body: DescribeMetricListResponseBody;
7843
+ headers?: { [key: string]: string };
7844
+ statusCode?: number;
7845
+ body?: DescribeMetricListResponseBody;
7801
7846
  static names(): { [key: string]: string } {
7802
7847
  return {
7803
7848
  headers: 'headers',
@@ -7825,7 +7870,6 @@ export class DescribeMetricMetaListRequest extends $tea.Model {
7825
7870
  namespace?: string;
7826
7871
  pageNumber?: number;
7827
7872
  pageSize?: number;
7828
- regionId?: string;
7829
7873
  static names(): { [key: string]: string } {
7830
7874
  return {
7831
7875
  labels: 'Labels',
@@ -7833,7 +7877,6 @@ export class DescribeMetricMetaListRequest extends $tea.Model {
7833
7877
  namespace: 'Namespace',
7834
7878
  pageNumber: 'PageNumber',
7835
7879
  pageSize: 'PageSize',
7836
- regionId: 'RegionId',
7837
7880
  };
7838
7881
  }
7839
7882
 
@@ -7844,7 +7887,6 @@ export class DescribeMetricMetaListRequest extends $tea.Model {
7844
7887
  namespace: 'string',
7845
7888
  pageNumber: 'number',
7846
7889
  pageSize: 'number',
7847
- regionId: 'string',
7848
7890
  };
7849
7891
  }
7850
7892
 
@@ -7888,9 +7930,9 @@ export class DescribeMetricMetaListResponseBody extends $tea.Model {
7888
7930
  }
7889
7931
 
7890
7932
  export class DescribeMetricMetaListResponse extends $tea.Model {
7891
- headers: { [key: string]: string };
7892
- statusCode: number;
7893
- body: DescribeMetricMetaListResponseBody;
7933
+ headers?: { [key: string]: string };
7934
+ statusCode?: number;
7935
+ body?: DescribeMetricMetaListResponseBody;
7894
7936
  static names(): { [key: string]: string } {
7895
7937
  return {
7896
7938
  headers: 'headers',
@@ -7996,9 +8038,9 @@ export class DescribeMetricRuleBlackListResponseBody extends $tea.Model {
7996
8038
  }
7997
8039
 
7998
8040
  export class DescribeMetricRuleBlackListResponse extends $tea.Model {
7999
- headers: { [key: string]: string };
8000
- statusCode: number;
8001
- body: DescribeMetricRuleBlackListResponseBody;
8041
+ headers?: { [key: string]: string };
8042
+ statusCode?: number;
8043
+ body?: DescribeMetricRuleBlackListResponseBody;
8002
8044
  static names(): { [key: string]: string } {
8003
8045
  return {
8004
8046
  headers: 'headers',
@@ -8077,9 +8119,9 @@ export class DescribeMetricRuleCountResponseBody extends $tea.Model {
8077
8119
  }
8078
8120
 
8079
8121
  export class DescribeMetricRuleCountResponse extends $tea.Model {
8080
- headers: { [key: string]: string };
8081
- statusCode: number;
8082
- body: DescribeMetricRuleCountResponseBody;
8122
+ headers?: { [key: string]: string };
8123
+ statusCode?: number;
8124
+ body?: DescribeMetricRuleCountResponseBody;
8083
8125
  static names(): { [key: string]: string } {
8084
8126
  return {
8085
8127
  headers: 'headers',
@@ -8185,9 +8227,9 @@ export class DescribeMetricRuleListResponseBody extends $tea.Model {
8185
8227
  }
8186
8228
 
8187
8229
  export class DescribeMetricRuleListResponse extends $tea.Model {
8188
- headers: { [key: string]: string };
8189
- statusCode: number;
8190
- body: DescribeMetricRuleListResponseBody;
8230
+ headers?: { [key: string]: string };
8231
+ statusCode?: number;
8232
+ body?: DescribeMetricRuleListResponseBody;
8191
8233
  static names(): { [key: string]: string } {
8192
8234
  return {
8193
8235
  headers: 'headers',
@@ -8263,9 +8305,9 @@ export class DescribeMetricRuleTargetsResponseBody extends $tea.Model {
8263
8305
  }
8264
8306
 
8265
8307
  export class DescribeMetricRuleTargetsResponse extends $tea.Model {
8266
- headers: { [key: string]: string };
8267
- statusCode: number;
8268
- body: DescribeMetricRuleTargetsResponseBody;
8308
+ headers?: { [key: string]: string };
8309
+ statusCode?: number;
8310
+ body?: DescribeMetricRuleTargetsResponseBody;
8269
8311
  static names(): { [key: string]: string } {
8270
8312
  return {
8271
8313
  headers: 'headers',
@@ -8344,9 +8386,9 @@ export class DescribeMetricRuleTemplateAttributeResponseBody extends $tea.Model
8344
8386
  }
8345
8387
 
8346
8388
  export class DescribeMetricRuleTemplateAttributeResponse extends $tea.Model {
8347
- headers: { [key: string]: string };
8348
- statusCode: number;
8349
- body: DescribeMetricRuleTemplateAttributeResponseBody;
8389
+ headers?: { [key: string]: string };
8390
+ statusCode?: number;
8391
+ body?: DescribeMetricRuleTemplateAttributeResponseBody;
8350
8392
  static names(): { [key: string]: string } {
8351
8393
  return {
8352
8394
  headers: 'headers',
@@ -8446,9 +8488,9 @@ export class DescribeMetricRuleTemplateListResponseBody extends $tea.Model {
8446
8488
  }
8447
8489
 
8448
8490
  export class DescribeMetricRuleTemplateListResponse extends $tea.Model {
8449
- headers: { [key: string]: string };
8450
- statusCode: number;
8451
- body: DescribeMetricRuleTemplateListResponseBody;
8491
+ headers?: { [key: string]: string };
8492
+ statusCode?: number;
8493
+ body?: DescribeMetricRuleTemplateListResponseBody;
8452
8494
  static names(): { [key: string]: string } {
8453
8495
  return {
8454
8496
  headers: 'headers',
@@ -8551,9 +8593,9 @@ export class DescribeMetricTopResponseBody extends $tea.Model {
8551
8593
  }
8552
8594
 
8553
8595
  export class DescribeMetricTopResponse extends $tea.Model {
8554
- headers: { [key: string]: string };
8555
- statusCode: number;
8556
- body: DescribeMetricTopResponseBody;
8596
+ headers?: { [key: string]: string };
8597
+ statusCode?: number;
8598
+ body?: DescribeMetricTopResponseBody;
8557
8599
  static names(): { [key: string]: string } {
8558
8600
  return {
8559
8601
  headers: 'headers',
@@ -8629,9 +8671,9 @@ export class DescribeMonitorGroupCategoriesResponseBody extends $tea.Model {
8629
8671
  }
8630
8672
 
8631
8673
  export class DescribeMonitorGroupCategoriesResponse extends $tea.Model {
8632
- headers: { [key: string]: string };
8633
- statusCode: number;
8634
- body: DescribeMonitorGroupCategoriesResponseBody;
8674
+ headers?: { [key: string]: string };
8675
+ statusCode?: number;
8676
+ body?: DescribeMonitorGroupCategoriesResponseBody;
8635
8677
  static names(): { [key: string]: string } {
8636
8678
  return {
8637
8679
  headers: 'headers',
@@ -8707,9 +8749,9 @@ export class DescribeMonitorGroupDynamicRulesResponseBody extends $tea.Model {
8707
8749
  }
8708
8750
 
8709
8751
  export class DescribeMonitorGroupDynamicRulesResponse extends $tea.Model {
8710
- headers: { [key: string]: string };
8711
- statusCode: number;
8712
- body: DescribeMonitorGroupDynamicRulesResponseBody;
8752
+ headers?: { [key: string]: string };
8753
+ statusCode?: number;
8754
+ body?: DescribeMonitorGroupDynamicRulesResponseBody;
8713
8755
  static names(): { [key: string]: string } {
8714
8756
  return {
8715
8757
  headers: 'headers',
@@ -8812,9 +8854,9 @@ export class DescribeMonitorGroupInstanceAttributeResponseBody extends $tea.Mode
8812
8854
  }
8813
8855
 
8814
8856
  export class DescribeMonitorGroupInstanceAttributeResponse extends $tea.Model {
8815
- headers: { [key: string]: string };
8816
- statusCode: number;
8817
- body: DescribeMonitorGroupInstanceAttributeResponseBody;
8857
+ headers?: { [key: string]: string };
8858
+ statusCode?: number;
8859
+ body?: DescribeMonitorGroupInstanceAttributeResponseBody;
8818
8860
  static names(): { [key: string]: string } {
8819
8861
  return {
8820
8862
  headers: 'headers',
@@ -8914,9 +8956,9 @@ export class DescribeMonitorGroupInstancesResponseBody extends $tea.Model {
8914
8956
  }
8915
8957
 
8916
8958
  export class DescribeMonitorGroupInstancesResponse extends $tea.Model {
8917
- headers: { [key: string]: string };
8918
- statusCode: number;
8919
- body: DescribeMonitorGroupInstancesResponseBody;
8959
+ headers?: { [key: string]: string };
8960
+ statusCode?: number;
8961
+ body?: DescribeMonitorGroupInstancesResponseBody;
8920
8962
  static names(): { [key: string]: string } {
8921
8963
  return {
8922
8964
  headers: 'headers',
@@ -9004,9 +9046,9 @@ export class DescribeMonitorGroupNotifyPolicyListResponseBody extends $tea.Model
9004
9046
  }
9005
9047
 
9006
9048
  export class DescribeMonitorGroupNotifyPolicyListResponse extends $tea.Model {
9007
- headers: { [key: string]: string };
9008
- statusCode: number;
9009
- body: DescribeMonitorGroupNotifyPolicyListResponseBody;
9049
+ headers?: { [key: string]: string };
9050
+ statusCode?: number;
9051
+ body?: DescribeMonitorGroupNotifyPolicyListResponseBody;
9010
9052
  static names(): { [key: string]: string } {
9011
9053
  return {
9012
9054
  headers: 'headers',
@@ -9130,9 +9172,9 @@ export class DescribeMonitorGroupsResponseBody extends $tea.Model {
9130
9172
  }
9131
9173
 
9132
9174
  export class DescribeMonitorGroupsResponse extends $tea.Model {
9133
- headers: { [key: string]: string };
9134
- statusCode: number;
9135
- body: DescribeMonitorGroupsResponseBody;
9175
+ headers?: { [key: string]: string };
9176
+ statusCode?: number;
9177
+ body?: DescribeMonitorGroupsResponseBody;
9136
9178
  static names(): { [key: string]: string } {
9137
9179
  return {
9138
9180
  headers: 'headers',
@@ -9205,9 +9247,9 @@ export class DescribeMonitorResourceQuotaAttributeResponseBody extends $tea.Mode
9205
9247
  }
9206
9248
 
9207
9249
  export class DescribeMonitorResourceQuotaAttributeResponse extends $tea.Model {
9208
- headers: { [key: string]: string };
9209
- statusCode: number;
9210
- body: DescribeMonitorResourceQuotaAttributeResponseBody;
9250
+ headers?: { [key: string]: string };
9251
+ statusCode?: number;
9252
+ body?: DescribeMonitorResourceQuotaAttributeResponseBody;
9211
9253
  static names(): { [key: string]: string } {
9212
9254
  return {
9213
9255
  headers: 'headers',
@@ -9283,9 +9325,9 @@ export class DescribeMonitoringAgentAccessKeyResponseBody extends $tea.Model {
9283
9325
  }
9284
9326
 
9285
9327
  export class DescribeMonitoringAgentAccessKeyResponse extends $tea.Model {
9286
- headers: { [key: string]: string };
9287
- statusCode: number;
9288
- body: DescribeMonitoringAgentAccessKeyResponseBody;
9328
+ headers?: { [key: string]: string };
9329
+ statusCode?: number;
9330
+ body?: DescribeMonitoringAgentAccessKeyResponseBody;
9289
9331
  static names(): { [key: string]: string } {
9290
9332
  return {
9291
9333
  headers: 'headers',
@@ -9364,9 +9406,9 @@ export class DescribeMonitoringAgentConfigResponseBody extends $tea.Model {
9364
9406
  }
9365
9407
 
9366
9408
  export class DescribeMonitoringAgentConfigResponse extends $tea.Model {
9367
- headers: { [key: string]: string };
9368
- statusCode: number;
9369
- body: DescribeMonitoringAgentConfigResponseBody;
9409
+ headers?: { [key: string]: string };
9410
+ statusCode?: number;
9411
+ body?: DescribeMonitoringAgentConfigResponseBody;
9370
9412
  static names(): { [key: string]: string } {
9371
9413
  return {
9372
9414
  headers: 'headers',
@@ -9481,9 +9523,9 @@ export class DescribeMonitoringAgentHostsResponseBody extends $tea.Model {
9481
9523
  }
9482
9524
 
9483
9525
  export class DescribeMonitoringAgentHostsResponse extends $tea.Model {
9484
- headers: { [key: string]: string };
9485
- statusCode: number;
9486
- body: DescribeMonitoringAgentHostsResponseBody;
9526
+ headers?: { [key: string]: string };
9527
+ statusCode?: number;
9528
+ body?: DescribeMonitoringAgentHostsResponseBody;
9487
9529
  static names(): { [key: string]: string } {
9488
9530
  return {
9489
9531
  headers: 'headers',
@@ -9559,9 +9601,9 @@ export class DescribeMonitoringAgentProcessesResponseBody extends $tea.Model {
9559
9601
  }
9560
9602
 
9561
9603
  export class DescribeMonitoringAgentProcessesResponse extends $tea.Model {
9562
- headers: { [key: string]: string };
9563
- statusCode: number;
9564
- body: DescribeMonitoringAgentProcessesResponseBody;
9604
+ headers?: { [key: string]: string };
9605
+ statusCode?: number;
9606
+ body?: DescribeMonitoringAgentProcessesResponseBody;
9565
9607
  static names(): { [key: string]: string } {
9566
9608
  return {
9567
9609
  headers: 'headers',
@@ -9640,9 +9682,9 @@ export class DescribeMonitoringAgentStatusesResponseBody extends $tea.Model {
9640
9682
  }
9641
9683
 
9642
9684
  export class DescribeMonitoringAgentStatusesResponse extends $tea.Model {
9643
- headers: { [key: string]: string };
9644
- statusCode: number;
9645
- body: DescribeMonitoringAgentStatusesResponseBody;
9685
+ headers?: { [key: string]: string };
9686
+ statusCode?: number;
9687
+ body?: DescribeMonitoringAgentStatusesResponseBody;
9646
9688
  static names(): { [key: string]: string } {
9647
9689
  return {
9648
9690
  headers: 'headers',
@@ -9718,9 +9760,9 @@ export class DescribeMonitoringConfigResponseBody extends $tea.Model {
9718
9760
  }
9719
9761
 
9720
9762
  export class DescribeMonitoringConfigResponse extends $tea.Model {
9721
- headers: { [key: string]: string };
9722
- statusCode: number;
9723
- body: DescribeMonitoringConfigResponseBody;
9763
+ headers?: { [key: string]: string };
9764
+ statusCode?: number;
9765
+ body?: DescribeMonitoringConfigResponseBody;
9724
9766
  static names(): { [key: string]: string } {
9725
9767
  return {
9726
9768
  headers: 'headers',
@@ -9799,9 +9841,9 @@ export class DescribeProductResourceTagKeyListResponseBody extends $tea.Model {
9799
9841
  }
9800
9842
 
9801
9843
  export class DescribeProductResourceTagKeyListResponse extends $tea.Model {
9802
- headers: { [key: string]: string };
9803
- statusCode: number;
9804
- body: DescribeProductResourceTagKeyListResponseBody;
9844
+ headers?: { [key: string]: string };
9845
+ statusCode?: number;
9846
+ body?: DescribeProductResourceTagKeyListResponseBody;
9805
9847
  static names(): { [key: string]: string } {
9806
9848
  return {
9807
9849
  headers: 'headers',
@@ -9877,9 +9919,9 @@ export class DescribeProductsOfActiveMetricRuleResponseBody extends $tea.Model {
9877
9919
  }
9878
9920
 
9879
9921
  export class DescribeProductsOfActiveMetricRuleResponse extends $tea.Model {
9880
- headers: { [key: string]: string };
9881
- statusCode: number;
9882
- body: DescribeProductsOfActiveMetricRuleResponseBody;
9922
+ headers?: { [key: string]: string };
9923
+ statusCode?: number;
9924
+ body?: DescribeProductsOfActiveMetricRuleResponseBody;
9883
9925
  static names(): { [key: string]: string } {
9884
9926
  return {
9885
9927
  headers: 'headers',
@@ -9967,9 +10009,9 @@ export class DescribeProjectMetaResponseBody extends $tea.Model {
9967
10009
  }
9968
10010
 
9969
10011
  export class DescribeProjectMetaResponse extends $tea.Model {
9970
- headers: { [key: string]: string };
9971
- statusCode: number;
9972
- body: DescribeProjectMetaResponseBody;
10012
+ headers?: { [key: string]: string };
10013
+ statusCode?: number;
10014
+ body?: DescribeProjectMetaResponseBody;
9973
10015
  static names(): { [key: string]: string } {
9974
10016
  return {
9975
10017
  headers: 'headers',
@@ -10051,9 +10093,9 @@ export class DescribeSiteMonitorAttributeResponseBody extends $tea.Model {
10051
10093
  }
10052
10094
 
10053
10095
  export class DescribeSiteMonitorAttributeResponse extends $tea.Model {
10054
- headers: { [key: string]: string };
10055
- statusCode: number;
10056
- body: DescribeSiteMonitorAttributeResponseBody;
10096
+ headers?: { [key: string]: string };
10097
+ statusCode?: number;
10098
+ body?: DescribeSiteMonitorAttributeResponseBody;
10057
10099
  static names(): { [key: string]: string } {
10058
10100
  return {
10059
10101
  headers: 'headers',
@@ -10153,9 +10195,9 @@ export class DescribeSiteMonitorDataResponseBody extends $tea.Model {
10153
10195
  }
10154
10196
 
10155
10197
  export class DescribeSiteMonitorDataResponse extends $tea.Model {
10156
- headers: { [key: string]: string };
10157
- statusCode: number;
10158
- body: DescribeSiteMonitorDataResponseBody;
10198
+ headers?: { [key: string]: string };
10199
+ statusCode?: number;
10200
+ body?: DescribeSiteMonitorDataResponseBody;
10159
10201
  static names(): { [key: string]: string } {
10160
10202
  return {
10161
10203
  headers: 'headers',
@@ -10243,9 +10285,9 @@ export class DescribeSiteMonitorISPCityListResponseBody extends $tea.Model {
10243
10285
  }
10244
10286
 
10245
10287
  export class DescribeSiteMonitorISPCityListResponse extends $tea.Model {
10246
- headers: { [key: string]: string };
10247
- statusCode: number;
10248
- body: DescribeSiteMonitorISPCityListResponseBody;
10288
+ headers?: { [key: string]: string };
10289
+ statusCode?: number;
10290
+ body?: DescribeSiteMonitorISPCityListResponseBody;
10249
10291
  static names(): { [key: string]: string } {
10250
10292
  return {
10251
10293
  headers: 'headers',
@@ -10345,9 +10387,9 @@ export class DescribeSiteMonitorListResponseBody extends $tea.Model {
10345
10387
  }
10346
10388
 
10347
10389
  export class DescribeSiteMonitorListResponse extends $tea.Model {
10348
- headers: { [key: string]: string };
10349
- statusCode: number;
10350
- body: DescribeSiteMonitorListResponseBody;
10390
+ headers?: { [key: string]: string };
10391
+ statusCode?: number;
10392
+ body?: DescribeSiteMonitorListResponseBody;
10351
10393
  static names(): { [key: string]: string } {
10352
10394
  return {
10353
10395
  headers: 'headers',
@@ -10459,9 +10501,9 @@ export class DescribeSiteMonitorLogResponseBody extends $tea.Model {
10459
10501
  }
10460
10502
 
10461
10503
  export class DescribeSiteMonitorLogResponse extends $tea.Model {
10462
- headers: { [key: string]: string };
10463
- statusCode: number;
10464
- body: DescribeSiteMonitorLogResponseBody;
10504
+ headers?: { [key: string]: string };
10505
+ statusCode?: number;
10506
+ body?: DescribeSiteMonitorLogResponseBody;
10465
10507
  static names(): { [key: string]: string } {
10466
10508
  return {
10467
10509
  headers: 'headers',
@@ -10534,9 +10576,9 @@ export class DescribeSiteMonitorQuotaResponseBody extends $tea.Model {
10534
10576
  }
10535
10577
 
10536
10578
  export class DescribeSiteMonitorQuotaResponse extends $tea.Model {
10537
- headers: { [key: string]: string };
10538
- statusCode: number;
10539
- body: DescribeSiteMonitorQuotaResponseBody;
10579
+ headers?: { [key: string]: string };
10580
+ statusCode?: number;
10581
+ body?: DescribeSiteMonitorQuotaResponseBody;
10540
10582
  static names(): { [key: string]: string } {
10541
10583
  return {
10542
10584
  headers: 'headers',
@@ -10621,9 +10663,9 @@ export class DescribeSiteMonitorStatisticsResponseBody extends $tea.Model {
10621
10663
  }
10622
10664
 
10623
10665
  export class DescribeSiteMonitorStatisticsResponse extends $tea.Model {
10624
- headers: { [key: string]: string };
10625
- statusCode: number;
10626
- body: DescribeSiteMonitorStatisticsResponseBody;
10666
+ headers?: { [key: string]: string };
10667
+ statusCode?: number;
10668
+ body?: DescribeSiteMonitorStatisticsResponseBody;
10627
10669
  static names(): { [key: string]: string } {
10628
10670
  return {
10629
10671
  headers: 'headers',
@@ -10729,9 +10771,9 @@ export class DescribeSystemEventAttributeResponseBody extends $tea.Model {
10729
10771
  }
10730
10772
 
10731
10773
  export class DescribeSystemEventAttributeResponse extends $tea.Model {
10732
- headers: { [key: string]: string };
10733
- statusCode: number;
10734
- body: DescribeSystemEventAttributeResponseBody;
10774
+ headers?: { [key: string]: string };
10775
+ statusCode?: number;
10776
+ body?: DescribeSystemEventAttributeResponseBody;
10735
10777
  static names(): { [key: string]: string } {
10736
10778
  return {
10737
10779
  headers: 'headers',
@@ -10831,9 +10873,9 @@ export class DescribeSystemEventCountResponseBody extends $tea.Model {
10831
10873
  }
10832
10874
 
10833
10875
  export class DescribeSystemEventCountResponse extends $tea.Model {
10834
- headers: { [key: string]: string };
10835
- statusCode: number;
10836
- body: DescribeSystemEventCountResponseBody;
10876
+ headers?: { [key: string]: string };
10877
+ statusCode?: number;
10878
+ body?: DescribeSystemEventCountResponseBody;
10837
10879
  static names(): { [key: string]: string } {
10838
10880
  return {
10839
10881
  headers: 'headers',
@@ -10933,9 +10975,9 @@ export class DescribeSystemEventHistogramResponseBody extends $tea.Model {
10933
10975
  }
10934
10976
 
10935
10977
  export class DescribeSystemEventHistogramResponse extends $tea.Model {
10936
- headers: { [key: string]: string };
10937
- statusCode: number;
10938
- body: DescribeSystemEventHistogramResponseBody;
10978
+ headers?: { [key: string]: string };
10979
+ statusCode?: number;
10980
+ body?: DescribeSystemEventHistogramResponseBody;
10939
10981
  static names(): { [key: string]: string } {
10940
10982
  return {
10941
10983
  headers: 'headers',
@@ -11008,9 +11050,9 @@ export class DescribeSystemEventMetaListResponseBody extends $tea.Model {
11008
11050
  }
11009
11051
 
11010
11052
  export class DescribeSystemEventMetaListResponse extends $tea.Model {
11011
- headers: { [key: string]: string };
11012
- statusCode: number;
11013
- body: DescribeSystemEventMetaListResponseBody;
11053
+ headers?: { [key: string]: string };
11054
+ statusCode?: number;
11055
+ body?: DescribeSystemEventMetaListResponseBody;
11014
11056
  static names(): { [key: string]: string } {
11015
11057
  return {
11016
11058
  headers: 'headers',
@@ -11089,9 +11131,9 @@ export class DescribeTagKeyListResponseBody extends $tea.Model {
11089
11131
  }
11090
11132
 
11091
11133
  export class DescribeTagKeyListResponse extends $tea.Model {
11092
- headers: { [key: string]: string };
11093
- statusCode: number;
11094
- body: DescribeTagKeyListResponseBody;
11134
+ headers?: { [key: string]: string };
11135
+ statusCode?: number;
11136
+ body?: DescribeTagKeyListResponseBody;
11095
11137
  static names(): { [key: string]: string } {
11096
11138
  return {
11097
11139
  headers: 'headers',
@@ -11173,9 +11215,9 @@ export class DescribeTagValueListResponseBody extends $tea.Model {
11173
11215
  }
11174
11216
 
11175
11217
  export class DescribeTagValueListResponse extends $tea.Model {
11176
- headers: { [key: string]: string };
11177
- statusCode: number;
11178
- body: DescribeTagValueListResponseBody;
11218
+ headers?: { [key: string]: string };
11219
+ statusCode?: number;
11220
+ body?: DescribeTagValueListResponseBody;
11179
11221
  static names(): { [key: string]: string } {
11180
11222
  return {
11181
11223
  headers: 'headers',
@@ -11251,9 +11293,9 @@ export class DescribeUnhealthyHostAvailabilityResponseBody extends $tea.Model {
11251
11293
  }
11252
11294
 
11253
11295
  export class DescribeUnhealthyHostAvailabilityResponse extends $tea.Model {
11254
- headers: { [key: string]: string };
11255
- statusCode: number;
11256
- body: DescribeUnhealthyHostAvailabilityResponseBody;
11296
+ headers?: { [key: string]: string };
11297
+ statusCode?: number;
11298
+ body?: DescribeUnhealthyHostAvailabilityResponseBody;
11257
11299
  static names(): { [key: string]: string } {
11258
11300
  return {
11259
11301
  headers: 'headers',
@@ -11326,9 +11368,9 @@ export class DisableActiveMetricRuleResponseBody extends $tea.Model {
11326
11368
  }
11327
11369
 
11328
11370
  export class DisableActiveMetricRuleResponse extends $tea.Model {
11329
- headers: { [key: string]: string };
11330
- statusCode: number;
11331
- body: DisableActiveMetricRuleResponseBody;
11371
+ headers?: { [key: string]: string };
11372
+ statusCode?: number;
11373
+ body?: DisableActiveMetricRuleResponseBody;
11332
11374
  static names(): { [key: string]: string } {
11333
11375
  return {
11334
11376
  headers: 'headers',
@@ -11401,9 +11443,9 @@ export class DisableEventRulesResponseBody extends $tea.Model {
11401
11443
  }
11402
11444
 
11403
11445
  export class DisableEventRulesResponse extends $tea.Model {
11404
- headers: { [key: string]: string };
11405
- statusCode: number;
11406
- body: DisableEventRulesResponseBody;
11446
+ headers?: { [key: string]: string };
11447
+ statusCode?: number;
11448
+ body?: DisableEventRulesResponseBody;
11407
11449
  static names(): { [key: string]: string } {
11408
11450
  return {
11409
11451
  headers: 'headers',
@@ -11476,9 +11518,9 @@ export class DisableHostAvailabilityResponseBody extends $tea.Model {
11476
11518
  }
11477
11519
 
11478
11520
  export class DisableHostAvailabilityResponse extends $tea.Model {
11479
- headers: { [key: string]: string };
11480
- statusCode: number;
11481
- body: DisableHostAvailabilityResponseBody;
11521
+ headers?: { [key: string]: string };
11522
+ statusCode?: number;
11523
+ body?: DisableHostAvailabilityResponseBody;
11482
11524
  static names(): { [key: string]: string } {
11483
11525
  return {
11484
11526
  headers: 'headers',
@@ -11551,9 +11593,9 @@ export class DisableMetricRulesResponseBody extends $tea.Model {
11551
11593
  }
11552
11594
 
11553
11595
  export class DisableMetricRulesResponse extends $tea.Model {
11554
- headers: { [key: string]: string };
11555
- statusCode: number;
11556
- body: DisableMetricRulesResponseBody;
11596
+ headers?: { [key: string]: string };
11597
+ statusCode?: number;
11598
+ body?: DisableMetricRulesResponseBody;
11557
11599
  static names(): { [key: string]: string } {
11558
11600
  return {
11559
11601
  headers: 'headers',
@@ -11629,9 +11671,9 @@ export class DisableSiteMonitorsResponseBody extends $tea.Model {
11629
11671
  }
11630
11672
 
11631
11673
  export class DisableSiteMonitorsResponse extends $tea.Model {
11632
- headers: { [key: string]: string };
11633
- statusCode: number;
11634
- body: DisableSiteMonitorsResponseBody;
11674
+ headers?: { [key: string]: string };
11675
+ statusCode?: number;
11676
+ body?: DisableSiteMonitorsResponseBody;
11635
11677
  static names(): { [key: string]: string } {
11636
11678
  return {
11637
11679
  headers: 'headers',
@@ -11704,9 +11746,9 @@ export class EnableActiveMetricRuleResponseBody extends $tea.Model {
11704
11746
  }
11705
11747
 
11706
11748
  export class EnableActiveMetricRuleResponse extends $tea.Model {
11707
- headers: { [key: string]: string };
11708
- statusCode: number;
11709
- body: EnableActiveMetricRuleResponseBody;
11749
+ headers?: { [key: string]: string };
11750
+ statusCode?: number;
11751
+ body?: EnableActiveMetricRuleResponseBody;
11710
11752
  static names(): { [key: string]: string } {
11711
11753
  return {
11712
11754
  headers: 'headers',
@@ -11779,9 +11821,9 @@ export class EnableEventRulesResponseBody extends $tea.Model {
11779
11821
  }
11780
11822
 
11781
11823
  export class EnableEventRulesResponse extends $tea.Model {
11782
- headers: { [key: string]: string };
11783
- statusCode: number;
11784
- body: EnableEventRulesResponseBody;
11824
+ headers?: { [key: string]: string };
11825
+ statusCode?: number;
11826
+ body?: EnableEventRulesResponseBody;
11785
11827
  static names(): { [key: string]: string } {
11786
11828
  return {
11787
11829
  headers: 'headers',
@@ -11854,9 +11896,9 @@ export class EnableHostAvailabilityResponseBody extends $tea.Model {
11854
11896
  }
11855
11897
 
11856
11898
  export class EnableHostAvailabilityResponse extends $tea.Model {
11857
- headers: { [key: string]: string };
11858
- statusCode: number;
11859
- body: EnableHostAvailabilityResponseBody;
11899
+ headers?: { [key: string]: string };
11900
+ statusCode?: number;
11901
+ body?: EnableHostAvailabilityResponseBody;
11860
11902
  static names(): { [key: string]: string } {
11861
11903
  return {
11862
11904
  headers: 'headers',
@@ -11935,9 +11977,9 @@ export class EnableMetricRuleBlackListResponseBody extends $tea.Model {
11935
11977
  }
11936
11978
 
11937
11979
  export class EnableMetricRuleBlackListResponse extends $tea.Model {
11938
- headers: { [key: string]: string };
11939
- statusCode: number;
11940
- body: EnableMetricRuleBlackListResponseBody;
11980
+ headers?: { [key: string]: string };
11981
+ statusCode?: number;
11982
+ body?: EnableMetricRuleBlackListResponseBody;
11941
11983
  static names(): { [key: string]: string } {
11942
11984
  return {
11943
11985
  headers: 'headers',
@@ -12010,9 +12052,9 @@ export class EnableMetricRulesResponseBody extends $tea.Model {
12010
12052
  }
12011
12053
 
12012
12054
  export class EnableMetricRulesResponse extends $tea.Model {
12013
- headers: { [key: string]: string };
12014
- statusCode: number;
12015
- body: EnableMetricRulesResponseBody;
12055
+ headers?: { [key: string]: string };
12056
+ statusCode?: number;
12057
+ body?: EnableMetricRulesResponseBody;
12016
12058
  static names(): { [key: string]: string } {
12017
12059
  return {
12018
12060
  headers: 'headers',
@@ -12088,9 +12130,9 @@ export class EnableSiteMonitorsResponseBody extends $tea.Model {
12088
12130
  }
12089
12131
 
12090
12132
  export class EnableSiteMonitorsResponse extends $tea.Model {
12091
- headers: { [key: string]: string };
12092
- statusCode: number;
12093
- body: EnableSiteMonitorsResponseBody;
12133
+ headers?: { [key: string]: string };
12134
+ statusCode?: number;
12135
+ body?: EnableSiteMonitorsResponseBody;
12094
12136
  static names(): { [key: string]: string } {
12095
12137
  return {
12096
12138
  headers: 'headers',
@@ -12169,9 +12211,9 @@ export class InstallMonitoringAgentResponseBody extends $tea.Model {
12169
12211
  }
12170
12212
 
12171
12213
  export class InstallMonitoringAgentResponse extends $tea.Model {
12172
- headers: { [key: string]: string };
12173
- statusCode: number;
12174
- body: InstallMonitoringAgentResponseBody;
12214
+ headers?: { [key: string]: string };
12215
+ statusCode?: number;
12216
+ body?: InstallMonitoringAgentResponseBody;
12175
12217
  static names(): { [key: string]: string } {
12176
12218
  return {
12177
12219
  headers: 'headers',
@@ -12253,9 +12295,9 @@ export class ModifyGroupMonitoringAgentProcessResponseBody extends $tea.Model {
12253
12295
  }
12254
12296
 
12255
12297
  export class ModifyGroupMonitoringAgentProcessResponse extends $tea.Model {
12256
- headers: { [key: string]: string };
12257
- statusCode: number;
12258
- body: ModifyGroupMonitoringAgentProcessResponseBody;
12298
+ headers?: { [key: string]: string };
12299
+ statusCode?: number;
12300
+ body?: ModifyGroupMonitoringAgentProcessResponseBody;
12259
12301
  static names(): { [key: string]: string } {
12260
12302
  return {
12261
12303
  headers: 'headers',
@@ -12352,9 +12394,9 @@ export class ModifyHostAvailabilityResponseBody extends $tea.Model {
12352
12394
  }
12353
12395
 
12354
12396
  export class ModifyHostAvailabilityResponse extends $tea.Model {
12355
- headers: { [key: string]: string };
12356
- statusCode: number;
12357
- body: ModifyHostAvailabilityResponseBody;
12397
+ headers?: { [key: string]: string };
12398
+ statusCode?: number;
12399
+ body?: ModifyHostAvailabilityResponseBody;
12358
12400
  static names(): { [key: string]: string } {
12359
12401
  return {
12360
12402
  headers: 'headers',
@@ -12430,9 +12472,9 @@ export class ModifyHostInfoResponseBody extends $tea.Model {
12430
12472
  }
12431
12473
 
12432
12474
  export class ModifyHostInfoResponse extends $tea.Model {
12433
- headers: { [key: string]: string };
12434
- statusCode: number;
12435
- body: ModifyHostInfoResponseBody;
12475
+ headers?: { [key: string]: string };
12476
+ statusCode?: number;
12477
+ body?: ModifyHostInfoResponseBody;
12436
12478
  static names(): { [key: string]: string } {
12437
12479
  return {
12438
12480
  headers: 'headers',
@@ -12511,9 +12553,9 @@ export class ModifyHybridMonitorNamespaceResponseBody extends $tea.Model {
12511
12553
  }
12512
12554
 
12513
12555
  export class ModifyHybridMonitorNamespaceResponse extends $tea.Model {
12514
- headers: { [key: string]: string };
12515
- statusCode: number;
12516
- body: ModifyHybridMonitorNamespaceResponseBody;
12556
+ headers?: { [key: string]: string };
12557
+ statusCode?: number;
12558
+ body?: ModifyHybridMonitorNamespaceResponseBody;
12517
12559
  static names(): { [key: string]: string } {
12518
12560
  return {
12519
12561
  headers: 'headers',
@@ -12592,9 +12634,9 @@ export class ModifyHybridMonitorSLSGroupResponseBody extends $tea.Model {
12592
12634
  }
12593
12635
 
12594
12636
  export class ModifyHybridMonitorSLSGroupResponse extends $tea.Model {
12595
- headers: { [key: string]: string };
12596
- statusCode: number;
12597
- body: ModifyHybridMonitorSLSGroupResponseBody;
12637
+ headers?: { [key: string]: string };
12638
+ statusCode?: number;
12639
+ body?: ModifyHybridMonitorSLSGroupResponseBody;
12598
12640
  static names(): { [key: string]: string } {
12599
12641
  return {
12600
12642
  headers: 'headers',
@@ -12682,9 +12724,9 @@ export class ModifyHybridMonitorTaskResponseBody extends $tea.Model {
12682
12724
  }
12683
12725
 
12684
12726
  export class ModifyHybridMonitorTaskResponse extends $tea.Model {
12685
- headers: { [key: string]: string };
12686
- statusCode: number;
12687
- body: ModifyHybridMonitorTaskResponseBody;
12727
+ headers?: { [key: string]: string };
12728
+ statusCode?: number;
12729
+ body?: ModifyHybridMonitorTaskResponseBody;
12688
12730
  static names(): { [key: string]: string } {
12689
12731
  return {
12690
12732
  headers: 'headers',
@@ -12790,9 +12832,9 @@ export class ModifyMetricRuleBlackListResponseBody extends $tea.Model {
12790
12832
  }
12791
12833
 
12792
12834
  export class ModifyMetricRuleBlackListResponse extends $tea.Model {
12793
- headers: { [key: string]: string };
12794
- statusCode: number;
12795
- body: ModifyMetricRuleBlackListResponseBody;
12835
+ headers?: { [key: string]: string };
12836
+ statusCode?: number;
12837
+ body?: ModifyMetricRuleBlackListResponseBody;
12796
12838
  static names(): { [key: string]: string } {
12797
12839
  return {
12798
12840
  headers: 'headers',
@@ -12877,9 +12919,9 @@ export class ModifyMetricRuleTemplateResponseBody extends $tea.Model {
12877
12919
  }
12878
12920
 
12879
12921
  export class ModifyMetricRuleTemplateResponse extends $tea.Model {
12880
- headers: { [key: string]: string };
12881
- statusCode: number;
12882
- body: ModifyMetricRuleTemplateResponseBody;
12922
+ headers?: { [key: string]: string };
12923
+ statusCode?: number;
12924
+ body?: ModifyMetricRuleTemplateResponseBody;
12883
12925
  static names(): { [key: string]: string } {
12884
12926
  return {
12885
12927
  headers: 'headers',
@@ -12958,9 +13000,9 @@ export class ModifyMonitorGroupResponseBody extends $tea.Model {
12958
13000
  }
12959
13001
 
12960
13002
  export class ModifyMonitorGroupResponse extends $tea.Model {
12961
- headers: { [key: string]: string };
12962
- statusCode: number;
12963
- body: ModifyMonitorGroupResponseBody;
13003
+ headers?: { [key: string]: string };
13004
+ statusCode?: number;
13005
+ body?: ModifyMonitorGroupResponseBody;
12964
13006
  static names(): { [key: string]: string } {
12965
13007
  return {
12966
13008
  headers: 'headers',
@@ -13036,9 +13078,9 @@ export class ModifyMonitorGroupInstancesResponseBody extends $tea.Model {
13036
13078
  }
13037
13079
 
13038
13080
  export class ModifyMonitorGroupInstancesResponse extends $tea.Model {
13039
- headers: { [key: string]: string };
13040
- statusCode: number;
13041
- body: ModifyMonitorGroupInstancesResponseBody;
13081
+ headers?: { [key: string]: string };
13082
+ statusCode?: number;
13083
+ body?: ModifyMonitorGroupInstancesResponseBody;
13042
13084
  static names(): { [key: string]: string } {
13043
13085
  return {
13044
13086
  headers: 'headers',
@@ -13138,9 +13180,9 @@ export class ModifySiteMonitorResponseBody extends $tea.Model {
13138
13180
  }
13139
13181
 
13140
13182
  export class ModifySiteMonitorResponse extends $tea.Model {
13141
- headers: { [key: string]: string };
13142
- statusCode: number;
13143
- body: ModifySiteMonitorResponseBody;
13183
+ headers?: { [key: string]: string };
13184
+ statusCode?: number;
13185
+ body?: ModifySiteMonitorResponseBody;
13144
13186
  static names(): { [key: string]: string } {
13145
13187
  return {
13146
13188
  headers: 'headers',
@@ -13185,9 +13227,9 @@ export class OpenCmsServiceResponseBody extends $tea.Model {
13185
13227
  }
13186
13228
 
13187
13229
  export class OpenCmsServiceResponse extends $tea.Model {
13188
- headers: { [key: string]: string };
13189
- statusCode: number;
13190
- body: OpenCmsServiceResponseBody;
13230
+ headers?: { [key: string]: string };
13231
+ statusCode?: number;
13232
+ body?: OpenCmsServiceResponseBody;
13191
13233
  static names(): { [key: string]: string } {
13192
13234
  return {
13193
13235
  headers: 'headers',
@@ -13266,9 +13308,9 @@ export class PutContactResponseBody extends $tea.Model {
13266
13308
  }
13267
13309
 
13268
13310
  export class PutContactResponse extends $tea.Model {
13269
- headers: { [key: string]: string };
13270
- statusCode: number;
13271
- body: PutContactResponseBody;
13311
+ headers?: { [key: string]: string };
13312
+ statusCode?: number;
13313
+ body?: PutContactResponseBody;
13272
13314
  static names(): { [key: string]: string } {
13273
13315
  return {
13274
13316
  headers: 'headers',
@@ -13347,9 +13389,9 @@ export class PutContactGroupResponseBody extends $tea.Model {
13347
13389
  }
13348
13390
 
13349
13391
  export class PutContactGroupResponse extends $tea.Model {
13350
- headers: { [key: string]: string };
13351
- statusCode: number;
13352
- body: PutContactGroupResponseBody;
13392
+ headers?: { [key: string]: string };
13393
+ statusCode?: number;
13394
+ body?: PutContactGroupResponseBody;
13353
13395
  static names(): { [key: string]: string } {
13354
13396
  return {
13355
13397
  headers: 'headers',
@@ -13419,9 +13461,9 @@ export class PutCustomEventResponseBody extends $tea.Model {
13419
13461
  }
13420
13462
 
13421
13463
  export class PutCustomEventResponse extends $tea.Model {
13422
- headers: { [key: string]: string };
13423
- statusCode: number;
13424
- body: PutCustomEventResponseBody;
13464
+ headers?: { [key: string]: string };
13465
+ statusCode?: number;
13466
+ body?: PutCustomEventResponseBody;
13425
13467
  static names(): { [key: string]: string } {
13426
13468
  return {
13427
13469
  headers: 'headers',
@@ -13521,9 +13563,9 @@ export class PutCustomEventRuleResponseBody extends $tea.Model {
13521
13563
  }
13522
13564
 
13523
13565
  export class PutCustomEventRuleResponse extends $tea.Model {
13524
- headers: { [key: string]: string };
13525
- statusCode: number;
13526
- body: PutCustomEventRuleResponseBody;
13566
+ headers?: { [key: string]: string };
13567
+ statusCode?: number;
13568
+ body?: PutCustomEventRuleResponseBody;
13527
13569
  static names(): { [key: string]: string } {
13528
13570
  return {
13529
13571
  headers: 'headers',
@@ -13593,9 +13635,9 @@ export class PutCustomMetricResponseBody extends $tea.Model {
13593
13635
  }
13594
13636
 
13595
13637
  export class PutCustomMetricResponse extends $tea.Model {
13596
- headers: { [key: string]: string };
13597
- statusCode: number;
13598
- body: PutCustomMetricResponseBody;
13638
+ headers?: { [key: string]: string };
13639
+ statusCode?: number;
13640
+ body?: PutCustomMetricResponseBody;
13599
13641
  static names(): { [key: string]: string } {
13600
13642
  return {
13601
13643
  headers: 'headers',
@@ -13710,9 +13752,9 @@ export class PutCustomMetricRuleResponseBody extends $tea.Model {
13710
13752
  }
13711
13753
 
13712
13754
  export class PutCustomMetricRuleResponse extends $tea.Model {
13713
- headers: { [key: string]: string };
13714
- statusCode: number;
13715
- body: PutCustomMetricRuleResponseBody;
13755
+ headers?: { [key: string]: string };
13756
+ statusCode?: number;
13757
+ body?: PutCustomMetricRuleResponseBody;
13716
13758
  static names(): { [key: string]: string } {
13717
13759
  return {
13718
13760
  headers: 'headers',
@@ -13806,9 +13848,9 @@ export class PutEventRuleResponseBody extends $tea.Model {
13806
13848
  }
13807
13849
 
13808
13850
  export class PutEventRuleResponse extends $tea.Model {
13809
- headers: { [key: string]: string };
13810
- statusCode: number;
13811
- body: PutEventRuleResponseBody;
13851
+ headers?: { [key: string]: string };
13852
+ statusCode?: number;
13853
+ body?: PutEventRuleResponseBody;
13812
13854
  static names(): { [key: string]: string } {
13813
13855
  return {
13814
13856
  headers: 'headers',
@@ -13911,9 +13953,9 @@ export class PutEventRuleTargetsResponseBody extends $tea.Model {
13911
13953
  }
13912
13954
 
13913
13955
  export class PutEventRuleTargetsResponse extends $tea.Model {
13914
- headers: { [key: string]: string };
13915
- statusCode: number;
13916
- body: PutEventRuleTargetsResponseBody;
13956
+ headers?: { [key: string]: string };
13957
+ statusCode?: number;
13958
+ body?: PutEventRuleTargetsResponseBody;
13917
13959
  static names(): { [key: string]: string } {
13918
13960
  return {
13919
13961
  headers: 'headers',
@@ -13995,9 +14037,9 @@ export class PutExporterOutputResponseBody extends $tea.Model {
13995
14037
  }
13996
14038
 
13997
14039
  export class PutExporterOutputResponse extends $tea.Model {
13998
- headers: { [key: string]: string };
13999
- statusCode: number;
14000
- body: PutExporterOutputResponseBody;
14040
+ headers?: { [key: string]: string };
14041
+ statusCode?: number;
14042
+ body?: PutExporterOutputResponseBody;
14001
14043
  static names(): { [key: string]: string } {
14002
14044
  return {
14003
14045
  headers: 'headers',
@@ -14085,9 +14127,9 @@ export class PutExporterRuleResponseBody extends $tea.Model {
14085
14127
  }
14086
14128
 
14087
14129
  export class PutExporterRuleResponse extends $tea.Model {
14088
- headers: { [key: string]: string };
14089
- statusCode: number;
14090
- body: PutExporterRuleResponseBody;
14130
+ headers?: { [key: string]: string };
14131
+ statusCode?: number;
14132
+ body?: PutExporterRuleResponseBody;
14091
14133
  static names(): { [key: string]: string } {
14092
14134
  return {
14093
14135
  headers: 'headers',
@@ -14124,6 +14166,7 @@ export class PutGroupMetricRuleRequest extends $tea.Model {
14124
14166
  namespace?: string;
14125
14167
  noDataPolicy?: string;
14126
14168
  noEffectiveInterval?: string;
14169
+ options?: string;
14127
14170
  period?: string;
14128
14171
  ruleId?: string;
14129
14172
  ruleName?: string;
@@ -14145,6 +14188,7 @@ export class PutGroupMetricRuleRequest extends $tea.Model {
14145
14188
  namespace: 'Namespace',
14146
14189
  noDataPolicy: 'NoDataPolicy',
14147
14190
  noEffectiveInterval: 'NoEffectiveInterval',
14191
+ options: 'Options',
14148
14192
  period: 'Period',
14149
14193
  ruleId: 'RuleId',
14150
14194
  ruleName: 'RuleName',
@@ -14169,6 +14213,7 @@ export class PutGroupMetricRuleRequest extends $tea.Model {
14169
14213
  namespace: 'string',
14170
14214
  noDataPolicy: 'string',
14171
14215
  noEffectiveInterval: 'string',
14216
+ options: 'string',
14172
14217
  period: 'string',
14173
14218
  ruleId: 'string',
14174
14219
  ruleName: 'string',
@@ -14214,9 +14259,9 @@ export class PutGroupMetricRuleResponseBody extends $tea.Model {
14214
14259
  }
14215
14260
 
14216
14261
  export class PutGroupMetricRuleResponse extends $tea.Model {
14217
- headers: { [key: string]: string };
14218
- statusCode: number;
14219
- body: PutGroupMetricRuleResponseBody;
14262
+ headers?: { [key: string]: string };
14263
+ statusCode?: number;
14264
+ body?: PutGroupMetricRuleResponseBody;
14220
14265
  static names(): { [key: string]: string } {
14221
14266
  return {
14222
14267
  headers: 'headers',
@@ -14289,9 +14334,9 @@ export class PutHybridMonitorMetricDataResponseBody extends $tea.Model {
14289
14334
  }
14290
14335
 
14291
14336
  export class PutHybridMonitorMetricDataResponse extends $tea.Model {
14292
- headers: { [key: string]: string };
14293
- statusCode: number;
14294
- body: PutHybridMonitorMetricDataResponseBody;
14337
+ headers?: { [key: string]: string };
14338
+ statusCode?: number;
14339
+ body?: PutHybridMonitorMetricDataResponseBody;
14295
14340
  static names(): { [key: string]: string } {
14296
14341
  return {
14297
14342
  headers: 'headers',
@@ -14403,9 +14448,9 @@ export class PutLogMonitorResponseBody extends $tea.Model {
14403
14448
  }
14404
14449
 
14405
14450
  export class PutLogMonitorResponse extends $tea.Model {
14406
- headers: { [key: string]: string };
14407
- statusCode: number;
14408
- body: PutLogMonitorResponseBody;
14451
+ headers?: { [key: string]: string };
14452
+ statusCode?: number;
14453
+ body?: PutLogMonitorResponseBody;
14409
14454
  static names(): { [key: string]: string } {
14410
14455
  return {
14411
14456
  headers: 'headers',
@@ -14484,9 +14529,9 @@ export class PutMetricRuleTargetsResponseBody extends $tea.Model {
14484
14529
  }
14485
14530
 
14486
14531
  export class PutMetricRuleTargetsResponse extends $tea.Model {
14487
- headers: { [key: string]: string };
14488
- statusCode: number;
14489
- body: PutMetricRuleTargetsResponseBody;
14532
+ headers?: { [key: string]: string };
14533
+ statusCode?: number;
14534
+ body?: PutMetricRuleTargetsResponseBody;
14490
14535
  static names(): { [key: string]: string } {
14491
14536
  return {
14492
14537
  headers: 'headers',
@@ -14565,9 +14610,9 @@ export class PutMonitorGroupDynamicRuleResponseBody extends $tea.Model {
14565
14610
  }
14566
14611
 
14567
14612
  export class PutMonitorGroupDynamicRuleResponse extends $tea.Model {
14568
- headers: { [key: string]: string };
14569
- statusCode: number;
14570
- body: PutMonitorGroupDynamicRuleResponseBody;
14613
+ headers?: { [key: string]: string };
14614
+ statusCode?: number;
14615
+ body?: PutMonitorGroupDynamicRuleResponseBody;
14571
14616
  static names(): { [key: string]: string } {
14572
14617
  return {
14573
14618
  headers: 'headers',
@@ -14643,9 +14688,9 @@ export class PutMonitoringConfigResponseBody extends $tea.Model {
14643
14688
  }
14644
14689
 
14645
14690
  export class PutMonitoringConfigResponse extends $tea.Model {
14646
- headers: { [key: string]: string };
14647
- statusCode: number;
14648
- body: PutMonitoringConfigResponseBody;
14691
+ headers?: { [key: string]: string };
14692
+ statusCode?: number;
14693
+ body?: PutMonitoringConfigResponseBody;
14649
14694
  static names(): { [key: string]: string } {
14650
14695
  return {
14651
14696
  headers: 'headers',
@@ -14836,9 +14881,9 @@ export class PutResourceMetricRuleResponseBody extends $tea.Model {
14836
14881
  }
14837
14882
 
14838
14883
  export class PutResourceMetricRuleResponse extends $tea.Model {
14839
- headers: { [key: string]: string };
14840
- statusCode: number;
14841
- body: PutResourceMetricRuleResponseBody;
14884
+ headers?: { [key: string]: string };
14885
+ statusCode?: number;
14886
+ body?: PutResourceMetricRuleResponseBody;
14842
14887
  static names(): { [key: string]: string } {
14843
14888
  return {
14844
14889
  headers: 'headers',
@@ -14911,9 +14956,9 @@ export class PutResourceMetricRulesResponseBody extends $tea.Model {
14911
14956
  }
14912
14957
 
14913
14958
  export class PutResourceMetricRulesResponse extends $tea.Model {
14914
- headers: { [key: string]: string };
14915
- statusCode: number;
14916
- body: PutResourceMetricRulesResponseBody;
14959
+ headers?: { [key: string]: string };
14960
+ statusCode?: number;
14961
+ body?: PutResourceMetricRulesResponseBody;
14917
14962
  static names(): { [key: string]: string } {
14918
14963
  return {
14919
14964
  headers: 'headers',
@@ -14992,9 +15037,9 @@ export class RemoveTagsResponseBody extends $tea.Model {
14992
15037
  }
14993
15038
 
14994
15039
  export class RemoveTagsResponse extends $tea.Model {
14995
- headers: { [key: string]: string };
14996
- statusCode: number;
14997
- body: RemoveTagsResponseBody;
15040
+ headers?: { [key: string]: string };
15041
+ statusCode?: number;
15042
+ body?: RemoveTagsResponseBody;
14998
15043
  static names(): { [key: string]: string } {
14999
15044
  return {
15000
15045
  headers: 'headers',
@@ -15076,9 +15121,9 @@ export class SendDryRunSystemEventResponseBody extends $tea.Model {
15076
15121
  }
15077
15122
 
15078
15123
  export class SendDryRunSystemEventResponse extends $tea.Model {
15079
- headers: { [key: string]: string };
15080
- statusCode: number;
15081
- body: SendDryRunSystemEventResponseBody;
15124
+ headers?: { [key: string]: string };
15125
+ statusCode?: number;
15126
+ body?: SendDryRunSystemEventResponseBody;
15082
15127
  static names(): { [key: string]: string } {
15083
15128
  return {
15084
15129
  headers: 'headers',
@@ -15151,9 +15196,9 @@ export class UninstallMonitoringAgentResponseBody extends $tea.Model {
15151
15196
  }
15152
15197
 
15153
15198
  export class UninstallMonitoringAgentResponse extends $tea.Model {
15154
- headers: { [key: string]: string };
15155
- statusCode: number;
15156
- body: UninstallMonitoringAgentResponseBody;
15199
+ headers?: { [key: string]: string };
15200
+ statusCode?: number;
15201
+ body?: UninstallMonitoringAgentResponseBody;
15157
15202
  static names(): { [key: string]: string } {
15158
15203
  return {
15159
15204
  headers: 'headers',
@@ -15250,11 +15295,13 @@ export class EscalationRuleEscalationsContactGroupsByLevel extends $tea.Model {
15250
15295
  }
15251
15296
 
15252
15297
  export class EscalationRuleEscalations extends $tea.Model {
15298
+ backupContactGroups?: string[];
15253
15299
  contactGroups?: string[];
15254
15300
  contactGroupsByLevel?: EscalationRuleEscalationsContactGroupsByLevel;
15255
15301
  escalateMin?: number;
15256
15302
  static names(): { [key: string]: string } {
15257
15303
  return {
15304
+ backupContactGroups: 'BackupContactGroups',
15258
15305
  contactGroups: 'ContactGroups',
15259
15306
  contactGroupsByLevel: 'ContactGroupsByLevel',
15260
15307
  escalateMin: 'EscalateMin',
@@ -15263,6 +15310,7 @@ export class EscalationRuleEscalations extends $tea.Model {
15263
15310
 
15264
15311
  static types(): { [key: string]: any } {
15265
15312
  return {
15313
+ backupContactGroups: { 'type': 'array', 'itemType': 'string' },
15266
15314
  contactGroups: { 'type': 'array', 'itemType': 'string' },
15267
15315
  contactGroupsByLevel: EscalationRuleEscalationsContactGroupsByLevel,
15268
15316
  escalateMin: 'number',
@@ -16410,6 +16458,7 @@ export class CreateGroupMetricRulesRequestGroupMetricRules extends $tea.Model {
16410
16458
  namespace?: string;
16411
16459
  noDataPolicy?: string;
16412
16460
  noEffectiveInterval?: string;
16461
+ options?: string;
16413
16462
  period?: string;
16414
16463
  ruleId?: string;
16415
16464
  ruleName?: string;
@@ -16429,6 +16478,7 @@ export class CreateGroupMetricRulesRequestGroupMetricRules extends $tea.Model {
16429
16478
  namespace: 'Namespace',
16430
16479
  noDataPolicy: 'NoDataPolicy',
16431
16480
  noEffectiveInterval: 'NoEffectiveInterval',
16481
+ options: 'Options',
16432
16482
  period: 'Period',
16433
16483
  ruleId: 'RuleId',
16434
16484
  ruleName: 'RuleName',
@@ -16451,6 +16501,7 @@ export class CreateGroupMetricRulesRequestGroupMetricRules extends $tea.Model {
16451
16501
  namespace: 'string',
16452
16502
  noDataPolicy: 'string',
16453
16503
  noEffectiveInterval: 'string',
16504
+ options: 'string',
16454
16505
  period: 'string',
16455
16506
  ruleId: 'string',
16456
16507
  ruleName: 'string',
@@ -20527,15 +20578,21 @@ export class DescribeHybridMonitorNamespaceListResponseBodyDescribeHybridMonitor
20527
20578
  }
20528
20579
 
20529
20580
  export class DescribeHybridMonitorNamespaceListResponseBodyDescribeHybridMonitorNamespaceDetail extends $tea.Model {
20581
+ namespaceRegion?: string;
20582
+ SLSProject?: string;
20530
20583
  spec?: string;
20531
20584
  static names(): { [key: string]: string } {
20532
20585
  return {
20586
+ namespaceRegion: 'NamespaceRegion',
20587
+ SLSProject: 'SLSProject',
20533
20588
  spec: 'Spec',
20534
20589
  };
20535
20590
  }
20536
20591
 
20537
20592
  static types(): { [key: string]: any } {
20538
20593
  return {
20594
+ namespaceRegion: 'string',
20595
+ SLSProject: 'string',
20539
20596
  spec: 'string',
20540
20597
  };
20541
20598
  }
@@ -20554,6 +20611,7 @@ export class DescribeHybridMonitorNamespaceListResponseBodyDescribeHybridMonitor
20554
20611
  isDelete?: number;
20555
20612
  modifyTime?: string;
20556
20613
  namespace?: string;
20614
+ namespaceType?: string;
20557
20615
  notAliyunTaskNumber?: number;
20558
20616
  static names(): { [key: string]: string } {
20559
20617
  return {
@@ -20565,6 +20623,7 @@ export class DescribeHybridMonitorNamespaceListResponseBodyDescribeHybridMonitor
20565
20623
  isDelete: 'IsDelete',
20566
20624
  modifyTime: 'ModifyTime',
20567
20625
  namespace: 'Namespace',
20626
+ namespaceType: 'NamespaceType',
20568
20627
  notAliyunTaskNumber: 'NotAliyunTaskNumber',
20569
20628
  };
20570
20629
  }
@@ -20579,6 +20638,7 @@ export class DescribeHybridMonitorNamespaceListResponseBodyDescribeHybridMonitor
20579
20638
  isDelete: 'number',
20580
20639
  modifyTime: 'string',
20581
20640
  namespace: 'string',
20641
+ namespaceType: 'string',
20582
20642
  notAliyunTaskNumber: 'number',
20583
20643
  };
20584
20644
  }
@@ -23177,6 +23237,7 @@ export class DescribeMonitoringAgentProcessesResponseBodyNodeProcesses extends $
23177
23237
  }
23178
23238
 
23179
23239
  export class DescribeMonitoringAgentStatusesResponseBodyNodeStatusListNodeStatus extends $tea.Model {
23240
+ agentInstallErrorCode?: string;
23180
23241
  autoInstall?: boolean;
23181
23242
  instanceId?: string;
23182
23243
  osMonitorConfig?: string;
@@ -23187,6 +23248,7 @@ export class DescribeMonitoringAgentStatusesResponseBodyNodeStatusListNodeStatus
23187
23248
  status?: string;
23188
23249
  static names(): { [key: string]: string } {
23189
23250
  return {
23251
+ agentInstallErrorCode: 'AgentInstallErrorCode',
23190
23252
  autoInstall: 'AutoInstall',
23191
23253
  instanceId: 'InstanceId',
23192
23254
  osMonitorConfig: 'OsMonitorConfig',
@@ -23200,6 +23262,7 @@ export class DescribeMonitoringAgentStatusesResponseBodyNodeStatusListNodeStatus
23200
23262
 
23201
23263
  static types(): { [key: string]: any } {
23202
23264
  return {
23265
+ agentInstallErrorCode: 'string',
23203
23266
  autoInstall: 'boolean',
23204
23267
  instanceId: 'string',
23205
23268
  osMonitorConfig: 'string',
@@ -23255,7 +23318,9 @@ export class DescribeProductResourceTagKeyListResponseBodyTagKeys extends $tea.M
23255
23318
  }
23256
23319
 
23257
23320
  export class DescribeProductsOfActiveMetricRuleResponseBodyAllProductInitMetricRuleListAllProductInitMetricRuleAlertInitConfigListAlertInitConfig extends $tea.Model {
23321
+ comparisonOperator?: string;
23258
23322
  evaluationCount?: string;
23323
+ level?: string;
23259
23324
  metricName?: string;
23260
23325
  namespace?: string;
23261
23326
  period?: string;
@@ -23263,7 +23328,9 @@ export class DescribeProductsOfActiveMetricRuleResponseBodyAllProductInitMetricR
23263
23328
  threshold?: string;
23264
23329
  static names(): { [key: string]: string } {
23265
23330
  return {
23331
+ comparisonOperator: 'ComparisonOperator',
23266
23332
  evaluationCount: 'EvaluationCount',
23333
+ level: 'Level',
23267
23334
  metricName: 'MetricName',
23268
23335
  namespace: 'Namespace',
23269
23336
  period: 'Period',
@@ -23274,7 +23341,9 @@ export class DescribeProductsOfActiveMetricRuleResponseBodyAllProductInitMetricR
23274
23341
 
23275
23342
  static types(): { [key: string]: any } {
23276
23343
  return {
23344
+ comparisonOperator: 'string',
23277
23345
  evaluationCount: 'string',
23346
+ level: 'string',
23278
23347
  metricName: 'string',
23279
23348
  namespace: 'string',
23280
23349
  period: 'string',
@@ -24341,6 +24410,7 @@ export class DescribeSiteMonitorQuotaResponseBodyData extends $tea.Model {
24341
24410
  export class DescribeSystemEventAttributeResponseBodySystemEventsSystemEvent extends $tea.Model {
24342
24411
  content?: string;
24343
24412
  groupId?: string;
24413
+ id?: string;
24344
24414
  instanceName?: string;
24345
24415
  level?: string;
24346
24416
  name?: string;
@@ -24353,6 +24423,7 @@ export class DescribeSystemEventAttributeResponseBodySystemEventsSystemEvent ext
24353
24423
  return {
24354
24424
  content: 'Content',
24355
24425
  groupId: 'GroupId',
24426
+ id: 'Id',
24356
24427
  instanceName: 'InstanceName',
24357
24428
  level: 'Level',
24358
24429
  name: 'Name',
@@ -24368,6 +24439,7 @@ export class DescribeSystemEventAttributeResponseBodySystemEventsSystemEvent ext
24368
24439
  return {
24369
24440
  content: 'string',
24370
24441
  groupId: 'string',
24442
+ id: 'string',
24371
24443
  instanceName: 'string',
24372
24444
  level: 'string',
24373
24445
  name: 'string',
@@ -27639,8 +27711,10 @@ export default class Client extends OpenApi {
27639
27711
  }
27640
27712
 
27641
27713
  /**
27642
- * ## Prerequisites
27714
+ * # [](#)Prerequisites
27643
27715
  * Hybrid Cloud Monitoring is activated. For more information, see [Activate Hybrid Cloud Monitoring](~~250773~~).
27716
+ * # [](#)Description
27717
+ * This topic provides an example on how to create a namespace named `aliyun`. In this example, the data retention period of the namespace is set to `cms.s1.3xlarge`. The returned result indicates that the namespace is created.
27644
27718
  *
27645
27719
  * @param request CreateHybridMonitorNamespaceRequest
27646
27720
  * @param runtime runtime options for this request RuntimeOptions
@@ -27657,6 +27731,14 @@ export default class Client extends OpenApi {
27657
27731
  query["Namespace"] = request.namespace;
27658
27732
  }
27659
27733
 
27734
+ if (!Util.isUnset(request.namespaceRegion)) {
27735
+ query["NamespaceRegion"] = request.namespaceRegion;
27736
+ }
27737
+
27738
+ if (!Util.isUnset(request.namespaceType)) {
27739
+ query["NamespaceType"] = request.namespaceType;
27740
+ }
27741
+
27660
27742
  if (!Util.isUnset(request.spec)) {
27661
27743
  query["Spec"] = request.spec;
27662
27744
  }
@@ -27679,8 +27761,10 @@ export default class Client extends OpenApi {
27679
27761
  }
27680
27762
 
27681
27763
  /**
27682
- * ## Prerequisites
27764
+ * # [](#)Prerequisites
27683
27765
  * Hybrid Cloud Monitoring is activated. For more information, see [Activate Hybrid Cloud Monitoring](~~250773~~).
27766
+ * # [](#)Description
27767
+ * This topic provides an example on how to create a namespace named `aliyun`. In this example, the data retention period of the namespace is set to `cms.s1.3xlarge`. The returned result indicates that the namespace is created.
27684
27768
  *
27685
27769
  * @param request CreateHybridMonitorNamespaceRequest
27686
27770
  * @return CreateHybridMonitorNamespaceResponse
@@ -27747,9 +27831,11 @@ export default class Client extends OpenApi {
27747
27831
  }
27748
27832
 
27749
27833
  /**
27750
- * ## Prerequisites
27834
+ * # [](#)Prerequisites
27751
27835
  * * Hybrid Cloud Monitoring is activated. For more information, see [Activate Hybrid Cloud Monitoring](~~250773~~).
27752
- * * If you want to create a metric for logs imported from Log Service, make sure that you have activated Log Service and created a project and a Logstore. For more information, see [Getting Started](~~54604~~).
27836
+ * * If you want to create a metric for logs imported from Simple Log Service, make sure that you have activated Simple Log Service and created a project and a Logstore. For more information, see [Getting Started](~~54604~~).
27837
+ * # [](#)Description
27838
+ * This topic provides an example on how to create a metric import task named `aliyun_task` for Elastic Compute Service (ECS). The task imports the `cpu_total` metric to the `aliyun` namespace. The response shows that the metric import task is created.
27753
27839
  *
27754
27840
  * @param request CreateHybridMonitorTaskRequest
27755
27841
  * @param runtime runtime options for this request RuntimeOptions
@@ -27762,6 +27848,10 @@ export default class Client extends OpenApi {
27762
27848
  query["AttachLabels"] = request.attachLabels;
27763
27849
  }
27764
27850
 
27851
+ if (!Util.isUnset(request.cloudAccessId)) {
27852
+ query["CloudAccessId"] = request.cloudAccessId;
27853
+ }
27854
+
27765
27855
  if (!Util.isUnset(request.collectInterval)) {
27766
27856
  query["CollectInterval"] = request.collectInterval;
27767
27857
  }
@@ -27824,9 +27914,11 @@ export default class Client extends OpenApi {
27824
27914
  }
27825
27915
 
27826
27916
  /**
27827
- * ## Prerequisites
27917
+ * # [](#)Prerequisites
27828
27918
  * * Hybrid Cloud Monitoring is activated. For more information, see [Activate Hybrid Cloud Monitoring](~~250773~~).
27829
- * * If you want to create a metric for logs imported from Log Service, make sure that you have activated Log Service and created a project and a Logstore. For more information, see [Getting Started](~~54604~~).
27919
+ * * If you want to create a metric for logs imported from Simple Log Service, make sure that you have activated Simple Log Service and created a project and a Logstore. For more information, see [Getting Started](~~54604~~).
27920
+ * # [](#)Description
27921
+ * This topic provides an example on how to create a metric import task named `aliyun_task` for Elastic Compute Service (ECS). The task imports the `cpu_total` metric to the `aliyun` namespace. The response shows that the metric import task is created.
27830
27922
  *
27831
27923
  * @param request CreateHybridMonitorTaskRequest
27832
27924
  * @return CreateHybridMonitorTaskResponse
@@ -29440,7 +29532,8 @@ export default class Client extends OpenApi {
29440
29532
  }
29441
29533
 
29442
29534
  /**
29443
- * This topic provides an example to show how to query the statistics of alert logs for Elastic Compute Service (ECS) based on the `product` dimension.
29535
+ * Queries the statistics of alert logs.
29536
+ * This topic provides an example on how to query the statistics of alert logs for Elastic Compute Service (ECS) based on the `product` dimension.
29444
29537
  *
29445
29538
  * @param request DescribeAlertLogCountRequest
29446
29539
  * @param runtime runtime options for this request RuntimeOptions
@@ -29457,6 +29550,10 @@ export default class Client extends OpenApi {
29457
29550
  query["EndTime"] = request.endTime;
29458
29551
  }
29459
29552
 
29553
+ if (!Util.isUnset(request.eventType)) {
29554
+ query["EventType"] = request.eventType;
29555
+ }
29556
+
29460
29557
  if (!Util.isUnset(request.groupBy)) {
29461
29558
  query["GroupBy"] = request.groupBy;
29462
29559
  }
@@ -29493,6 +29590,10 @@ export default class Client extends OpenApi {
29493
29590
  query["Product"] = request.product;
29494
29591
  }
29495
29592
 
29593
+ if (!Util.isUnset(request.ruleId)) {
29594
+ query["RuleId"] = request.ruleId;
29595
+ }
29596
+
29496
29597
  if (!Util.isUnset(request.ruleName)) {
29497
29598
  query["RuleName"] = request.ruleName;
29498
29599
  }
@@ -29531,7 +29632,8 @@ export default class Client extends OpenApi {
29531
29632
  }
29532
29633
 
29533
29634
  /**
29534
- * This topic provides an example to show how to query the statistics of alert logs for Elastic Compute Service (ECS) based on the `product` dimension.
29635
+ * Queries the statistics of alert logs.
29636
+ * This topic provides an example on how to query the statistics of alert logs for Elastic Compute Service (ECS) based on the `product` dimension.
29535
29637
  *
29536
29638
  * @param request DescribeAlertLogCountRequest
29537
29639
  * @return DescribeAlertLogCountResponse
@@ -29559,6 +29661,10 @@ export default class Client extends OpenApi {
29559
29661
  query["EndTime"] = request.endTime;
29560
29662
  }
29561
29663
 
29664
+ if (!Util.isUnset(request.eventType)) {
29665
+ query["EventType"] = request.eventType;
29666
+ }
29667
+
29562
29668
  if (!Util.isUnset(request.groupBy)) {
29563
29669
  query["GroupBy"] = request.groupBy;
29564
29670
  }
@@ -29595,6 +29701,10 @@ export default class Client extends OpenApi {
29595
29701
  query["Product"] = request.product;
29596
29702
  }
29597
29703
 
29704
+ if (!Util.isUnset(request.ruleId)) {
29705
+ query["RuleId"] = request.ruleId;
29706
+ }
29707
+
29598
29708
  if (!Util.isUnset(request.ruleName)) {
29599
29709
  query["RuleName"] = request.ruleName;
29600
29710
  }
@@ -29644,6 +29754,7 @@ export default class Client extends OpenApi {
29644
29754
  }
29645
29755
 
29646
29756
  /**
29757
+ * You can call the operation to query only the alert logs within the last year.
29647
29758
  * This topic provides an example to show how to query the alert logs of Elastic Compute Service (ECS) based on the `product` dimension.
29648
29759
  *
29649
29760
  * @param request DescribeAlertLogListRequest
@@ -29661,6 +29772,10 @@ export default class Client extends OpenApi {
29661
29772
  query["EndTime"] = request.endTime;
29662
29773
  }
29663
29774
 
29775
+ if (!Util.isUnset(request.eventType)) {
29776
+ query["EventType"] = request.eventType;
29777
+ }
29778
+
29664
29779
  if (!Util.isUnset(request.groupBy)) {
29665
29780
  query["GroupBy"] = request.groupBy;
29666
29781
  }
@@ -29739,6 +29854,7 @@ export default class Client extends OpenApi {
29739
29854
  }
29740
29855
 
29741
29856
  /**
29857
+ * You can call the operation to query only the alert logs within the last year.
29742
29858
  * This topic provides an example to show how to query the alert logs of Elastic Compute Service (ECS) based on the `product` dimension.
29743
29859
  *
29744
29860
  * @param request DescribeAlertLogListRequest
@@ -30377,7 +30493,7 @@ export default class Client extends OpenApi {
30377
30493
  }
30378
30494
 
30379
30495
  /**
30380
- * You can create a process monitoring task to monitor all or the specified Elastic Compute Service (ECS) instances in an application group and set alert rules for the process monitoring task.
30496
+ * You can create a process monitoring task to monitor all or the specified Elastic Compute Service (ECS) instances in an application group and configure alert rules for the process monitoring task.
30381
30497
  *
30382
30498
  * @param request DescribeGroupMonitoringAgentProcessRequest
30383
30499
  * @param runtime runtime options for this request RuntimeOptions
@@ -30420,7 +30536,7 @@ export default class Client extends OpenApi {
30420
30536
  }
30421
30537
 
30422
30538
  /**
30423
- * You can create a process monitoring task to monitor all or the specified Elastic Compute Service (ECS) instances in an application group and set alert rules for the process monitoring task.
30539
+ * You can create a process monitoring task to monitor all or the specified Elastic Compute Service (ECS) instances in an application group and configure alert rules for the process monitoring task.
30424
30540
  *
30425
30541
  * @param request DescribeGroupMonitoringAgentProcessRequest
30426
30542
  * @return DescribeGroupMonitoringAgentProcessResponse
@@ -31319,7 +31435,7 @@ export default class Client extends OpenApi {
31319
31435
  }
31320
31436
 
31321
31437
  /**
31322
- * This topic provides an example to show how to query the details of an alert template whose ID is `70****`.
31438
+ * This topic provides an example on how to query the details of an alert template whose ID is `70****`.
31323
31439
  *
31324
31440
  * @param request DescribeMetricRuleTemplateAttributeRequest
31325
31441
  * @param runtime runtime options for this request RuntimeOptions
@@ -31354,7 +31470,7 @@ export default class Client extends OpenApi {
31354
31470
  }
31355
31471
 
31356
31472
  /**
31357
- * This topic provides an example to show how to query the details of an alert template whose ID is `70****`.
31473
+ * This topic provides an example on how to query the details of an alert template whose ID is `70****`.
31358
31474
  *
31359
31475
  * @param request DescribeMetricRuleTemplateAttributeRequest
31360
31476
  * @return DescribeMetricRuleTemplateAttributeResponse
@@ -34552,6 +34668,10 @@ export default class Client extends OpenApi {
34552
34668
  query["NoEffectiveInterval"] = request.noEffectiveInterval;
34553
34669
  }
34554
34670
 
34671
+ if (!Util.isUnset(request.options)) {
34672
+ query["Options"] = request.options;
34673
+ }
34674
+
34555
34675
  if (!Util.isUnset(request.period)) {
34556
34676
  query["Period"] = request.period;
34557
34677
  }
@@ -34989,7 +35109,7 @@ export default class Client extends OpenApi {
34989
35109
  }
34990
35110
 
34991
35111
  /**
34992
- * This topic provides an example on how to create a threshold-triggered alert rule for the `cpu_total` metric of the `i-uf6j91r34rnwawoo****` instance that belongs to Elastic Compute Service (ECS). The namespace of ECS is `acs_ecs_dashboard`. In this example, the alert contact group of the alert rule is `ECS_Group`, the name of the alert rule is `test123`, and the ID of the alert rule is `a151cd6023eacee2f0978e03863cc1697c89508****`. The statistical method for Critical-level alerts is `Average`, the comparison operator for Critical-level alerts is `GreaterThanOrEqualToThreshold`, the threshold for Critical-level alerts is `90`, and the consecutive number of times for which the metric value is measured before a Critical-level alert is triggered is `3`.
35112
+ * This topic provides an example on how to create a threshold-triggered alert rule for the `cpu_total` metric of an Elastic Compute Service (ECS) instance whose ID is `i-uf6j91r34rnwawoo****`. The namespace of ECS metrics is `acs_ecs_dashboard`. The alert contact group of the alert rule is `ECS_Group`. The name of the alert rule is `test123`. The ID of the alert rule is `a151cd6023eacee2f0978e03863cc1697c89508****`. The statistical method for Critical-level alerts is `Average`. The comparison operator for Critical-level alerts is `GreaterThanOrEqualToThreshold`. The threshold for Critical-level alerts is `90`. The consecutive number of times for which the metric value meets the trigger condition before a Critical-level alert is triggered is `3`.
34993
35113
  *
34994
35114
  * @param request PutResourceMetricRulesRequest
34995
35115
  * @param runtime runtime options for this request RuntimeOptions
@@ -35020,7 +35140,7 @@ export default class Client extends OpenApi {
35020
35140
  }
35021
35141
 
35022
35142
  /**
35023
- * This topic provides an example on how to create a threshold-triggered alert rule for the `cpu_total` metric of the `i-uf6j91r34rnwawoo****` instance that belongs to Elastic Compute Service (ECS). The namespace of ECS is `acs_ecs_dashboard`. In this example, the alert contact group of the alert rule is `ECS_Group`, the name of the alert rule is `test123`, and the ID of the alert rule is `a151cd6023eacee2f0978e03863cc1697c89508****`. The statistical method for Critical-level alerts is `Average`, the comparison operator for Critical-level alerts is `GreaterThanOrEqualToThreshold`, the threshold for Critical-level alerts is `90`, and the consecutive number of times for which the metric value is measured before a Critical-level alert is triggered is `3`.
35143
+ * This topic provides an example on how to create a threshold-triggered alert rule for the `cpu_total` metric of an Elastic Compute Service (ECS) instance whose ID is `i-uf6j91r34rnwawoo****`. The namespace of ECS metrics is `acs_ecs_dashboard`. The alert contact group of the alert rule is `ECS_Group`. The name of the alert rule is `test123`. The ID of the alert rule is `a151cd6023eacee2f0978e03863cc1697c89508****`. The statistical method for Critical-level alerts is `Average`. The comparison operator for Critical-level alerts is `GreaterThanOrEqualToThreshold`. The threshold for Critical-level alerts is `90`. The consecutive number of times for which the metric value meets the trigger condition before a Critical-level alert is triggered is `3`.
35024
35144
  *
35025
35145
  * @param request PutResourceMetricRulesRequest
35026
35146
  * @return PutResourceMetricRulesResponse