@alicloud/cms20190101 2.0.10 → 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/dist/client.d.ts +536 -508
- package/dist/client.js +94 -16
- package/dist/client.js.map +1 -1
- package/package.json +3 -3
- package/src/client.ts +598 -510
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
|
|
561
|
-
statusCode
|
|
562
|
-
body
|
|
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
|
|
657
|
-
statusCode
|
|
658
|
-
body
|
|
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
|
|
735
|
-
statusCode
|
|
736
|
-
body
|
|
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
|
|
813
|
-
statusCode
|
|
814
|
-
body
|
|
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
|
|
943
|
-
statusCode
|
|
944
|
-
body
|
|
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
|
|
1024
|
-
statusCode
|
|
1025
|
-
body
|
|
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
|
|
1138
|
-
statusCode
|
|
1139
|
-
body
|
|
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
|
|
1219
|
-
statusCode
|
|
1220
|
-
body
|
|
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
|
|
1318
|
-
statusCode
|
|
1319
|
-
body
|
|
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
|
|
1399
|
-
statusCode
|
|
1400
|
-
body
|
|
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
|
|
1489
|
-
statusCode
|
|
1490
|
-
body
|
|
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
|
|
1591
|
-
statusCode
|
|
1592
|
-
body
|
|
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',
|
|
@@ -1674,9 +1695,9 @@ export class CreateHybridMonitorNamespaceResponseBody extends $tea.Model {
|
|
|
1674
1695
|
}
|
|
1675
1696
|
|
|
1676
1697
|
export class CreateHybridMonitorNamespaceResponse extends $tea.Model {
|
|
1677
|
-
headers
|
|
1678
|
-
statusCode
|
|
1679
|
-
body
|
|
1698
|
+
headers?: { [key: string]: string };
|
|
1699
|
+
statusCode?: number;
|
|
1700
|
+
body?: CreateHybridMonitorNamespaceResponseBody;
|
|
1680
1701
|
static names(): { [key: string]: string } {
|
|
1681
1702
|
return {
|
|
1682
1703
|
headers: 'headers',
|
|
@@ -1755,9 +1776,9 @@ export class CreateHybridMonitorSLSGroupResponseBody extends $tea.Model {
|
|
|
1755
1776
|
}
|
|
1756
1777
|
|
|
1757
1778
|
export class CreateHybridMonitorSLSGroupResponse extends $tea.Model {
|
|
1758
|
-
headers
|
|
1759
|
-
statusCode
|
|
1760
|
-
body
|
|
1779
|
+
headers?: { [key: string]: string };
|
|
1780
|
+
statusCode?: number;
|
|
1781
|
+
body?: CreateHybridMonitorSLSGroupResponseBody;
|
|
1761
1782
|
static names(): { [key: string]: string } {
|
|
1762
1783
|
return {
|
|
1763
1784
|
headers: 'headers',
|
|
@@ -1781,6 +1802,7 @@ export class CreateHybridMonitorSLSGroupResponse extends $tea.Model {
|
|
|
1781
1802
|
|
|
1782
1803
|
export class CreateHybridMonitorTaskRequest extends $tea.Model {
|
|
1783
1804
|
attachLabels?: CreateHybridMonitorTaskRequestAttachLabels[];
|
|
1805
|
+
cloudAccessId?: string[];
|
|
1784
1806
|
collectInterval?: string;
|
|
1785
1807
|
collectTargetType?: string;
|
|
1786
1808
|
description?: string;
|
|
@@ -1796,6 +1818,7 @@ export class CreateHybridMonitorTaskRequest extends $tea.Model {
|
|
|
1796
1818
|
static names(): { [key: string]: string } {
|
|
1797
1819
|
return {
|
|
1798
1820
|
attachLabels: 'AttachLabels',
|
|
1821
|
+
cloudAccessId: 'CloudAccessId',
|
|
1799
1822
|
collectInterval: 'CollectInterval',
|
|
1800
1823
|
collectTargetType: 'CollectTargetType',
|
|
1801
1824
|
description: 'Description',
|
|
@@ -1814,6 +1837,7 @@ export class CreateHybridMonitorTaskRequest extends $tea.Model {
|
|
|
1814
1837
|
static types(): { [key: string]: any } {
|
|
1815
1838
|
return {
|
|
1816
1839
|
attachLabels: { 'type': 'array', 'itemType': CreateHybridMonitorTaskRequestAttachLabels },
|
|
1840
|
+
cloudAccessId: { 'type': 'array', 'itemType': 'string' },
|
|
1817
1841
|
collectInterval: 'string',
|
|
1818
1842
|
collectTargetType: 'string',
|
|
1819
1843
|
description: 'string',
|
|
@@ -1866,9 +1890,9 @@ export class CreateHybridMonitorTaskResponseBody extends $tea.Model {
|
|
|
1866
1890
|
}
|
|
1867
1891
|
|
|
1868
1892
|
export class CreateHybridMonitorTaskResponse extends $tea.Model {
|
|
1869
|
-
headers
|
|
1870
|
-
statusCode
|
|
1871
|
-
body
|
|
1893
|
+
headers?: { [key: string]: string };
|
|
1894
|
+
statusCode?: number;
|
|
1895
|
+
body?: CreateHybridMonitorTaskResponseBody;
|
|
1872
1896
|
static names(): { [key: string]: string } {
|
|
1873
1897
|
return {
|
|
1874
1898
|
headers: 'headers',
|
|
@@ -1959,9 +1983,9 @@ export class CreateInstantSiteMonitorResponseBody extends $tea.Model {
|
|
|
1959
1983
|
}
|
|
1960
1984
|
|
|
1961
1985
|
export class CreateInstantSiteMonitorResponse extends $tea.Model {
|
|
1962
|
-
headers
|
|
1963
|
-
statusCode
|
|
1964
|
-
body
|
|
1986
|
+
headers?: { [key: string]: string };
|
|
1987
|
+
statusCode?: number;
|
|
1988
|
+
body?: CreateInstantSiteMonitorResponseBody;
|
|
1965
1989
|
static names(): { [key: string]: string } {
|
|
1966
1990
|
return {
|
|
1967
1991
|
headers: 'headers',
|
|
@@ -2064,9 +2088,9 @@ export class CreateMetricRuleBlackListResponseBody extends $tea.Model {
|
|
|
2064
2088
|
}
|
|
2065
2089
|
|
|
2066
2090
|
export class CreateMetricRuleBlackListResponse extends $tea.Model {
|
|
2067
|
-
headers
|
|
2068
|
-
statusCode
|
|
2069
|
-
body
|
|
2091
|
+
headers?: { [key: string]: string };
|
|
2092
|
+
statusCode?: number;
|
|
2093
|
+
body?: CreateMetricRuleBlackListResponseBody;
|
|
2070
2094
|
static names(): { [key: string]: string } {
|
|
2071
2095
|
return {
|
|
2072
2096
|
headers: 'headers',
|
|
@@ -2142,9 +2166,9 @@ export class CreateMetricRuleResourcesResponseBody extends $tea.Model {
|
|
|
2142
2166
|
}
|
|
2143
2167
|
|
|
2144
2168
|
export class CreateMetricRuleResourcesResponse extends $tea.Model {
|
|
2145
|
-
headers
|
|
2146
|
-
statusCode
|
|
2147
|
-
body
|
|
2169
|
+
headers?: { [key: string]: string };
|
|
2170
|
+
statusCode?: number;
|
|
2171
|
+
body?: CreateMetricRuleResourcesResponseBody;
|
|
2148
2172
|
static names(): { [key: string]: string } {
|
|
2149
2173
|
return {
|
|
2150
2174
|
headers: 'headers',
|
|
@@ -2226,9 +2250,9 @@ export class CreateMetricRuleTemplateResponseBody extends $tea.Model {
|
|
|
2226
2250
|
}
|
|
2227
2251
|
|
|
2228
2252
|
export class CreateMetricRuleTemplateResponse extends $tea.Model {
|
|
2229
|
-
headers
|
|
2230
|
-
statusCode
|
|
2231
|
-
body
|
|
2253
|
+
headers?: { [key: string]: string };
|
|
2254
|
+
statusCode?: number;
|
|
2255
|
+
body?: CreateMetricRuleTemplateResponseBody;
|
|
2232
2256
|
static names(): { [key: string]: string } {
|
|
2233
2257
|
return {
|
|
2234
2258
|
headers: 'headers',
|
|
@@ -2310,9 +2334,9 @@ export class CreateMonitorAgentProcessResponseBody extends $tea.Model {
|
|
|
2310
2334
|
}
|
|
2311
2335
|
|
|
2312
2336
|
export class CreateMonitorAgentProcessResponse extends $tea.Model {
|
|
2313
|
-
headers
|
|
2314
|
-
statusCode
|
|
2315
|
-
body
|
|
2337
|
+
headers?: { [key: string]: string };
|
|
2338
|
+
statusCode?: number;
|
|
2339
|
+
body?: CreateMonitorAgentProcessResponseBody;
|
|
2316
2340
|
static names(): { [key: string]: string } {
|
|
2317
2341
|
return {
|
|
2318
2342
|
headers: 'headers',
|
|
@@ -2391,9 +2415,9 @@ export class CreateMonitorGroupResponseBody extends $tea.Model {
|
|
|
2391
2415
|
}
|
|
2392
2416
|
|
|
2393
2417
|
export class CreateMonitorGroupResponse extends $tea.Model {
|
|
2394
|
-
headers
|
|
2395
|
-
statusCode
|
|
2396
|
-
body
|
|
2418
|
+
headers?: { [key: string]: string };
|
|
2419
|
+
statusCode?: number;
|
|
2420
|
+
body?: CreateMonitorGroupResponseBody;
|
|
2397
2421
|
static names(): { [key: string]: string } {
|
|
2398
2422
|
return {
|
|
2399
2423
|
headers: 'headers',
|
|
@@ -2481,9 +2505,9 @@ export class CreateMonitorGroupByResourceGroupIdResponseBody extends $tea.Model
|
|
|
2481
2505
|
}
|
|
2482
2506
|
|
|
2483
2507
|
export class CreateMonitorGroupByResourceGroupIdResponse extends $tea.Model {
|
|
2484
|
-
headers
|
|
2485
|
-
statusCode
|
|
2486
|
-
body
|
|
2508
|
+
headers?: { [key: string]: string };
|
|
2509
|
+
statusCode?: number;
|
|
2510
|
+
body?: CreateMonitorGroupByResourceGroupIdResponseBody;
|
|
2487
2511
|
static names(): { [key: string]: string } {
|
|
2488
2512
|
return {
|
|
2489
2513
|
headers: 'headers',
|
|
@@ -2559,9 +2583,9 @@ export class CreateMonitorGroupInstancesResponseBody extends $tea.Model {
|
|
|
2559
2583
|
}
|
|
2560
2584
|
|
|
2561
2585
|
export class CreateMonitorGroupInstancesResponse extends $tea.Model {
|
|
2562
|
-
headers
|
|
2563
|
-
statusCode
|
|
2564
|
-
body
|
|
2586
|
+
headers?: { [key: string]: string };
|
|
2587
|
+
statusCode?: number;
|
|
2588
|
+
body?: CreateMonitorGroupInstancesResponseBody;
|
|
2565
2589
|
static names(): { [key: string]: string } {
|
|
2566
2590
|
return {
|
|
2567
2591
|
headers: 'headers',
|
|
@@ -2646,9 +2670,9 @@ export class CreateMonitorGroupNotifyPolicyResponseBody extends $tea.Model {
|
|
|
2646
2670
|
}
|
|
2647
2671
|
|
|
2648
2672
|
export class CreateMonitorGroupNotifyPolicyResponse extends $tea.Model {
|
|
2649
|
-
headers
|
|
2650
|
-
statusCode
|
|
2651
|
-
body
|
|
2673
|
+
headers?: { [key: string]: string };
|
|
2674
|
+
statusCode?: number;
|
|
2675
|
+
body?: CreateMonitorGroupNotifyPolicyResponseBody;
|
|
2652
2676
|
static names(): { [key: string]: string } {
|
|
2653
2677
|
return {
|
|
2654
2678
|
headers: 'headers',
|
|
@@ -2730,9 +2754,9 @@ export class CreateMonitoringAgentProcessResponseBody extends $tea.Model {
|
|
|
2730
2754
|
}
|
|
2731
2755
|
|
|
2732
2756
|
export class CreateMonitoringAgentProcessResponse extends $tea.Model {
|
|
2733
|
-
headers
|
|
2734
|
-
statusCode
|
|
2735
|
-
body
|
|
2757
|
+
headers?: { [key: string]: string };
|
|
2758
|
+
statusCode?: number;
|
|
2759
|
+
body?: CreateMonitoringAgentProcessResponseBody;
|
|
2736
2760
|
static names(): { [key: string]: string } {
|
|
2737
2761
|
return {
|
|
2738
2762
|
headers: 'headers',
|
|
@@ -2832,9 +2856,9 @@ export class CreateSiteMonitorResponseBody extends $tea.Model {
|
|
|
2832
2856
|
}
|
|
2833
2857
|
|
|
2834
2858
|
export class CreateSiteMonitorResponse extends $tea.Model {
|
|
2835
|
-
headers
|
|
2836
|
-
statusCode
|
|
2837
|
-
body
|
|
2859
|
+
headers?: { [key: string]: string };
|
|
2860
|
+
statusCode?: number;
|
|
2861
|
+
body?: CreateSiteMonitorResponseBody;
|
|
2838
2862
|
static names(): { [key: string]: string } {
|
|
2839
2863
|
return {
|
|
2840
2864
|
headers: 'headers',
|
|
@@ -2956,9 +2980,9 @@ export class CursorResponseBody extends $tea.Model {
|
|
|
2956
2980
|
}
|
|
2957
2981
|
|
|
2958
2982
|
export class CursorResponse extends $tea.Model {
|
|
2959
|
-
headers
|
|
2960
|
-
statusCode
|
|
2961
|
-
body
|
|
2983
|
+
headers?: { [key: string]: string };
|
|
2984
|
+
statusCode?: number;
|
|
2985
|
+
body?: CursorResponseBody;
|
|
2962
2986
|
static names(): { [key: string]: string } {
|
|
2963
2987
|
return {
|
|
2964
2988
|
headers: 'headers',
|
|
@@ -3028,9 +3052,9 @@ export class DeleteContactResponseBody extends $tea.Model {
|
|
|
3028
3052
|
}
|
|
3029
3053
|
|
|
3030
3054
|
export class DeleteContactResponse extends $tea.Model {
|
|
3031
|
-
headers
|
|
3032
|
-
statusCode
|
|
3033
|
-
body
|
|
3055
|
+
headers?: { [key: string]: string };
|
|
3056
|
+
statusCode?: number;
|
|
3057
|
+
body?: DeleteContactResponseBody;
|
|
3034
3058
|
static names(): { [key: string]: string } {
|
|
3035
3059
|
return {
|
|
3036
3060
|
headers: 'headers',
|
|
@@ -3100,9 +3124,9 @@ export class DeleteContactGroupResponseBody extends $tea.Model {
|
|
|
3100
3124
|
}
|
|
3101
3125
|
|
|
3102
3126
|
export class DeleteContactGroupResponse extends $tea.Model {
|
|
3103
|
-
headers
|
|
3104
|
-
statusCode
|
|
3105
|
-
body
|
|
3127
|
+
headers?: { [key: string]: string };
|
|
3128
|
+
statusCode?: number;
|
|
3129
|
+
body?: DeleteContactGroupResponseBody;
|
|
3106
3130
|
static names(): { [key: string]: string } {
|
|
3107
3131
|
return {
|
|
3108
3132
|
headers: 'headers',
|
|
@@ -3181,9 +3205,9 @@ export class DeleteCustomMetricResponseBody extends $tea.Model {
|
|
|
3181
3205
|
}
|
|
3182
3206
|
|
|
3183
3207
|
export class DeleteCustomMetricResponse extends $tea.Model {
|
|
3184
|
-
headers
|
|
3185
|
-
statusCode
|
|
3186
|
-
body
|
|
3208
|
+
headers?: { [key: string]: string };
|
|
3209
|
+
statusCode?: number;
|
|
3210
|
+
body?: DeleteCustomMetricResponseBody;
|
|
3187
3211
|
static names(): { [key: string]: string } {
|
|
3188
3212
|
return {
|
|
3189
3213
|
headers: 'headers',
|
|
@@ -3256,9 +3280,9 @@ export class DeleteDynamicTagGroupResponseBody extends $tea.Model {
|
|
|
3256
3280
|
}
|
|
3257
3281
|
|
|
3258
3282
|
export class DeleteDynamicTagGroupResponse extends $tea.Model {
|
|
3259
|
-
headers
|
|
3260
|
-
statusCode
|
|
3261
|
-
body
|
|
3283
|
+
headers?: { [key: string]: string };
|
|
3284
|
+
statusCode?: number;
|
|
3285
|
+
body?: DeleteDynamicTagGroupResponseBody;
|
|
3262
3286
|
static names(): { [key: string]: string } {
|
|
3263
3287
|
return {
|
|
3264
3288
|
headers: 'headers',
|
|
@@ -3334,9 +3358,9 @@ export class DeleteEventRuleTargetsResponseBody extends $tea.Model {
|
|
|
3334
3358
|
}
|
|
3335
3359
|
|
|
3336
3360
|
export class DeleteEventRuleTargetsResponse extends $tea.Model {
|
|
3337
|
-
headers
|
|
3338
|
-
statusCode
|
|
3339
|
-
body
|
|
3361
|
+
headers?: { [key: string]: string };
|
|
3362
|
+
statusCode?: number;
|
|
3363
|
+
body?: DeleteEventRuleTargetsResponseBody;
|
|
3340
3364
|
static names(): { [key: string]: string } {
|
|
3341
3365
|
return {
|
|
3342
3366
|
headers: 'headers',
|
|
@@ -3406,9 +3430,9 @@ export class DeleteEventRulesResponseBody extends $tea.Model {
|
|
|
3406
3430
|
}
|
|
3407
3431
|
|
|
3408
3432
|
export class DeleteEventRulesResponse extends $tea.Model {
|
|
3409
|
-
headers
|
|
3410
|
-
statusCode
|
|
3411
|
-
body
|
|
3433
|
+
headers?: { [key: string]: string };
|
|
3434
|
+
statusCode?: number;
|
|
3435
|
+
body?: DeleteEventRulesResponseBody;
|
|
3412
3436
|
static names(): { [key: string]: string } {
|
|
3413
3437
|
return {
|
|
3414
3438
|
headers: 'headers',
|
|
@@ -3481,9 +3505,9 @@ export class DeleteExporterOutputResponseBody extends $tea.Model {
|
|
|
3481
3505
|
}
|
|
3482
3506
|
|
|
3483
3507
|
export class DeleteExporterOutputResponse extends $tea.Model {
|
|
3484
|
-
headers
|
|
3485
|
-
statusCode
|
|
3486
|
-
body
|
|
3508
|
+
headers?: { [key: string]: string };
|
|
3509
|
+
statusCode?: number;
|
|
3510
|
+
body?: DeleteExporterOutputResponseBody;
|
|
3487
3511
|
static names(): { [key: string]: string } {
|
|
3488
3512
|
return {
|
|
3489
3513
|
headers: 'headers',
|
|
@@ -3556,9 +3580,9 @@ export class DeleteExporterRuleResponseBody extends $tea.Model {
|
|
|
3556
3580
|
}
|
|
3557
3581
|
|
|
3558
3582
|
export class DeleteExporterRuleResponse extends $tea.Model {
|
|
3559
|
-
headers
|
|
3560
|
-
statusCode
|
|
3561
|
-
body
|
|
3583
|
+
headers?: { [key: string]: string };
|
|
3584
|
+
statusCode?: number;
|
|
3585
|
+
body?: DeleteExporterRuleResponseBody;
|
|
3562
3586
|
static names(): { [key: string]: string } {
|
|
3563
3587
|
return {
|
|
3564
3588
|
headers: 'headers',
|
|
@@ -3634,9 +3658,9 @@ export class DeleteGroupMonitoringAgentProcessResponseBody extends $tea.Model {
|
|
|
3634
3658
|
}
|
|
3635
3659
|
|
|
3636
3660
|
export class DeleteGroupMonitoringAgentProcessResponse extends $tea.Model {
|
|
3637
|
-
headers
|
|
3638
|
-
statusCode
|
|
3639
|
-
body
|
|
3661
|
+
headers?: { [key: string]: string };
|
|
3662
|
+
statusCode?: number;
|
|
3663
|
+
body?: DeleteGroupMonitoringAgentProcessResponseBody;
|
|
3640
3664
|
static names(): { [key: string]: string } {
|
|
3641
3665
|
return {
|
|
3642
3666
|
headers: 'headers',
|
|
@@ -3709,9 +3733,9 @@ export class DeleteHostAvailabilityResponseBody extends $tea.Model {
|
|
|
3709
3733
|
}
|
|
3710
3734
|
|
|
3711
3735
|
export class DeleteHostAvailabilityResponse extends $tea.Model {
|
|
3712
|
-
headers
|
|
3713
|
-
statusCode
|
|
3714
|
-
body
|
|
3736
|
+
headers?: { [key: string]: string };
|
|
3737
|
+
statusCode?: number;
|
|
3738
|
+
body?: DeleteHostAvailabilityResponseBody;
|
|
3715
3739
|
static names(): { [key: string]: string } {
|
|
3716
3740
|
return {
|
|
3717
3741
|
headers: 'headers',
|
|
@@ -3784,9 +3808,9 @@ export class DeleteHybridMonitorNamespaceResponseBody extends $tea.Model {
|
|
|
3784
3808
|
}
|
|
3785
3809
|
|
|
3786
3810
|
export class DeleteHybridMonitorNamespaceResponse extends $tea.Model {
|
|
3787
|
-
headers
|
|
3788
|
-
statusCode
|
|
3789
|
-
body
|
|
3811
|
+
headers?: { [key: string]: string };
|
|
3812
|
+
statusCode?: number;
|
|
3813
|
+
body?: DeleteHybridMonitorNamespaceResponseBody;
|
|
3790
3814
|
static names(): { [key: string]: string } {
|
|
3791
3815
|
return {
|
|
3792
3816
|
headers: 'headers',
|
|
@@ -3859,9 +3883,9 @@ export class DeleteHybridMonitorSLSGroupResponseBody extends $tea.Model {
|
|
|
3859
3883
|
}
|
|
3860
3884
|
|
|
3861
3885
|
export class DeleteHybridMonitorSLSGroupResponse extends $tea.Model {
|
|
3862
|
-
headers
|
|
3863
|
-
statusCode
|
|
3864
|
-
body
|
|
3886
|
+
headers?: { [key: string]: string };
|
|
3887
|
+
statusCode?: number;
|
|
3888
|
+
body?: DeleteHybridMonitorSLSGroupResponseBody;
|
|
3865
3889
|
static names(): { [key: string]: string } {
|
|
3866
3890
|
return {
|
|
3867
3891
|
headers: 'headers',
|
|
@@ -3940,9 +3964,9 @@ export class DeleteHybridMonitorTaskResponseBody extends $tea.Model {
|
|
|
3940
3964
|
}
|
|
3941
3965
|
|
|
3942
3966
|
export class DeleteHybridMonitorTaskResponse extends $tea.Model {
|
|
3943
|
-
headers
|
|
3944
|
-
statusCode
|
|
3945
|
-
body
|
|
3967
|
+
headers?: { [key: string]: string };
|
|
3968
|
+
statusCode?: number;
|
|
3969
|
+
body?: DeleteHybridMonitorTaskResponseBody;
|
|
3946
3970
|
static names(): { [key: string]: string } {
|
|
3947
3971
|
return {
|
|
3948
3972
|
headers: 'headers',
|
|
@@ -4015,9 +4039,9 @@ export class DeleteLogMonitorResponseBody extends $tea.Model {
|
|
|
4015
4039
|
}
|
|
4016
4040
|
|
|
4017
4041
|
export class DeleteLogMonitorResponse extends $tea.Model {
|
|
4018
|
-
headers
|
|
4019
|
-
statusCode
|
|
4020
|
-
body
|
|
4042
|
+
headers?: { [key: string]: string };
|
|
4043
|
+
statusCode?: number;
|
|
4044
|
+
body?: DeleteLogMonitorResponseBody;
|
|
4021
4045
|
static names(): { [key: string]: string } {
|
|
4022
4046
|
return {
|
|
4023
4047
|
headers: 'headers',
|
|
@@ -4093,9 +4117,9 @@ export class DeleteMetricRuleBlackListResponseBody extends $tea.Model {
|
|
|
4093
4117
|
}
|
|
4094
4118
|
|
|
4095
4119
|
export class DeleteMetricRuleBlackListResponse extends $tea.Model {
|
|
4096
|
-
headers
|
|
4097
|
-
statusCode
|
|
4098
|
-
body
|
|
4120
|
+
headers?: { [key: string]: string };
|
|
4121
|
+
statusCode?: number;
|
|
4122
|
+
body?: DeleteMetricRuleBlackListResponseBody;
|
|
4099
4123
|
static names(): { [key: string]: string } {
|
|
4100
4124
|
return {
|
|
4101
4125
|
headers: 'headers',
|
|
@@ -4168,9 +4192,9 @@ export class DeleteMetricRuleResourcesResponseBody extends $tea.Model {
|
|
|
4168
4192
|
}
|
|
4169
4193
|
|
|
4170
4194
|
export class DeleteMetricRuleResourcesResponse extends $tea.Model {
|
|
4171
|
-
headers
|
|
4172
|
-
statusCode
|
|
4173
|
-
body
|
|
4195
|
+
headers?: { [key: string]: string };
|
|
4196
|
+
statusCode?: number;
|
|
4197
|
+
body?: DeleteMetricRuleResourcesResponseBody;
|
|
4174
4198
|
static names(): { [key: string]: string } {
|
|
4175
4199
|
return {
|
|
4176
4200
|
headers: 'headers',
|
|
@@ -4249,9 +4273,9 @@ export class DeleteMetricRuleTargetsResponseBody extends $tea.Model {
|
|
|
4249
4273
|
}
|
|
4250
4274
|
|
|
4251
4275
|
export class DeleteMetricRuleTargetsResponse extends $tea.Model {
|
|
4252
|
-
headers
|
|
4253
|
-
statusCode
|
|
4254
|
-
body
|
|
4276
|
+
headers?: { [key: string]: string };
|
|
4277
|
+
statusCode?: number;
|
|
4278
|
+
body?: DeleteMetricRuleTargetsResponseBody;
|
|
4255
4279
|
static names(): { [key: string]: string } {
|
|
4256
4280
|
return {
|
|
4257
4281
|
headers: 'headers',
|
|
@@ -4327,9 +4351,9 @@ export class DeleteMetricRuleTemplateResponseBody extends $tea.Model {
|
|
|
4327
4351
|
}
|
|
4328
4352
|
|
|
4329
4353
|
export class DeleteMetricRuleTemplateResponse extends $tea.Model {
|
|
4330
|
-
headers
|
|
4331
|
-
statusCode
|
|
4332
|
-
body
|
|
4354
|
+
headers?: { [key: string]: string };
|
|
4355
|
+
statusCode?: number;
|
|
4356
|
+
body?: DeleteMetricRuleTemplateResponseBody;
|
|
4333
4357
|
static names(): { [key: string]: string } {
|
|
4334
4358
|
return {
|
|
4335
4359
|
headers: 'headers',
|
|
@@ -4402,9 +4426,9 @@ export class DeleteMetricRulesResponseBody extends $tea.Model {
|
|
|
4402
4426
|
}
|
|
4403
4427
|
|
|
4404
4428
|
export class DeleteMetricRulesResponse extends $tea.Model {
|
|
4405
|
-
headers
|
|
4406
|
-
statusCode
|
|
4407
|
-
body
|
|
4429
|
+
headers?: { [key: string]: string };
|
|
4430
|
+
statusCode?: number;
|
|
4431
|
+
body?: DeleteMetricRulesResponseBody;
|
|
4408
4432
|
static names(): { [key: string]: string } {
|
|
4409
4433
|
return {
|
|
4410
4434
|
headers: 'headers',
|
|
@@ -4480,9 +4504,9 @@ export class DeleteMonitorGroupResponseBody extends $tea.Model {
|
|
|
4480
4504
|
}
|
|
4481
4505
|
|
|
4482
4506
|
export class DeleteMonitorGroupResponse extends $tea.Model {
|
|
4483
|
-
headers
|
|
4484
|
-
statusCode
|
|
4485
|
-
body
|
|
4507
|
+
headers?: { [key: string]: string };
|
|
4508
|
+
statusCode?: number;
|
|
4509
|
+
body?: DeleteMonitorGroupResponseBody;
|
|
4486
4510
|
static names(): { [key: string]: string } {
|
|
4487
4511
|
return {
|
|
4488
4512
|
headers: 'headers',
|
|
@@ -4558,9 +4582,9 @@ export class DeleteMonitorGroupDynamicRuleResponseBody extends $tea.Model {
|
|
|
4558
4582
|
}
|
|
4559
4583
|
|
|
4560
4584
|
export class DeleteMonitorGroupDynamicRuleResponse extends $tea.Model {
|
|
4561
|
-
headers
|
|
4562
|
-
statusCode
|
|
4563
|
-
body
|
|
4585
|
+
headers?: { [key: string]: string };
|
|
4586
|
+
statusCode?: number;
|
|
4587
|
+
body?: DeleteMonitorGroupDynamicRuleResponseBody;
|
|
4564
4588
|
static names(): { [key: string]: string } {
|
|
4565
4589
|
return {
|
|
4566
4590
|
headers: 'headers',
|
|
@@ -4639,9 +4663,9 @@ export class DeleteMonitorGroupInstancesResponseBody extends $tea.Model {
|
|
|
4639
4663
|
}
|
|
4640
4664
|
|
|
4641
4665
|
export class DeleteMonitorGroupInstancesResponse extends $tea.Model {
|
|
4642
|
-
headers
|
|
4643
|
-
statusCode
|
|
4644
|
-
body
|
|
4666
|
+
headers?: { [key: string]: string };
|
|
4667
|
+
statusCode?: number;
|
|
4668
|
+
body?: DeleteMonitorGroupInstancesResponseBody;
|
|
4645
4669
|
static names(): { [key: string]: string } {
|
|
4646
4670
|
return {
|
|
4647
4671
|
headers: 'headers',
|
|
@@ -4720,9 +4744,9 @@ export class DeleteMonitorGroupNotifyPolicyResponseBody extends $tea.Model {
|
|
|
4720
4744
|
}
|
|
4721
4745
|
|
|
4722
4746
|
export class DeleteMonitorGroupNotifyPolicyResponse extends $tea.Model {
|
|
4723
|
-
headers
|
|
4724
|
-
statusCode
|
|
4725
|
-
body
|
|
4747
|
+
headers?: { [key: string]: string };
|
|
4748
|
+
statusCode?: number;
|
|
4749
|
+
body?: DeleteMonitorGroupNotifyPolicyResponseBody;
|
|
4726
4750
|
static names(): { [key: string]: string } {
|
|
4727
4751
|
return {
|
|
4728
4752
|
headers: 'headers',
|
|
@@ -4801,9 +4825,9 @@ export class DeleteMonitoringAgentProcessResponseBody extends $tea.Model {
|
|
|
4801
4825
|
}
|
|
4802
4826
|
|
|
4803
4827
|
export class DeleteMonitoringAgentProcessResponse extends $tea.Model {
|
|
4804
|
-
headers
|
|
4805
|
-
statusCode
|
|
4806
|
-
body
|
|
4828
|
+
headers?: { [key: string]: string };
|
|
4829
|
+
statusCode?: number;
|
|
4830
|
+
body?: DeleteMonitoringAgentProcessResponseBody;
|
|
4807
4831
|
static names(): { [key: string]: string } {
|
|
4808
4832
|
return {
|
|
4809
4833
|
headers: 'headers',
|
|
@@ -4882,9 +4906,9 @@ export class DeleteSiteMonitorsResponseBody extends $tea.Model {
|
|
|
4882
4906
|
}
|
|
4883
4907
|
|
|
4884
4908
|
export class DeleteSiteMonitorsResponse extends $tea.Model {
|
|
4885
|
-
headers
|
|
4886
|
-
statusCode
|
|
4887
|
-
body
|
|
4909
|
+
headers?: { [key: string]: string };
|
|
4910
|
+
statusCode?: number;
|
|
4911
|
+
body?: DeleteSiteMonitorsResponseBody;
|
|
4888
4912
|
static names(): { [key: string]: string } {
|
|
4889
4913
|
return {
|
|
4890
4914
|
headers: 'headers',
|
|
@@ -4960,9 +4984,9 @@ export class DescribeActiveMetricRuleListResponseBody extends $tea.Model {
|
|
|
4960
4984
|
}
|
|
4961
4985
|
|
|
4962
4986
|
export class DescribeActiveMetricRuleListResponse extends $tea.Model {
|
|
4963
|
-
headers
|
|
4964
|
-
statusCode
|
|
4965
|
-
body
|
|
4987
|
+
headers?: { [key: string]: string };
|
|
4988
|
+
statusCode?: number;
|
|
4989
|
+
body?: DescribeActiveMetricRuleListResponseBody;
|
|
4966
4990
|
static names(): { [key: string]: string } {
|
|
4967
4991
|
return {
|
|
4968
4992
|
headers: 'headers',
|
|
@@ -5074,9 +5098,9 @@ export class DescribeAlertHistoryListResponseBody extends $tea.Model {
|
|
|
5074
5098
|
}
|
|
5075
5099
|
|
|
5076
5100
|
export class DescribeAlertHistoryListResponse extends $tea.Model {
|
|
5077
|
-
headers
|
|
5078
|
-
statusCode
|
|
5079
|
-
body
|
|
5101
|
+
headers?: { [key: string]: string };
|
|
5102
|
+
statusCode?: number;
|
|
5103
|
+
body?: DescribeAlertHistoryListResponseBody;
|
|
5080
5104
|
static names(): { [key: string]: string } {
|
|
5081
5105
|
return {
|
|
5082
5106
|
headers: 'headers',
|
|
@@ -5101,6 +5125,7 @@ export class DescribeAlertHistoryListResponse extends $tea.Model {
|
|
|
5101
5125
|
export class DescribeAlertLogCountRequest extends $tea.Model {
|
|
5102
5126
|
contactGroup?: string;
|
|
5103
5127
|
endTime?: number;
|
|
5128
|
+
eventType?: string;
|
|
5104
5129
|
groupBy?: string;
|
|
5105
5130
|
groupId?: string;
|
|
5106
5131
|
lastMin?: string;
|
|
@@ -5111,6 +5136,7 @@ export class DescribeAlertLogCountRequest extends $tea.Model {
|
|
|
5111
5136
|
pageSize?: number;
|
|
5112
5137
|
product?: string;
|
|
5113
5138
|
regionId?: string;
|
|
5139
|
+
ruleId?: string;
|
|
5114
5140
|
ruleName?: string;
|
|
5115
5141
|
searchKey?: string;
|
|
5116
5142
|
sendStatus?: string;
|
|
@@ -5120,6 +5146,7 @@ export class DescribeAlertLogCountRequest extends $tea.Model {
|
|
|
5120
5146
|
return {
|
|
5121
5147
|
contactGroup: 'ContactGroup',
|
|
5122
5148
|
endTime: 'EndTime',
|
|
5149
|
+
eventType: 'EventType',
|
|
5123
5150
|
groupBy: 'GroupBy',
|
|
5124
5151
|
groupId: 'GroupId',
|
|
5125
5152
|
lastMin: 'LastMin',
|
|
@@ -5130,6 +5157,7 @@ export class DescribeAlertLogCountRequest extends $tea.Model {
|
|
|
5130
5157
|
pageSize: 'PageSize',
|
|
5131
5158
|
product: 'Product',
|
|
5132
5159
|
regionId: 'RegionId',
|
|
5160
|
+
ruleId: 'RuleId',
|
|
5133
5161
|
ruleName: 'RuleName',
|
|
5134
5162
|
searchKey: 'SearchKey',
|
|
5135
5163
|
sendStatus: 'SendStatus',
|
|
@@ -5142,6 +5170,7 @@ export class DescribeAlertLogCountRequest extends $tea.Model {
|
|
|
5142
5170
|
return {
|
|
5143
5171
|
contactGroup: 'string',
|
|
5144
5172
|
endTime: 'number',
|
|
5173
|
+
eventType: 'string',
|
|
5145
5174
|
groupBy: 'string',
|
|
5146
5175
|
groupId: 'string',
|
|
5147
5176
|
lastMin: 'string',
|
|
@@ -5152,6 +5181,7 @@ export class DescribeAlertLogCountRequest extends $tea.Model {
|
|
|
5152
5181
|
pageSize: 'number',
|
|
5153
5182
|
product: 'string',
|
|
5154
5183
|
regionId: 'string',
|
|
5184
|
+
ruleId: 'string',
|
|
5155
5185
|
ruleName: 'string',
|
|
5156
5186
|
searchKey: 'string',
|
|
5157
5187
|
sendStatus: 'string',
|
|
@@ -5197,9 +5227,9 @@ export class DescribeAlertLogCountResponseBody extends $tea.Model {
|
|
|
5197
5227
|
}
|
|
5198
5228
|
|
|
5199
5229
|
export class DescribeAlertLogCountResponse extends $tea.Model {
|
|
5200
|
-
headers
|
|
5201
|
-
statusCode
|
|
5202
|
-
body
|
|
5230
|
+
headers?: { [key: string]: string };
|
|
5231
|
+
statusCode?: number;
|
|
5232
|
+
body?: DescribeAlertLogCountResponseBody;
|
|
5203
5233
|
static names(): { [key: string]: string } {
|
|
5204
5234
|
return {
|
|
5205
5235
|
headers: 'headers',
|
|
@@ -5224,6 +5254,7 @@ export class DescribeAlertLogCountResponse extends $tea.Model {
|
|
|
5224
5254
|
export class DescribeAlertLogHistogramRequest extends $tea.Model {
|
|
5225
5255
|
contactGroup?: string;
|
|
5226
5256
|
endTime?: number;
|
|
5257
|
+
eventType?: string;
|
|
5227
5258
|
groupBy?: string;
|
|
5228
5259
|
groupId?: string;
|
|
5229
5260
|
lastMin?: string;
|
|
@@ -5234,6 +5265,7 @@ export class DescribeAlertLogHistogramRequest extends $tea.Model {
|
|
|
5234
5265
|
pageSize?: number;
|
|
5235
5266
|
product?: string;
|
|
5236
5267
|
regionId?: string;
|
|
5268
|
+
ruleId?: string;
|
|
5237
5269
|
ruleName?: string;
|
|
5238
5270
|
searchKey?: string;
|
|
5239
5271
|
sendStatus?: string;
|
|
@@ -5243,6 +5275,7 @@ export class DescribeAlertLogHistogramRequest extends $tea.Model {
|
|
|
5243
5275
|
return {
|
|
5244
5276
|
contactGroup: 'ContactGroup',
|
|
5245
5277
|
endTime: 'EndTime',
|
|
5278
|
+
eventType: 'EventType',
|
|
5246
5279
|
groupBy: 'GroupBy',
|
|
5247
5280
|
groupId: 'GroupId',
|
|
5248
5281
|
lastMin: 'LastMin',
|
|
@@ -5253,6 +5286,7 @@ export class DescribeAlertLogHistogramRequest extends $tea.Model {
|
|
|
5253
5286
|
pageSize: 'PageSize',
|
|
5254
5287
|
product: 'Product',
|
|
5255
5288
|
regionId: 'RegionId',
|
|
5289
|
+
ruleId: 'RuleId',
|
|
5256
5290
|
ruleName: 'RuleName',
|
|
5257
5291
|
searchKey: 'SearchKey',
|
|
5258
5292
|
sendStatus: 'SendStatus',
|
|
@@ -5265,6 +5299,7 @@ export class DescribeAlertLogHistogramRequest extends $tea.Model {
|
|
|
5265
5299
|
return {
|
|
5266
5300
|
contactGroup: 'string',
|
|
5267
5301
|
endTime: 'number',
|
|
5302
|
+
eventType: 'string',
|
|
5268
5303
|
groupBy: 'string',
|
|
5269
5304
|
groupId: 'string',
|
|
5270
5305
|
lastMin: 'string',
|
|
@@ -5275,6 +5310,7 @@ export class DescribeAlertLogHistogramRequest extends $tea.Model {
|
|
|
5275
5310
|
pageSize: 'number',
|
|
5276
5311
|
product: 'string',
|
|
5277
5312
|
regionId: 'string',
|
|
5313
|
+
ruleId: 'string',
|
|
5278
5314
|
ruleName: 'string',
|
|
5279
5315
|
searchKey: 'string',
|
|
5280
5316
|
sendStatus: 'string',
|
|
@@ -5320,9 +5356,9 @@ export class DescribeAlertLogHistogramResponseBody extends $tea.Model {
|
|
|
5320
5356
|
}
|
|
5321
5357
|
|
|
5322
5358
|
export class DescribeAlertLogHistogramResponse extends $tea.Model {
|
|
5323
|
-
headers
|
|
5324
|
-
statusCode
|
|
5325
|
-
body
|
|
5359
|
+
headers?: { [key: string]: string };
|
|
5360
|
+
statusCode?: number;
|
|
5361
|
+
body?: DescribeAlertLogHistogramResponseBody;
|
|
5326
5362
|
static names(): { [key: string]: string } {
|
|
5327
5363
|
return {
|
|
5328
5364
|
headers: 'headers',
|
|
@@ -5347,6 +5383,7 @@ export class DescribeAlertLogHistogramResponse extends $tea.Model {
|
|
|
5347
5383
|
export class DescribeAlertLogListRequest extends $tea.Model {
|
|
5348
5384
|
contactGroup?: string;
|
|
5349
5385
|
endTime?: number;
|
|
5386
|
+
eventType?: string;
|
|
5350
5387
|
groupBy?: string;
|
|
5351
5388
|
groupId?: string;
|
|
5352
5389
|
lastMin?: string;
|
|
@@ -5367,6 +5404,7 @@ export class DescribeAlertLogListRequest extends $tea.Model {
|
|
|
5367
5404
|
return {
|
|
5368
5405
|
contactGroup: 'ContactGroup',
|
|
5369
5406
|
endTime: 'EndTime',
|
|
5407
|
+
eventType: 'EventType',
|
|
5370
5408
|
groupBy: 'GroupBy',
|
|
5371
5409
|
groupId: 'GroupId',
|
|
5372
5410
|
lastMin: 'LastMin',
|
|
@@ -5390,6 +5428,7 @@ export class DescribeAlertLogListRequest extends $tea.Model {
|
|
|
5390
5428
|
return {
|
|
5391
5429
|
contactGroup: 'string',
|
|
5392
5430
|
endTime: 'number',
|
|
5431
|
+
eventType: 'string',
|
|
5393
5432
|
groupBy: 'string',
|
|
5394
5433
|
groupId: 'string',
|
|
5395
5434
|
lastMin: 'string',
|
|
@@ -5452,9 +5491,9 @@ export class DescribeAlertLogListResponseBody extends $tea.Model {
|
|
|
5452
5491
|
}
|
|
5453
5492
|
|
|
5454
5493
|
export class DescribeAlertLogListResponse extends $tea.Model {
|
|
5455
|
-
headers
|
|
5456
|
-
statusCode
|
|
5457
|
-
body
|
|
5494
|
+
headers?: { [key: string]: string };
|
|
5495
|
+
statusCode?: number;
|
|
5496
|
+
body?: DescribeAlertLogListResponseBody;
|
|
5458
5497
|
static names(): { [key: string]: string } {
|
|
5459
5498
|
return {
|
|
5460
5499
|
headers: 'headers',
|
|
@@ -5551,9 +5590,9 @@ export class DescribeAlertingMetricRuleResourcesResponseBody extends $tea.Model
|
|
|
5551
5590
|
}
|
|
5552
5591
|
|
|
5553
5592
|
export class DescribeAlertingMetricRuleResourcesResponse extends $tea.Model {
|
|
5554
|
-
headers
|
|
5555
|
-
statusCode
|
|
5556
|
-
body
|
|
5593
|
+
headers?: { [key: string]: string };
|
|
5594
|
+
statusCode?: number;
|
|
5595
|
+
body?: DescribeAlertingMetricRuleResourcesResponseBody;
|
|
5557
5596
|
static names(): { [key: string]: string } {
|
|
5558
5597
|
return {
|
|
5559
5598
|
headers: 'headers',
|
|
@@ -5638,9 +5677,9 @@ export class DescribeContactGroupListResponseBody extends $tea.Model {
|
|
|
5638
5677
|
}
|
|
5639
5678
|
|
|
5640
5679
|
export class DescribeContactGroupListResponse extends $tea.Model {
|
|
5641
|
-
headers
|
|
5642
|
-
statusCode
|
|
5643
|
-
body
|
|
5680
|
+
headers?: { [key: string]: string };
|
|
5681
|
+
statusCode?: number;
|
|
5682
|
+
body?: DescribeContactGroupListResponseBody;
|
|
5644
5683
|
static names(): { [key: string]: string } {
|
|
5645
5684
|
return {
|
|
5646
5685
|
headers: 'headers',
|
|
@@ -5731,9 +5770,9 @@ export class DescribeContactListResponseBody extends $tea.Model {
|
|
|
5731
5770
|
}
|
|
5732
5771
|
|
|
5733
5772
|
export class DescribeContactListResponse extends $tea.Model {
|
|
5734
|
-
headers
|
|
5735
|
-
statusCode
|
|
5736
|
-
body
|
|
5773
|
+
headers?: { [key: string]: string };
|
|
5774
|
+
statusCode?: number;
|
|
5775
|
+
body?: DescribeContactListResponseBody;
|
|
5737
5776
|
static names(): { [key: string]: string } {
|
|
5738
5777
|
return {
|
|
5739
5778
|
headers: 'headers',
|
|
@@ -5809,9 +5848,9 @@ export class DescribeContactListByContactGroupResponseBody extends $tea.Model {
|
|
|
5809
5848
|
}
|
|
5810
5849
|
|
|
5811
5850
|
export class DescribeContactListByContactGroupResponse extends $tea.Model {
|
|
5812
|
-
headers
|
|
5813
|
-
statusCode
|
|
5814
|
-
body
|
|
5851
|
+
headers?: { [key: string]: string };
|
|
5852
|
+
statusCode?: number;
|
|
5853
|
+
body?: DescribeContactListByContactGroupResponseBody;
|
|
5815
5854
|
static names(): { [key: string]: string } {
|
|
5816
5855
|
return {
|
|
5817
5856
|
headers: 'headers',
|
|
@@ -5908,9 +5947,9 @@ export class DescribeCustomEventAttributeResponseBody extends $tea.Model {
|
|
|
5908
5947
|
}
|
|
5909
5948
|
|
|
5910
5949
|
export class DescribeCustomEventAttributeResponse extends $tea.Model {
|
|
5911
|
-
headers
|
|
5912
|
-
statusCode
|
|
5913
|
-
body
|
|
5950
|
+
headers?: { [key: string]: string };
|
|
5951
|
+
statusCode?: number;
|
|
5952
|
+
body?: DescribeCustomEventAttributeResponseBody;
|
|
5914
5953
|
static names(): { [key: string]: string } {
|
|
5915
5954
|
return {
|
|
5916
5955
|
headers: 'headers',
|
|
@@ -6001,9 +6040,9 @@ export class DescribeCustomEventCountResponseBody extends $tea.Model {
|
|
|
6001
6040
|
}
|
|
6002
6041
|
|
|
6003
6042
|
export class DescribeCustomEventCountResponse extends $tea.Model {
|
|
6004
|
-
headers
|
|
6005
|
-
statusCode
|
|
6006
|
-
body
|
|
6043
|
+
headers?: { [key: string]: string };
|
|
6044
|
+
statusCode?: number;
|
|
6045
|
+
body?: DescribeCustomEventCountResponseBody;
|
|
6007
6046
|
static names(): { [key: string]: string } {
|
|
6008
6047
|
return {
|
|
6009
6048
|
headers: 'headers',
|
|
@@ -6097,9 +6136,9 @@ export class DescribeCustomEventHistogramResponseBody extends $tea.Model {
|
|
|
6097
6136
|
}
|
|
6098
6137
|
|
|
6099
6138
|
export class DescribeCustomEventHistogramResponse extends $tea.Model {
|
|
6100
|
-
headers
|
|
6101
|
-
statusCode
|
|
6102
|
-
body
|
|
6139
|
+
headers?: { [key: string]: string };
|
|
6140
|
+
statusCode?: number;
|
|
6141
|
+
body?: DescribeCustomEventHistogramResponseBody;
|
|
6103
6142
|
static names(): { [key: string]: string } {
|
|
6104
6143
|
return {
|
|
6105
6144
|
headers: 'headers',
|
|
@@ -6187,9 +6226,9 @@ export class DescribeCustomMetricListResponseBody extends $tea.Model {
|
|
|
6187
6226
|
}
|
|
6188
6227
|
|
|
6189
6228
|
export class DescribeCustomMetricListResponse extends $tea.Model {
|
|
6190
|
-
headers
|
|
6191
|
-
statusCode
|
|
6192
|
-
body
|
|
6229
|
+
headers?: { [key: string]: string };
|
|
6230
|
+
statusCode?: number;
|
|
6231
|
+
body?: DescribeCustomMetricListResponseBody;
|
|
6193
6232
|
static names(): { [key: string]: string } {
|
|
6194
6233
|
return {
|
|
6195
6234
|
headers: 'headers',
|
|
@@ -6286,9 +6325,9 @@ export class DescribeDynamicTagRuleListResponseBody extends $tea.Model {
|
|
|
6286
6325
|
}
|
|
6287
6326
|
|
|
6288
6327
|
export class DescribeDynamicTagRuleListResponse extends $tea.Model {
|
|
6289
|
-
headers
|
|
6290
|
-
statusCode
|
|
6291
|
-
body
|
|
6328
|
+
headers?: { [key: string]: string };
|
|
6329
|
+
statusCode?: number;
|
|
6330
|
+
body?: DescribeDynamicTagRuleListResponseBody;
|
|
6292
6331
|
static names(): { [key: string]: string } {
|
|
6293
6332
|
return {
|
|
6294
6333
|
headers: 'headers',
|
|
@@ -6367,9 +6406,9 @@ export class DescribeEventRuleAttributeResponseBody extends $tea.Model {
|
|
|
6367
6406
|
}
|
|
6368
6407
|
|
|
6369
6408
|
export class DescribeEventRuleAttributeResponse extends $tea.Model {
|
|
6370
|
-
headers
|
|
6371
|
-
statusCode
|
|
6372
|
-
body
|
|
6409
|
+
headers?: { [key: string]: string };
|
|
6410
|
+
statusCode?: number;
|
|
6411
|
+
body?: DescribeEventRuleAttributeResponseBody;
|
|
6373
6412
|
static names(): { [key: string]: string } {
|
|
6374
6413
|
return {
|
|
6375
6414
|
headers: 'headers',
|
|
@@ -6460,9 +6499,9 @@ export class DescribeEventRuleListResponseBody extends $tea.Model {
|
|
|
6460
6499
|
}
|
|
6461
6500
|
|
|
6462
6501
|
export class DescribeEventRuleListResponse extends $tea.Model {
|
|
6463
|
-
headers
|
|
6464
|
-
statusCode
|
|
6465
|
-
body
|
|
6502
|
+
headers?: { [key: string]: string };
|
|
6503
|
+
statusCode?: number;
|
|
6504
|
+
body?: DescribeEventRuleListResponseBody;
|
|
6466
6505
|
static names(): { [key: string]: string } {
|
|
6467
6506
|
return {
|
|
6468
6507
|
headers: 'headers',
|
|
@@ -6550,9 +6589,9 @@ export class DescribeEventRuleTargetListResponseBody extends $tea.Model {
|
|
|
6550
6589
|
}
|
|
6551
6590
|
|
|
6552
6591
|
export class DescribeEventRuleTargetListResponse extends $tea.Model {
|
|
6553
|
-
headers
|
|
6554
|
-
statusCode
|
|
6555
|
-
body
|
|
6592
|
+
headers?: { [key: string]: string };
|
|
6593
|
+
statusCode?: number;
|
|
6594
|
+
body?: DescribeEventRuleTargetListResponseBody;
|
|
6556
6595
|
static names(): { [key: string]: string } {
|
|
6557
6596
|
return {
|
|
6558
6597
|
headers: 'headers',
|
|
@@ -6637,9 +6676,9 @@ export class DescribeExporterOutputListResponseBody extends $tea.Model {
|
|
|
6637
6676
|
}
|
|
6638
6677
|
|
|
6639
6678
|
export class DescribeExporterOutputListResponse extends $tea.Model {
|
|
6640
|
-
headers
|
|
6641
|
-
statusCode
|
|
6642
|
-
body
|
|
6679
|
+
headers?: { [key: string]: string };
|
|
6680
|
+
statusCode?: number;
|
|
6681
|
+
body?: DescribeExporterOutputListResponseBody;
|
|
6643
6682
|
static names(): { [key: string]: string } {
|
|
6644
6683
|
return {
|
|
6645
6684
|
headers: 'headers',
|
|
@@ -6724,9 +6763,9 @@ export class DescribeExporterRuleListResponseBody extends $tea.Model {
|
|
|
6724
6763
|
}
|
|
6725
6764
|
|
|
6726
6765
|
export class DescribeExporterRuleListResponse extends $tea.Model {
|
|
6727
|
-
headers
|
|
6728
|
-
statusCode
|
|
6729
|
-
body
|
|
6766
|
+
headers?: { [key: string]: string };
|
|
6767
|
+
statusCode?: number;
|
|
6768
|
+
body?: DescribeExporterRuleListResponseBody;
|
|
6730
6769
|
static names(): { [key: string]: string } {
|
|
6731
6770
|
return {
|
|
6732
6771
|
headers: 'headers',
|
|
@@ -6820,9 +6859,9 @@ export class DescribeGroupMonitoringAgentProcessResponseBody extends $tea.Model
|
|
|
6820
6859
|
}
|
|
6821
6860
|
|
|
6822
6861
|
export class DescribeGroupMonitoringAgentProcessResponse extends $tea.Model {
|
|
6823
|
-
headers
|
|
6824
|
-
statusCode
|
|
6825
|
-
body
|
|
6862
|
+
headers?: { [key: string]: string };
|
|
6863
|
+
statusCode?: number;
|
|
6864
|
+
body?: DescribeGroupMonitoringAgentProcessResponseBody;
|
|
6826
6865
|
static names(): { [key: string]: string } {
|
|
6827
6866
|
return {
|
|
6828
6867
|
headers: 'headers',
|
|
@@ -6916,9 +6955,9 @@ export class DescribeHostAvailabilityListResponseBody extends $tea.Model {
|
|
|
6916
6955
|
}
|
|
6917
6956
|
|
|
6918
6957
|
export class DescribeHostAvailabilityListResponse extends $tea.Model {
|
|
6919
|
-
headers
|
|
6920
|
-
statusCode
|
|
6921
|
-
body
|
|
6958
|
+
headers?: { [key: string]: string };
|
|
6959
|
+
statusCode?: number;
|
|
6960
|
+
body?: DescribeHostAvailabilityListResponseBody;
|
|
6922
6961
|
static names(): { [key: string]: string } {
|
|
6923
6962
|
return {
|
|
6924
6963
|
headers: 'headers',
|
|
@@ -7006,9 +7045,9 @@ export class DescribeHybridMonitorDataListResponseBody extends $tea.Model {
|
|
|
7006
7045
|
}
|
|
7007
7046
|
|
|
7008
7047
|
export class DescribeHybridMonitorDataListResponse extends $tea.Model {
|
|
7009
|
-
headers
|
|
7010
|
-
statusCode
|
|
7011
|
-
body
|
|
7048
|
+
headers?: { [key: string]: string };
|
|
7049
|
+
statusCode?: number;
|
|
7050
|
+
body?: DescribeHybridMonitorDataListResponseBody;
|
|
7012
7051
|
static names(): { [key: string]: string } {
|
|
7013
7052
|
return {
|
|
7014
7053
|
headers: 'headers',
|
|
@@ -7105,9 +7144,9 @@ export class DescribeHybridMonitorNamespaceListResponseBody extends $tea.Model {
|
|
|
7105
7144
|
}
|
|
7106
7145
|
|
|
7107
7146
|
export class DescribeHybridMonitorNamespaceListResponse extends $tea.Model {
|
|
7108
|
-
headers
|
|
7109
|
-
statusCode
|
|
7110
|
-
body
|
|
7147
|
+
headers?: { [key: string]: string };
|
|
7148
|
+
statusCode?: number;
|
|
7149
|
+
body?: DescribeHybridMonitorNamespaceListResponseBody;
|
|
7111
7150
|
static names(): { [key: string]: string } {
|
|
7112
7151
|
return {
|
|
7113
7152
|
headers: 'headers',
|
|
@@ -7201,9 +7240,9 @@ export class DescribeHybridMonitorSLSGroupResponseBody extends $tea.Model {
|
|
|
7201
7240
|
}
|
|
7202
7241
|
|
|
7203
7242
|
export class DescribeHybridMonitorSLSGroupResponse extends $tea.Model {
|
|
7204
|
-
headers
|
|
7205
|
-
statusCode
|
|
7206
|
-
body
|
|
7243
|
+
headers?: { [key: string]: string };
|
|
7244
|
+
statusCode?: number;
|
|
7245
|
+
body?: DescribeHybridMonitorSLSGroupResponseBody;
|
|
7207
7246
|
static names(): { [key: string]: string } {
|
|
7208
7247
|
return {
|
|
7209
7248
|
headers: 'headers',
|
|
@@ -7312,9 +7351,9 @@ export class DescribeHybridMonitorTaskListResponseBody extends $tea.Model {
|
|
|
7312
7351
|
}
|
|
7313
7352
|
|
|
7314
7353
|
export class DescribeHybridMonitorTaskListResponse extends $tea.Model {
|
|
7315
|
-
headers
|
|
7316
|
-
statusCode
|
|
7317
|
-
body
|
|
7354
|
+
headers?: { [key: string]: string };
|
|
7355
|
+
statusCode?: number;
|
|
7356
|
+
body?: DescribeHybridMonitorTaskListResponseBody;
|
|
7318
7357
|
static names(): { [key: string]: string } {
|
|
7319
7358
|
return {
|
|
7320
7359
|
headers: 'headers',
|
|
@@ -7390,9 +7429,9 @@ export class DescribeLogMonitorAttributeResponseBody extends $tea.Model {
|
|
|
7390
7429
|
}
|
|
7391
7430
|
|
|
7392
7431
|
export class DescribeLogMonitorAttributeResponse extends $tea.Model {
|
|
7393
|
-
headers
|
|
7394
|
-
statusCode
|
|
7395
|
-
body
|
|
7432
|
+
headers?: { [key: string]: string };
|
|
7433
|
+
statusCode?: number;
|
|
7434
|
+
body?: DescribeLogMonitorAttributeResponseBody;
|
|
7396
7435
|
static names(): { [key: string]: string } {
|
|
7397
7436
|
return {
|
|
7398
7437
|
headers: 'headers',
|
|
@@ -7486,9 +7525,9 @@ export class DescribeLogMonitorListResponseBody extends $tea.Model {
|
|
|
7486
7525
|
}
|
|
7487
7526
|
|
|
7488
7527
|
export class DescribeLogMonitorListResponse extends $tea.Model {
|
|
7489
|
-
headers
|
|
7490
|
-
statusCode
|
|
7491
|
-
body
|
|
7528
|
+
headers?: { [key: string]: string };
|
|
7529
|
+
statusCode?: number;
|
|
7530
|
+
body?: DescribeLogMonitorListResponseBody;
|
|
7492
7531
|
static names(): { [key: string]: string } {
|
|
7493
7532
|
return {
|
|
7494
7533
|
headers: 'headers',
|
|
@@ -7585,9 +7624,9 @@ export class DescribeMetricDataResponseBody extends $tea.Model {
|
|
|
7585
7624
|
}
|
|
7586
7625
|
|
|
7587
7626
|
export class DescribeMetricDataResponse extends $tea.Model {
|
|
7588
|
-
headers
|
|
7589
|
-
statusCode
|
|
7590
|
-
body
|
|
7627
|
+
headers?: { [key: string]: string };
|
|
7628
|
+
statusCode?: number;
|
|
7629
|
+
body?: DescribeMetricDataResponseBody;
|
|
7591
7630
|
static names(): { [key: string]: string } {
|
|
7592
7631
|
return {
|
|
7593
7632
|
headers: 'headers',
|
|
@@ -7693,9 +7732,9 @@ export class DescribeMetricLastResponseBody extends $tea.Model {
|
|
|
7693
7732
|
}
|
|
7694
7733
|
|
|
7695
7734
|
export class DescribeMetricLastResponse extends $tea.Model {
|
|
7696
|
-
headers
|
|
7697
|
-
statusCode
|
|
7698
|
-
body
|
|
7735
|
+
headers?: { [key: string]: string };
|
|
7736
|
+
statusCode?: number;
|
|
7737
|
+
body?: DescribeMetricLastResponseBody;
|
|
7699
7738
|
static names(): { [key: string]: string } {
|
|
7700
7739
|
return {
|
|
7701
7740
|
headers: 'headers',
|
|
@@ -7801,9 +7840,9 @@ export class DescribeMetricListResponseBody extends $tea.Model {
|
|
|
7801
7840
|
}
|
|
7802
7841
|
|
|
7803
7842
|
export class DescribeMetricListResponse extends $tea.Model {
|
|
7804
|
-
headers
|
|
7805
|
-
statusCode
|
|
7806
|
-
body
|
|
7843
|
+
headers?: { [key: string]: string };
|
|
7844
|
+
statusCode?: number;
|
|
7845
|
+
body?: DescribeMetricListResponseBody;
|
|
7807
7846
|
static names(): { [key: string]: string } {
|
|
7808
7847
|
return {
|
|
7809
7848
|
headers: 'headers',
|
|
@@ -7831,7 +7870,6 @@ export class DescribeMetricMetaListRequest extends $tea.Model {
|
|
|
7831
7870
|
namespace?: string;
|
|
7832
7871
|
pageNumber?: number;
|
|
7833
7872
|
pageSize?: number;
|
|
7834
|
-
regionId?: string;
|
|
7835
7873
|
static names(): { [key: string]: string } {
|
|
7836
7874
|
return {
|
|
7837
7875
|
labels: 'Labels',
|
|
@@ -7839,7 +7877,6 @@ export class DescribeMetricMetaListRequest extends $tea.Model {
|
|
|
7839
7877
|
namespace: 'Namespace',
|
|
7840
7878
|
pageNumber: 'PageNumber',
|
|
7841
7879
|
pageSize: 'PageSize',
|
|
7842
|
-
regionId: 'RegionId',
|
|
7843
7880
|
};
|
|
7844
7881
|
}
|
|
7845
7882
|
|
|
@@ -7850,7 +7887,6 @@ export class DescribeMetricMetaListRequest extends $tea.Model {
|
|
|
7850
7887
|
namespace: 'string',
|
|
7851
7888
|
pageNumber: 'number',
|
|
7852
7889
|
pageSize: 'number',
|
|
7853
|
-
regionId: 'string',
|
|
7854
7890
|
};
|
|
7855
7891
|
}
|
|
7856
7892
|
|
|
@@ -7894,9 +7930,9 @@ export class DescribeMetricMetaListResponseBody extends $tea.Model {
|
|
|
7894
7930
|
}
|
|
7895
7931
|
|
|
7896
7932
|
export class DescribeMetricMetaListResponse extends $tea.Model {
|
|
7897
|
-
headers
|
|
7898
|
-
statusCode
|
|
7899
|
-
body
|
|
7933
|
+
headers?: { [key: string]: string };
|
|
7934
|
+
statusCode?: number;
|
|
7935
|
+
body?: DescribeMetricMetaListResponseBody;
|
|
7900
7936
|
static names(): { [key: string]: string } {
|
|
7901
7937
|
return {
|
|
7902
7938
|
headers: 'headers',
|
|
@@ -8002,9 +8038,9 @@ export class DescribeMetricRuleBlackListResponseBody extends $tea.Model {
|
|
|
8002
8038
|
}
|
|
8003
8039
|
|
|
8004
8040
|
export class DescribeMetricRuleBlackListResponse extends $tea.Model {
|
|
8005
|
-
headers
|
|
8006
|
-
statusCode
|
|
8007
|
-
body
|
|
8041
|
+
headers?: { [key: string]: string };
|
|
8042
|
+
statusCode?: number;
|
|
8043
|
+
body?: DescribeMetricRuleBlackListResponseBody;
|
|
8008
8044
|
static names(): { [key: string]: string } {
|
|
8009
8045
|
return {
|
|
8010
8046
|
headers: 'headers',
|
|
@@ -8083,9 +8119,9 @@ export class DescribeMetricRuleCountResponseBody extends $tea.Model {
|
|
|
8083
8119
|
}
|
|
8084
8120
|
|
|
8085
8121
|
export class DescribeMetricRuleCountResponse extends $tea.Model {
|
|
8086
|
-
headers
|
|
8087
|
-
statusCode
|
|
8088
|
-
body
|
|
8122
|
+
headers?: { [key: string]: string };
|
|
8123
|
+
statusCode?: number;
|
|
8124
|
+
body?: DescribeMetricRuleCountResponseBody;
|
|
8089
8125
|
static names(): { [key: string]: string } {
|
|
8090
8126
|
return {
|
|
8091
8127
|
headers: 'headers',
|
|
@@ -8191,9 +8227,9 @@ export class DescribeMetricRuleListResponseBody extends $tea.Model {
|
|
|
8191
8227
|
}
|
|
8192
8228
|
|
|
8193
8229
|
export class DescribeMetricRuleListResponse extends $tea.Model {
|
|
8194
|
-
headers
|
|
8195
|
-
statusCode
|
|
8196
|
-
body
|
|
8230
|
+
headers?: { [key: string]: string };
|
|
8231
|
+
statusCode?: number;
|
|
8232
|
+
body?: DescribeMetricRuleListResponseBody;
|
|
8197
8233
|
static names(): { [key: string]: string } {
|
|
8198
8234
|
return {
|
|
8199
8235
|
headers: 'headers',
|
|
@@ -8269,9 +8305,9 @@ export class DescribeMetricRuleTargetsResponseBody extends $tea.Model {
|
|
|
8269
8305
|
}
|
|
8270
8306
|
|
|
8271
8307
|
export class DescribeMetricRuleTargetsResponse extends $tea.Model {
|
|
8272
|
-
headers
|
|
8273
|
-
statusCode
|
|
8274
|
-
body
|
|
8308
|
+
headers?: { [key: string]: string };
|
|
8309
|
+
statusCode?: number;
|
|
8310
|
+
body?: DescribeMetricRuleTargetsResponseBody;
|
|
8275
8311
|
static names(): { [key: string]: string } {
|
|
8276
8312
|
return {
|
|
8277
8313
|
headers: 'headers',
|
|
@@ -8350,9 +8386,9 @@ export class DescribeMetricRuleTemplateAttributeResponseBody extends $tea.Model
|
|
|
8350
8386
|
}
|
|
8351
8387
|
|
|
8352
8388
|
export class DescribeMetricRuleTemplateAttributeResponse extends $tea.Model {
|
|
8353
|
-
headers
|
|
8354
|
-
statusCode
|
|
8355
|
-
body
|
|
8389
|
+
headers?: { [key: string]: string };
|
|
8390
|
+
statusCode?: number;
|
|
8391
|
+
body?: DescribeMetricRuleTemplateAttributeResponseBody;
|
|
8356
8392
|
static names(): { [key: string]: string } {
|
|
8357
8393
|
return {
|
|
8358
8394
|
headers: 'headers',
|
|
@@ -8452,9 +8488,9 @@ export class DescribeMetricRuleTemplateListResponseBody extends $tea.Model {
|
|
|
8452
8488
|
}
|
|
8453
8489
|
|
|
8454
8490
|
export class DescribeMetricRuleTemplateListResponse extends $tea.Model {
|
|
8455
|
-
headers
|
|
8456
|
-
statusCode
|
|
8457
|
-
body
|
|
8491
|
+
headers?: { [key: string]: string };
|
|
8492
|
+
statusCode?: number;
|
|
8493
|
+
body?: DescribeMetricRuleTemplateListResponseBody;
|
|
8458
8494
|
static names(): { [key: string]: string } {
|
|
8459
8495
|
return {
|
|
8460
8496
|
headers: 'headers',
|
|
@@ -8557,9 +8593,9 @@ export class DescribeMetricTopResponseBody extends $tea.Model {
|
|
|
8557
8593
|
}
|
|
8558
8594
|
|
|
8559
8595
|
export class DescribeMetricTopResponse extends $tea.Model {
|
|
8560
|
-
headers
|
|
8561
|
-
statusCode
|
|
8562
|
-
body
|
|
8596
|
+
headers?: { [key: string]: string };
|
|
8597
|
+
statusCode?: number;
|
|
8598
|
+
body?: DescribeMetricTopResponseBody;
|
|
8563
8599
|
static names(): { [key: string]: string } {
|
|
8564
8600
|
return {
|
|
8565
8601
|
headers: 'headers',
|
|
@@ -8635,9 +8671,9 @@ export class DescribeMonitorGroupCategoriesResponseBody extends $tea.Model {
|
|
|
8635
8671
|
}
|
|
8636
8672
|
|
|
8637
8673
|
export class DescribeMonitorGroupCategoriesResponse extends $tea.Model {
|
|
8638
|
-
headers
|
|
8639
|
-
statusCode
|
|
8640
|
-
body
|
|
8674
|
+
headers?: { [key: string]: string };
|
|
8675
|
+
statusCode?: number;
|
|
8676
|
+
body?: DescribeMonitorGroupCategoriesResponseBody;
|
|
8641
8677
|
static names(): { [key: string]: string } {
|
|
8642
8678
|
return {
|
|
8643
8679
|
headers: 'headers',
|
|
@@ -8713,9 +8749,9 @@ export class DescribeMonitorGroupDynamicRulesResponseBody extends $tea.Model {
|
|
|
8713
8749
|
}
|
|
8714
8750
|
|
|
8715
8751
|
export class DescribeMonitorGroupDynamicRulesResponse extends $tea.Model {
|
|
8716
|
-
headers
|
|
8717
|
-
statusCode
|
|
8718
|
-
body
|
|
8752
|
+
headers?: { [key: string]: string };
|
|
8753
|
+
statusCode?: number;
|
|
8754
|
+
body?: DescribeMonitorGroupDynamicRulesResponseBody;
|
|
8719
8755
|
static names(): { [key: string]: string } {
|
|
8720
8756
|
return {
|
|
8721
8757
|
headers: 'headers',
|
|
@@ -8818,9 +8854,9 @@ export class DescribeMonitorGroupInstanceAttributeResponseBody extends $tea.Mode
|
|
|
8818
8854
|
}
|
|
8819
8855
|
|
|
8820
8856
|
export class DescribeMonitorGroupInstanceAttributeResponse extends $tea.Model {
|
|
8821
|
-
headers
|
|
8822
|
-
statusCode
|
|
8823
|
-
body
|
|
8857
|
+
headers?: { [key: string]: string };
|
|
8858
|
+
statusCode?: number;
|
|
8859
|
+
body?: DescribeMonitorGroupInstanceAttributeResponseBody;
|
|
8824
8860
|
static names(): { [key: string]: string } {
|
|
8825
8861
|
return {
|
|
8826
8862
|
headers: 'headers',
|
|
@@ -8920,9 +8956,9 @@ export class DescribeMonitorGroupInstancesResponseBody extends $tea.Model {
|
|
|
8920
8956
|
}
|
|
8921
8957
|
|
|
8922
8958
|
export class DescribeMonitorGroupInstancesResponse extends $tea.Model {
|
|
8923
|
-
headers
|
|
8924
|
-
statusCode
|
|
8925
|
-
body
|
|
8959
|
+
headers?: { [key: string]: string };
|
|
8960
|
+
statusCode?: number;
|
|
8961
|
+
body?: DescribeMonitorGroupInstancesResponseBody;
|
|
8926
8962
|
static names(): { [key: string]: string } {
|
|
8927
8963
|
return {
|
|
8928
8964
|
headers: 'headers',
|
|
@@ -9010,9 +9046,9 @@ export class DescribeMonitorGroupNotifyPolicyListResponseBody extends $tea.Model
|
|
|
9010
9046
|
}
|
|
9011
9047
|
|
|
9012
9048
|
export class DescribeMonitorGroupNotifyPolicyListResponse extends $tea.Model {
|
|
9013
|
-
headers
|
|
9014
|
-
statusCode
|
|
9015
|
-
body
|
|
9049
|
+
headers?: { [key: string]: string };
|
|
9050
|
+
statusCode?: number;
|
|
9051
|
+
body?: DescribeMonitorGroupNotifyPolicyListResponseBody;
|
|
9016
9052
|
static names(): { [key: string]: string } {
|
|
9017
9053
|
return {
|
|
9018
9054
|
headers: 'headers',
|
|
@@ -9136,9 +9172,9 @@ export class DescribeMonitorGroupsResponseBody extends $tea.Model {
|
|
|
9136
9172
|
}
|
|
9137
9173
|
|
|
9138
9174
|
export class DescribeMonitorGroupsResponse extends $tea.Model {
|
|
9139
|
-
headers
|
|
9140
|
-
statusCode
|
|
9141
|
-
body
|
|
9175
|
+
headers?: { [key: string]: string };
|
|
9176
|
+
statusCode?: number;
|
|
9177
|
+
body?: DescribeMonitorGroupsResponseBody;
|
|
9142
9178
|
static names(): { [key: string]: string } {
|
|
9143
9179
|
return {
|
|
9144
9180
|
headers: 'headers',
|
|
@@ -9211,9 +9247,9 @@ export class DescribeMonitorResourceQuotaAttributeResponseBody extends $tea.Mode
|
|
|
9211
9247
|
}
|
|
9212
9248
|
|
|
9213
9249
|
export class DescribeMonitorResourceQuotaAttributeResponse extends $tea.Model {
|
|
9214
|
-
headers
|
|
9215
|
-
statusCode
|
|
9216
|
-
body
|
|
9250
|
+
headers?: { [key: string]: string };
|
|
9251
|
+
statusCode?: number;
|
|
9252
|
+
body?: DescribeMonitorResourceQuotaAttributeResponseBody;
|
|
9217
9253
|
static names(): { [key: string]: string } {
|
|
9218
9254
|
return {
|
|
9219
9255
|
headers: 'headers',
|
|
@@ -9289,9 +9325,9 @@ export class DescribeMonitoringAgentAccessKeyResponseBody extends $tea.Model {
|
|
|
9289
9325
|
}
|
|
9290
9326
|
|
|
9291
9327
|
export class DescribeMonitoringAgentAccessKeyResponse extends $tea.Model {
|
|
9292
|
-
headers
|
|
9293
|
-
statusCode
|
|
9294
|
-
body
|
|
9328
|
+
headers?: { [key: string]: string };
|
|
9329
|
+
statusCode?: number;
|
|
9330
|
+
body?: DescribeMonitoringAgentAccessKeyResponseBody;
|
|
9295
9331
|
static names(): { [key: string]: string } {
|
|
9296
9332
|
return {
|
|
9297
9333
|
headers: 'headers',
|
|
@@ -9370,9 +9406,9 @@ export class DescribeMonitoringAgentConfigResponseBody extends $tea.Model {
|
|
|
9370
9406
|
}
|
|
9371
9407
|
|
|
9372
9408
|
export class DescribeMonitoringAgentConfigResponse extends $tea.Model {
|
|
9373
|
-
headers
|
|
9374
|
-
statusCode
|
|
9375
|
-
body
|
|
9409
|
+
headers?: { [key: string]: string };
|
|
9410
|
+
statusCode?: number;
|
|
9411
|
+
body?: DescribeMonitoringAgentConfigResponseBody;
|
|
9376
9412
|
static names(): { [key: string]: string } {
|
|
9377
9413
|
return {
|
|
9378
9414
|
headers: 'headers',
|
|
@@ -9487,9 +9523,9 @@ export class DescribeMonitoringAgentHostsResponseBody extends $tea.Model {
|
|
|
9487
9523
|
}
|
|
9488
9524
|
|
|
9489
9525
|
export class DescribeMonitoringAgentHostsResponse extends $tea.Model {
|
|
9490
|
-
headers
|
|
9491
|
-
statusCode
|
|
9492
|
-
body
|
|
9526
|
+
headers?: { [key: string]: string };
|
|
9527
|
+
statusCode?: number;
|
|
9528
|
+
body?: DescribeMonitoringAgentHostsResponseBody;
|
|
9493
9529
|
static names(): { [key: string]: string } {
|
|
9494
9530
|
return {
|
|
9495
9531
|
headers: 'headers',
|
|
@@ -9565,9 +9601,9 @@ export class DescribeMonitoringAgentProcessesResponseBody extends $tea.Model {
|
|
|
9565
9601
|
}
|
|
9566
9602
|
|
|
9567
9603
|
export class DescribeMonitoringAgentProcessesResponse extends $tea.Model {
|
|
9568
|
-
headers
|
|
9569
|
-
statusCode
|
|
9570
|
-
body
|
|
9604
|
+
headers?: { [key: string]: string };
|
|
9605
|
+
statusCode?: number;
|
|
9606
|
+
body?: DescribeMonitoringAgentProcessesResponseBody;
|
|
9571
9607
|
static names(): { [key: string]: string } {
|
|
9572
9608
|
return {
|
|
9573
9609
|
headers: 'headers',
|
|
@@ -9646,9 +9682,9 @@ export class DescribeMonitoringAgentStatusesResponseBody extends $tea.Model {
|
|
|
9646
9682
|
}
|
|
9647
9683
|
|
|
9648
9684
|
export class DescribeMonitoringAgentStatusesResponse extends $tea.Model {
|
|
9649
|
-
headers
|
|
9650
|
-
statusCode
|
|
9651
|
-
body
|
|
9685
|
+
headers?: { [key: string]: string };
|
|
9686
|
+
statusCode?: number;
|
|
9687
|
+
body?: DescribeMonitoringAgentStatusesResponseBody;
|
|
9652
9688
|
static names(): { [key: string]: string } {
|
|
9653
9689
|
return {
|
|
9654
9690
|
headers: 'headers',
|
|
@@ -9724,9 +9760,9 @@ export class DescribeMonitoringConfigResponseBody extends $tea.Model {
|
|
|
9724
9760
|
}
|
|
9725
9761
|
|
|
9726
9762
|
export class DescribeMonitoringConfigResponse extends $tea.Model {
|
|
9727
|
-
headers
|
|
9728
|
-
statusCode
|
|
9729
|
-
body
|
|
9763
|
+
headers?: { [key: string]: string };
|
|
9764
|
+
statusCode?: number;
|
|
9765
|
+
body?: DescribeMonitoringConfigResponseBody;
|
|
9730
9766
|
static names(): { [key: string]: string } {
|
|
9731
9767
|
return {
|
|
9732
9768
|
headers: 'headers',
|
|
@@ -9805,9 +9841,9 @@ export class DescribeProductResourceTagKeyListResponseBody extends $tea.Model {
|
|
|
9805
9841
|
}
|
|
9806
9842
|
|
|
9807
9843
|
export class DescribeProductResourceTagKeyListResponse extends $tea.Model {
|
|
9808
|
-
headers
|
|
9809
|
-
statusCode
|
|
9810
|
-
body
|
|
9844
|
+
headers?: { [key: string]: string };
|
|
9845
|
+
statusCode?: number;
|
|
9846
|
+
body?: DescribeProductResourceTagKeyListResponseBody;
|
|
9811
9847
|
static names(): { [key: string]: string } {
|
|
9812
9848
|
return {
|
|
9813
9849
|
headers: 'headers',
|
|
@@ -9883,9 +9919,9 @@ export class DescribeProductsOfActiveMetricRuleResponseBody extends $tea.Model {
|
|
|
9883
9919
|
}
|
|
9884
9920
|
|
|
9885
9921
|
export class DescribeProductsOfActiveMetricRuleResponse extends $tea.Model {
|
|
9886
|
-
headers
|
|
9887
|
-
statusCode
|
|
9888
|
-
body
|
|
9922
|
+
headers?: { [key: string]: string };
|
|
9923
|
+
statusCode?: number;
|
|
9924
|
+
body?: DescribeProductsOfActiveMetricRuleResponseBody;
|
|
9889
9925
|
static names(): { [key: string]: string } {
|
|
9890
9926
|
return {
|
|
9891
9927
|
headers: 'headers',
|
|
@@ -9973,9 +10009,9 @@ export class DescribeProjectMetaResponseBody extends $tea.Model {
|
|
|
9973
10009
|
}
|
|
9974
10010
|
|
|
9975
10011
|
export class DescribeProjectMetaResponse extends $tea.Model {
|
|
9976
|
-
headers
|
|
9977
|
-
statusCode
|
|
9978
|
-
body
|
|
10012
|
+
headers?: { [key: string]: string };
|
|
10013
|
+
statusCode?: number;
|
|
10014
|
+
body?: DescribeProjectMetaResponseBody;
|
|
9979
10015
|
static names(): { [key: string]: string } {
|
|
9980
10016
|
return {
|
|
9981
10017
|
headers: 'headers',
|
|
@@ -10057,9 +10093,9 @@ export class DescribeSiteMonitorAttributeResponseBody extends $tea.Model {
|
|
|
10057
10093
|
}
|
|
10058
10094
|
|
|
10059
10095
|
export class DescribeSiteMonitorAttributeResponse extends $tea.Model {
|
|
10060
|
-
headers
|
|
10061
|
-
statusCode
|
|
10062
|
-
body
|
|
10096
|
+
headers?: { [key: string]: string };
|
|
10097
|
+
statusCode?: number;
|
|
10098
|
+
body?: DescribeSiteMonitorAttributeResponseBody;
|
|
10063
10099
|
static names(): { [key: string]: string } {
|
|
10064
10100
|
return {
|
|
10065
10101
|
headers: 'headers',
|
|
@@ -10159,9 +10195,9 @@ export class DescribeSiteMonitorDataResponseBody extends $tea.Model {
|
|
|
10159
10195
|
}
|
|
10160
10196
|
|
|
10161
10197
|
export class DescribeSiteMonitorDataResponse extends $tea.Model {
|
|
10162
|
-
headers
|
|
10163
|
-
statusCode
|
|
10164
|
-
body
|
|
10198
|
+
headers?: { [key: string]: string };
|
|
10199
|
+
statusCode?: number;
|
|
10200
|
+
body?: DescribeSiteMonitorDataResponseBody;
|
|
10165
10201
|
static names(): { [key: string]: string } {
|
|
10166
10202
|
return {
|
|
10167
10203
|
headers: 'headers',
|
|
@@ -10249,9 +10285,9 @@ export class DescribeSiteMonitorISPCityListResponseBody extends $tea.Model {
|
|
|
10249
10285
|
}
|
|
10250
10286
|
|
|
10251
10287
|
export class DescribeSiteMonitorISPCityListResponse extends $tea.Model {
|
|
10252
|
-
headers
|
|
10253
|
-
statusCode
|
|
10254
|
-
body
|
|
10288
|
+
headers?: { [key: string]: string };
|
|
10289
|
+
statusCode?: number;
|
|
10290
|
+
body?: DescribeSiteMonitorISPCityListResponseBody;
|
|
10255
10291
|
static names(): { [key: string]: string } {
|
|
10256
10292
|
return {
|
|
10257
10293
|
headers: 'headers',
|
|
@@ -10351,9 +10387,9 @@ export class DescribeSiteMonitorListResponseBody extends $tea.Model {
|
|
|
10351
10387
|
}
|
|
10352
10388
|
|
|
10353
10389
|
export class DescribeSiteMonitorListResponse extends $tea.Model {
|
|
10354
|
-
headers
|
|
10355
|
-
statusCode
|
|
10356
|
-
body
|
|
10390
|
+
headers?: { [key: string]: string };
|
|
10391
|
+
statusCode?: number;
|
|
10392
|
+
body?: DescribeSiteMonitorListResponseBody;
|
|
10357
10393
|
static names(): { [key: string]: string } {
|
|
10358
10394
|
return {
|
|
10359
10395
|
headers: 'headers',
|
|
@@ -10465,9 +10501,9 @@ export class DescribeSiteMonitorLogResponseBody extends $tea.Model {
|
|
|
10465
10501
|
}
|
|
10466
10502
|
|
|
10467
10503
|
export class DescribeSiteMonitorLogResponse extends $tea.Model {
|
|
10468
|
-
headers
|
|
10469
|
-
statusCode
|
|
10470
|
-
body
|
|
10504
|
+
headers?: { [key: string]: string };
|
|
10505
|
+
statusCode?: number;
|
|
10506
|
+
body?: DescribeSiteMonitorLogResponseBody;
|
|
10471
10507
|
static names(): { [key: string]: string } {
|
|
10472
10508
|
return {
|
|
10473
10509
|
headers: 'headers',
|
|
@@ -10540,9 +10576,9 @@ export class DescribeSiteMonitorQuotaResponseBody extends $tea.Model {
|
|
|
10540
10576
|
}
|
|
10541
10577
|
|
|
10542
10578
|
export class DescribeSiteMonitorQuotaResponse extends $tea.Model {
|
|
10543
|
-
headers
|
|
10544
|
-
statusCode
|
|
10545
|
-
body
|
|
10579
|
+
headers?: { [key: string]: string };
|
|
10580
|
+
statusCode?: number;
|
|
10581
|
+
body?: DescribeSiteMonitorQuotaResponseBody;
|
|
10546
10582
|
static names(): { [key: string]: string } {
|
|
10547
10583
|
return {
|
|
10548
10584
|
headers: 'headers',
|
|
@@ -10627,9 +10663,9 @@ export class DescribeSiteMonitorStatisticsResponseBody extends $tea.Model {
|
|
|
10627
10663
|
}
|
|
10628
10664
|
|
|
10629
10665
|
export class DescribeSiteMonitorStatisticsResponse extends $tea.Model {
|
|
10630
|
-
headers
|
|
10631
|
-
statusCode
|
|
10632
|
-
body
|
|
10666
|
+
headers?: { [key: string]: string };
|
|
10667
|
+
statusCode?: number;
|
|
10668
|
+
body?: DescribeSiteMonitorStatisticsResponseBody;
|
|
10633
10669
|
static names(): { [key: string]: string } {
|
|
10634
10670
|
return {
|
|
10635
10671
|
headers: 'headers',
|
|
@@ -10735,9 +10771,9 @@ export class DescribeSystemEventAttributeResponseBody extends $tea.Model {
|
|
|
10735
10771
|
}
|
|
10736
10772
|
|
|
10737
10773
|
export class DescribeSystemEventAttributeResponse extends $tea.Model {
|
|
10738
|
-
headers
|
|
10739
|
-
statusCode
|
|
10740
|
-
body
|
|
10774
|
+
headers?: { [key: string]: string };
|
|
10775
|
+
statusCode?: number;
|
|
10776
|
+
body?: DescribeSystemEventAttributeResponseBody;
|
|
10741
10777
|
static names(): { [key: string]: string } {
|
|
10742
10778
|
return {
|
|
10743
10779
|
headers: 'headers',
|
|
@@ -10837,9 +10873,9 @@ export class DescribeSystemEventCountResponseBody extends $tea.Model {
|
|
|
10837
10873
|
}
|
|
10838
10874
|
|
|
10839
10875
|
export class DescribeSystemEventCountResponse extends $tea.Model {
|
|
10840
|
-
headers
|
|
10841
|
-
statusCode
|
|
10842
|
-
body
|
|
10876
|
+
headers?: { [key: string]: string };
|
|
10877
|
+
statusCode?: number;
|
|
10878
|
+
body?: DescribeSystemEventCountResponseBody;
|
|
10843
10879
|
static names(): { [key: string]: string } {
|
|
10844
10880
|
return {
|
|
10845
10881
|
headers: 'headers',
|
|
@@ -10939,9 +10975,9 @@ export class DescribeSystemEventHistogramResponseBody extends $tea.Model {
|
|
|
10939
10975
|
}
|
|
10940
10976
|
|
|
10941
10977
|
export class DescribeSystemEventHistogramResponse extends $tea.Model {
|
|
10942
|
-
headers
|
|
10943
|
-
statusCode
|
|
10944
|
-
body
|
|
10978
|
+
headers?: { [key: string]: string };
|
|
10979
|
+
statusCode?: number;
|
|
10980
|
+
body?: DescribeSystemEventHistogramResponseBody;
|
|
10945
10981
|
static names(): { [key: string]: string } {
|
|
10946
10982
|
return {
|
|
10947
10983
|
headers: 'headers',
|
|
@@ -11014,9 +11050,9 @@ export class DescribeSystemEventMetaListResponseBody extends $tea.Model {
|
|
|
11014
11050
|
}
|
|
11015
11051
|
|
|
11016
11052
|
export class DescribeSystemEventMetaListResponse extends $tea.Model {
|
|
11017
|
-
headers
|
|
11018
|
-
statusCode
|
|
11019
|
-
body
|
|
11053
|
+
headers?: { [key: string]: string };
|
|
11054
|
+
statusCode?: number;
|
|
11055
|
+
body?: DescribeSystemEventMetaListResponseBody;
|
|
11020
11056
|
static names(): { [key: string]: string } {
|
|
11021
11057
|
return {
|
|
11022
11058
|
headers: 'headers',
|
|
@@ -11095,9 +11131,9 @@ export class DescribeTagKeyListResponseBody extends $tea.Model {
|
|
|
11095
11131
|
}
|
|
11096
11132
|
|
|
11097
11133
|
export class DescribeTagKeyListResponse extends $tea.Model {
|
|
11098
|
-
headers
|
|
11099
|
-
statusCode
|
|
11100
|
-
body
|
|
11134
|
+
headers?: { [key: string]: string };
|
|
11135
|
+
statusCode?: number;
|
|
11136
|
+
body?: DescribeTagKeyListResponseBody;
|
|
11101
11137
|
static names(): { [key: string]: string } {
|
|
11102
11138
|
return {
|
|
11103
11139
|
headers: 'headers',
|
|
@@ -11179,9 +11215,9 @@ export class DescribeTagValueListResponseBody extends $tea.Model {
|
|
|
11179
11215
|
}
|
|
11180
11216
|
|
|
11181
11217
|
export class DescribeTagValueListResponse extends $tea.Model {
|
|
11182
|
-
headers
|
|
11183
|
-
statusCode
|
|
11184
|
-
body
|
|
11218
|
+
headers?: { [key: string]: string };
|
|
11219
|
+
statusCode?: number;
|
|
11220
|
+
body?: DescribeTagValueListResponseBody;
|
|
11185
11221
|
static names(): { [key: string]: string } {
|
|
11186
11222
|
return {
|
|
11187
11223
|
headers: 'headers',
|
|
@@ -11257,9 +11293,9 @@ export class DescribeUnhealthyHostAvailabilityResponseBody extends $tea.Model {
|
|
|
11257
11293
|
}
|
|
11258
11294
|
|
|
11259
11295
|
export class DescribeUnhealthyHostAvailabilityResponse extends $tea.Model {
|
|
11260
|
-
headers
|
|
11261
|
-
statusCode
|
|
11262
|
-
body
|
|
11296
|
+
headers?: { [key: string]: string };
|
|
11297
|
+
statusCode?: number;
|
|
11298
|
+
body?: DescribeUnhealthyHostAvailabilityResponseBody;
|
|
11263
11299
|
static names(): { [key: string]: string } {
|
|
11264
11300
|
return {
|
|
11265
11301
|
headers: 'headers',
|
|
@@ -11332,9 +11368,9 @@ export class DisableActiveMetricRuleResponseBody extends $tea.Model {
|
|
|
11332
11368
|
}
|
|
11333
11369
|
|
|
11334
11370
|
export class DisableActiveMetricRuleResponse extends $tea.Model {
|
|
11335
|
-
headers
|
|
11336
|
-
statusCode
|
|
11337
|
-
body
|
|
11371
|
+
headers?: { [key: string]: string };
|
|
11372
|
+
statusCode?: number;
|
|
11373
|
+
body?: DisableActiveMetricRuleResponseBody;
|
|
11338
11374
|
static names(): { [key: string]: string } {
|
|
11339
11375
|
return {
|
|
11340
11376
|
headers: 'headers',
|
|
@@ -11407,9 +11443,9 @@ export class DisableEventRulesResponseBody extends $tea.Model {
|
|
|
11407
11443
|
}
|
|
11408
11444
|
|
|
11409
11445
|
export class DisableEventRulesResponse extends $tea.Model {
|
|
11410
|
-
headers
|
|
11411
|
-
statusCode
|
|
11412
|
-
body
|
|
11446
|
+
headers?: { [key: string]: string };
|
|
11447
|
+
statusCode?: number;
|
|
11448
|
+
body?: DisableEventRulesResponseBody;
|
|
11413
11449
|
static names(): { [key: string]: string } {
|
|
11414
11450
|
return {
|
|
11415
11451
|
headers: 'headers',
|
|
@@ -11482,9 +11518,9 @@ export class DisableHostAvailabilityResponseBody extends $tea.Model {
|
|
|
11482
11518
|
}
|
|
11483
11519
|
|
|
11484
11520
|
export class DisableHostAvailabilityResponse extends $tea.Model {
|
|
11485
|
-
headers
|
|
11486
|
-
statusCode
|
|
11487
|
-
body
|
|
11521
|
+
headers?: { [key: string]: string };
|
|
11522
|
+
statusCode?: number;
|
|
11523
|
+
body?: DisableHostAvailabilityResponseBody;
|
|
11488
11524
|
static names(): { [key: string]: string } {
|
|
11489
11525
|
return {
|
|
11490
11526
|
headers: 'headers',
|
|
@@ -11557,9 +11593,9 @@ export class DisableMetricRulesResponseBody extends $tea.Model {
|
|
|
11557
11593
|
}
|
|
11558
11594
|
|
|
11559
11595
|
export class DisableMetricRulesResponse extends $tea.Model {
|
|
11560
|
-
headers
|
|
11561
|
-
statusCode
|
|
11562
|
-
body
|
|
11596
|
+
headers?: { [key: string]: string };
|
|
11597
|
+
statusCode?: number;
|
|
11598
|
+
body?: DisableMetricRulesResponseBody;
|
|
11563
11599
|
static names(): { [key: string]: string } {
|
|
11564
11600
|
return {
|
|
11565
11601
|
headers: 'headers',
|
|
@@ -11635,9 +11671,9 @@ export class DisableSiteMonitorsResponseBody extends $tea.Model {
|
|
|
11635
11671
|
}
|
|
11636
11672
|
|
|
11637
11673
|
export class DisableSiteMonitorsResponse extends $tea.Model {
|
|
11638
|
-
headers
|
|
11639
|
-
statusCode
|
|
11640
|
-
body
|
|
11674
|
+
headers?: { [key: string]: string };
|
|
11675
|
+
statusCode?: number;
|
|
11676
|
+
body?: DisableSiteMonitorsResponseBody;
|
|
11641
11677
|
static names(): { [key: string]: string } {
|
|
11642
11678
|
return {
|
|
11643
11679
|
headers: 'headers',
|
|
@@ -11710,9 +11746,9 @@ export class EnableActiveMetricRuleResponseBody extends $tea.Model {
|
|
|
11710
11746
|
}
|
|
11711
11747
|
|
|
11712
11748
|
export class EnableActiveMetricRuleResponse extends $tea.Model {
|
|
11713
|
-
headers
|
|
11714
|
-
statusCode
|
|
11715
|
-
body
|
|
11749
|
+
headers?: { [key: string]: string };
|
|
11750
|
+
statusCode?: number;
|
|
11751
|
+
body?: EnableActiveMetricRuleResponseBody;
|
|
11716
11752
|
static names(): { [key: string]: string } {
|
|
11717
11753
|
return {
|
|
11718
11754
|
headers: 'headers',
|
|
@@ -11785,9 +11821,9 @@ export class EnableEventRulesResponseBody extends $tea.Model {
|
|
|
11785
11821
|
}
|
|
11786
11822
|
|
|
11787
11823
|
export class EnableEventRulesResponse extends $tea.Model {
|
|
11788
|
-
headers
|
|
11789
|
-
statusCode
|
|
11790
|
-
body
|
|
11824
|
+
headers?: { [key: string]: string };
|
|
11825
|
+
statusCode?: number;
|
|
11826
|
+
body?: EnableEventRulesResponseBody;
|
|
11791
11827
|
static names(): { [key: string]: string } {
|
|
11792
11828
|
return {
|
|
11793
11829
|
headers: 'headers',
|
|
@@ -11860,9 +11896,9 @@ export class EnableHostAvailabilityResponseBody extends $tea.Model {
|
|
|
11860
11896
|
}
|
|
11861
11897
|
|
|
11862
11898
|
export class EnableHostAvailabilityResponse extends $tea.Model {
|
|
11863
|
-
headers
|
|
11864
|
-
statusCode
|
|
11865
|
-
body
|
|
11899
|
+
headers?: { [key: string]: string };
|
|
11900
|
+
statusCode?: number;
|
|
11901
|
+
body?: EnableHostAvailabilityResponseBody;
|
|
11866
11902
|
static names(): { [key: string]: string } {
|
|
11867
11903
|
return {
|
|
11868
11904
|
headers: 'headers',
|
|
@@ -11941,9 +11977,9 @@ export class EnableMetricRuleBlackListResponseBody extends $tea.Model {
|
|
|
11941
11977
|
}
|
|
11942
11978
|
|
|
11943
11979
|
export class EnableMetricRuleBlackListResponse extends $tea.Model {
|
|
11944
|
-
headers
|
|
11945
|
-
statusCode
|
|
11946
|
-
body
|
|
11980
|
+
headers?: { [key: string]: string };
|
|
11981
|
+
statusCode?: number;
|
|
11982
|
+
body?: EnableMetricRuleBlackListResponseBody;
|
|
11947
11983
|
static names(): { [key: string]: string } {
|
|
11948
11984
|
return {
|
|
11949
11985
|
headers: 'headers',
|
|
@@ -12016,9 +12052,9 @@ export class EnableMetricRulesResponseBody extends $tea.Model {
|
|
|
12016
12052
|
}
|
|
12017
12053
|
|
|
12018
12054
|
export class EnableMetricRulesResponse extends $tea.Model {
|
|
12019
|
-
headers
|
|
12020
|
-
statusCode
|
|
12021
|
-
body
|
|
12055
|
+
headers?: { [key: string]: string };
|
|
12056
|
+
statusCode?: number;
|
|
12057
|
+
body?: EnableMetricRulesResponseBody;
|
|
12022
12058
|
static names(): { [key: string]: string } {
|
|
12023
12059
|
return {
|
|
12024
12060
|
headers: 'headers',
|
|
@@ -12094,9 +12130,9 @@ export class EnableSiteMonitorsResponseBody extends $tea.Model {
|
|
|
12094
12130
|
}
|
|
12095
12131
|
|
|
12096
12132
|
export class EnableSiteMonitorsResponse extends $tea.Model {
|
|
12097
|
-
headers
|
|
12098
|
-
statusCode
|
|
12099
|
-
body
|
|
12133
|
+
headers?: { [key: string]: string };
|
|
12134
|
+
statusCode?: number;
|
|
12135
|
+
body?: EnableSiteMonitorsResponseBody;
|
|
12100
12136
|
static names(): { [key: string]: string } {
|
|
12101
12137
|
return {
|
|
12102
12138
|
headers: 'headers',
|
|
@@ -12175,9 +12211,9 @@ export class InstallMonitoringAgentResponseBody extends $tea.Model {
|
|
|
12175
12211
|
}
|
|
12176
12212
|
|
|
12177
12213
|
export class InstallMonitoringAgentResponse extends $tea.Model {
|
|
12178
|
-
headers
|
|
12179
|
-
statusCode
|
|
12180
|
-
body
|
|
12214
|
+
headers?: { [key: string]: string };
|
|
12215
|
+
statusCode?: number;
|
|
12216
|
+
body?: InstallMonitoringAgentResponseBody;
|
|
12181
12217
|
static names(): { [key: string]: string } {
|
|
12182
12218
|
return {
|
|
12183
12219
|
headers: 'headers',
|
|
@@ -12259,9 +12295,9 @@ export class ModifyGroupMonitoringAgentProcessResponseBody extends $tea.Model {
|
|
|
12259
12295
|
}
|
|
12260
12296
|
|
|
12261
12297
|
export class ModifyGroupMonitoringAgentProcessResponse extends $tea.Model {
|
|
12262
|
-
headers
|
|
12263
|
-
statusCode
|
|
12264
|
-
body
|
|
12298
|
+
headers?: { [key: string]: string };
|
|
12299
|
+
statusCode?: number;
|
|
12300
|
+
body?: ModifyGroupMonitoringAgentProcessResponseBody;
|
|
12265
12301
|
static names(): { [key: string]: string } {
|
|
12266
12302
|
return {
|
|
12267
12303
|
headers: 'headers',
|
|
@@ -12358,9 +12394,9 @@ export class ModifyHostAvailabilityResponseBody extends $tea.Model {
|
|
|
12358
12394
|
}
|
|
12359
12395
|
|
|
12360
12396
|
export class ModifyHostAvailabilityResponse extends $tea.Model {
|
|
12361
|
-
headers
|
|
12362
|
-
statusCode
|
|
12363
|
-
body
|
|
12397
|
+
headers?: { [key: string]: string };
|
|
12398
|
+
statusCode?: number;
|
|
12399
|
+
body?: ModifyHostAvailabilityResponseBody;
|
|
12364
12400
|
static names(): { [key: string]: string } {
|
|
12365
12401
|
return {
|
|
12366
12402
|
headers: 'headers',
|
|
@@ -12436,9 +12472,9 @@ export class ModifyHostInfoResponseBody extends $tea.Model {
|
|
|
12436
12472
|
}
|
|
12437
12473
|
|
|
12438
12474
|
export class ModifyHostInfoResponse extends $tea.Model {
|
|
12439
|
-
headers
|
|
12440
|
-
statusCode
|
|
12441
|
-
body
|
|
12475
|
+
headers?: { [key: string]: string };
|
|
12476
|
+
statusCode?: number;
|
|
12477
|
+
body?: ModifyHostInfoResponseBody;
|
|
12442
12478
|
static names(): { [key: string]: string } {
|
|
12443
12479
|
return {
|
|
12444
12480
|
headers: 'headers',
|
|
@@ -12517,9 +12553,9 @@ export class ModifyHybridMonitorNamespaceResponseBody extends $tea.Model {
|
|
|
12517
12553
|
}
|
|
12518
12554
|
|
|
12519
12555
|
export class ModifyHybridMonitorNamespaceResponse extends $tea.Model {
|
|
12520
|
-
headers
|
|
12521
|
-
statusCode
|
|
12522
|
-
body
|
|
12556
|
+
headers?: { [key: string]: string };
|
|
12557
|
+
statusCode?: number;
|
|
12558
|
+
body?: ModifyHybridMonitorNamespaceResponseBody;
|
|
12523
12559
|
static names(): { [key: string]: string } {
|
|
12524
12560
|
return {
|
|
12525
12561
|
headers: 'headers',
|
|
@@ -12598,9 +12634,9 @@ export class ModifyHybridMonitorSLSGroupResponseBody extends $tea.Model {
|
|
|
12598
12634
|
}
|
|
12599
12635
|
|
|
12600
12636
|
export class ModifyHybridMonitorSLSGroupResponse extends $tea.Model {
|
|
12601
|
-
headers
|
|
12602
|
-
statusCode
|
|
12603
|
-
body
|
|
12637
|
+
headers?: { [key: string]: string };
|
|
12638
|
+
statusCode?: number;
|
|
12639
|
+
body?: ModifyHybridMonitorSLSGroupResponseBody;
|
|
12604
12640
|
static names(): { [key: string]: string } {
|
|
12605
12641
|
return {
|
|
12606
12642
|
headers: 'headers',
|
|
@@ -12688,9 +12724,9 @@ export class ModifyHybridMonitorTaskResponseBody extends $tea.Model {
|
|
|
12688
12724
|
}
|
|
12689
12725
|
|
|
12690
12726
|
export class ModifyHybridMonitorTaskResponse extends $tea.Model {
|
|
12691
|
-
headers
|
|
12692
|
-
statusCode
|
|
12693
|
-
body
|
|
12727
|
+
headers?: { [key: string]: string };
|
|
12728
|
+
statusCode?: number;
|
|
12729
|
+
body?: ModifyHybridMonitorTaskResponseBody;
|
|
12694
12730
|
static names(): { [key: string]: string } {
|
|
12695
12731
|
return {
|
|
12696
12732
|
headers: 'headers',
|
|
@@ -12796,9 +12832,9 @@ export class ModifyMetricRuleBlackListResponseBody extends $tea.Model {
|
|
|
12796
12832
|
}
|
|
12797
12833
|
|
|
12798
12834
|
export class ModifyMetricRuleBlackListResponse extends $tea.Model {
|
|
12799
|
-
headers
|
|
12800
|
-
statusCode
|
|
12801
|
-
body
|
|
12835
|
+
headers?: { [key: string]: string };
|
|
12836
|
+
statusCode?: number;
|
|
12837
|
+
body?: ModifyMetricRuleBlackListResponseBody;
|
|
12802
12838
|
static names(): { [key: string]: string } {
|
|
12803
12839
|
return {
|
|
12804
12840
|
headers: 'headers',
|
|
@@ -12883,9 +12919,9 @@ export class ModifyMetricRuleTemplateResponseBody extends $tea.Model {
|
|
|
12883
12919
|
}
|
|
12884
12920
|
|
|
12885
12921
|
export class ModifyMetricRuleTemplateResponse extends $tea.Model {
|
|
12886
|
-
headers
|
|
12887
|
-
statusCode
|
|
12888
|
-
body
|
|
12922
|
+
headers?: { [key: string]: string };
|
|
12923
|
+
statusCode?: number;
|
|
12924
|
+
body?: ModifyMetricRuleTemplateResponseBody;
|
|
12889
12925
|
static names(): { [key: string]: string } {
|
|
12890
12926
|
return {
|
|
12891
12927
|
headers: 'headers',
|
|
@@ -12964,9 +13000,9 @@ export class ModifyMonitorGroupResponseBody extends $tea.Model {
|
|
|
12964
13000
|
}
|
|
12965
13001
|
|
|
12966
13002
|
export class ModifyMonitorGroupResponse extends $tea.Model {
|
|
12967
|
-
headers
|
|
12968
|
-
statusCode
|
|
12969
|
-
body
|
|
13003
|
+
headers?: { [key: string]: string };
|
|
13004
|
+
statusCode?: number;
|
|
13005
|
+
body?: ModifyMonitorGroupResponseBody;
|
|
12970
13006
|
static names(): { [key: string]: string } {
|
|
12971
13007
|
return {
|
|
12972
13008
|
headers: 'headers',
|
|
@@ -13042,9 +13078,9 @@ export class ModifyMonitorGroupInstancesResponseBody extends $tea.Model {
|
|
|
13042
13078
|
}
|
|
13043
13079
|
|
|
13044
13080
|
export class ModifyMonitorGroupInstancesResponse extends $tea.Model {
|
|
13045
|
-
headers
|
|
13046
|
-
statusCode
|
|
13047
|
-
body
|
|
13081
|
+
headers?: { [key: string]: string };
|
|
13082
|
+
statusCode?: number;
|
|
13083
|
+
body?: ModifyMonitorGroupInstancesResponseBody;
|
|
13048
13084
|
static names(): { [key: string]: string } {
|
|
13049
13085
|
return {
|
|
13050
13086
|
headers: 'headers',
|
|
@@ -13144,9 +13180,9 @@ export class ModifySiteMonitorResponseBody extends $tea.Model {
|
|
|
13144
13180
|
}
|
|
13145
13181
|
|
|
13146
13182
|
export class ModifySiteMonitorResponse extends $tea.Model {
|
|
13147
|
-
headers
|
|
13148
|
-
statusCode
|
|
13149
|
-
body
|
|
13183
|
+
headers?: { [key: string]: string };
|
|
13184
|
+
statusCode?: number;
|
|
13185
|
+
body?: ModifySiteMonitorResponseBody;
|
|
13150
13186
|
static names(): { [key: string]: string } {
|
|
13151
13187
|
return {
|
|
13152
13188
|
headers: 'headers',
|
|
@@ -13191,9 +13227,9 @@ export class OpenCmsServiceResponseBody extends $tea.Model {
|
|
|
13191
13227
|
}
|
|
13192
13228
|
|
|
13193
13229
|
export class OpenCmsServiceResponse extends $tea.Model {
|
|
13194
|
-
headers
|
|
13195
|
-
statusCode
|
|
13196
|
-
body
|
|
13230
|
+
headers?: { [key: string]: string };
|
|
13231
|
+
statusCode?: number;
|
|
13232
|
+
body?: OpenCmsServiceResponseBody;
|
|
13197
13233
|
static names(): { [key: string]: string } {
|
|
13198
13234
|
return {
|
|
13199
13235
|
headers: 'headers',
|
|
@@ -13272,9 +13308,9 @@ export class PutContactResponseBody extends $tea.Model {
|
|
|
13272
13308
|
}
|
|
13273
13309
|
|
|
13274
13310
|
export class PutContactResponse extends $tea.Model {
|
|
13275
|
-
headers
|
|
13276
|
-
statusCode
|
|
13277
|
-
body
|
|
13311
|
+
headers?: { [key: string]: string };
|
|
13312
|
+
statusCode?: number;
|
|
13313
|
+
body?: PutContactResponseBody;
|
|
13278
13314
|
static names(): { [key: string]: string } {
|
|
13279
13315
|
return {
|
|
13280
13316
|
headers: 'headers',
|
|
@@ -13353,9 +13389,9 @@ export class PutContactGroupResponseBody extends $tea.Model {
|
|
|
13353
13389
|
}
|
|
13354
13390
|
|
|
13355
13391
|
export class PutContactGroupResponse extends $tea.Model {
|
|
13356
|
-
headers
|
|
13357
|
-
statusCode
|
|
13358
|
-
body
|
|
13392
|
+
headers?: { [key: string]: string };
|
|
13393
|
+
statusCode?: number;
|
|
13394
|
+
body?: PutContactGroupResponseBody;
|
|
13359
13395
|
static names(): { [key: string]: string } {
|
|
13360
13396
|
return {
|
|
13361
13397
|
headers: 'headers',
|
|
@@ -13425,9 +13461,9 @@ export class PutCustomEventResponseBody extends $tea.Model {
|
|
|
13425
13461
|
}
|
|
13426
13462
|
|
|
13427
13463
|
export class PutCustomEventResponse extends $tea.Model {
|
|
13428
|
-
headers
|
|
13429
|
-
statusCode
|
|
13430
|
-
body
|
|
13464
|
+
headers?: { [key: string]: string };
|
|
13465
|
+
statusCode?: number;
|
|
13466
|
+
body?: PutCustomEventResponseBody;
|
|
13431
13467
|
static names(): { [key: string]: string } {
|
|
13432
13468
|
return {
|
|
13433
13469
|
headers: 'headers',
|
|
@@ -13527,9 +13563,9 @@ export class PutCustomEventRuleResponseBody extends $tea.Model {
|
|
|
13527
13563
|
}
|
|
13528
13564
|
|
|
13529
13565
|
export class PutCustomEventRuleResponse extends $tea.Model {
|
|
13530
|
-
headers
|
|
13531
|
-
statusCode
|
|
13532
|
-
body
|
|
13566
|
+
headers?: { [key: string]: string };
|
|
13567
|
+
statusCode?: number;
|
|
13568
|
+
body?: PutCustomEventRuleResponseBody;
|
|
13533
13569
|
static names(): { [key: string]: string } {
|
|
13534
13570
|
return {
|
|
13535
13571
|
headers: 'headers',
|
|
@@ -13599,9 +13635,9 @@ export class PutCustomMetricResponseBody extends $tea.Model {
|
|
|
13599
13635
|
}
|
|
13600
13636
|
|
|
13601
13637
|
export class PutCustomMetricResponse extends $tea.Model {
|
|
13602
|
-
headers
|
|
13603
|
-
statusCode
|
|
13604
|
-
body
|
|
13638
|
+
headers?: { [key: string]: string };
|
|
13639
|
+
statusCode?: number;
|
|
13640
|
+
body?: PutCustomMetricResponseBody;
|
|
13605
13641
|
static names(): { [key: string]: string } {
|
|
13606
13642
|
return {
|
|
13607
13643
|
headers: 'headers',
|
|
@@ -13716,9 +13752,9 @@ export class PutCustomMetricRuleResponseBody extends $tea.Model {
|
|
|
13716
13752
|
}
|
|
13717
13753
|
|
|
13718
13754
|
export class PutCustomMetricRuleResponse extends $tea.Model {
|
|
13719
|
-
headers
|
|
13720
|
-
statusCode
|
|
13721
|
-
body
|
|
13755
|
+
headers?: { [key: string]: string };
|
|
13756
|
+
statusCode?: number;
|
|
13757
|
+
body?: PutCustomMetricRuleResponseBody;
|
|
13722
13758
|
static names(): { [key: string]: string } {
|
|
13723
13759
|
return {
|
|
13724
13760
|
headers: 'headers',
|
|
@@ -13812,9 +13848,9 @@ export class PutEventRuleResponseBody extends $tea.Model {
|
|
|
13812
13848
|
}
|
|
13813
13849
|
|
|
13814
13850
|
export class PutEventRuleResponse extends $tea.Model {
|
|
13815
|
-
headers
|
|
13816
|
-
statusCode
|
|
13817
|
-
body
|
|
13851
|
+
headers?: { [key: string]: string };
|
|
13852
|
+
statusCode?: number;
|
|
13853
|
+
body?: PutEventRuleResponseBody;
|
|
13818
13854
|
static names(): { [key: string]: string } {
|
|
13819
13855
|
return {
|
|
13820
13856
|
headers: 'headers',
|
|
@@ -13917,9 +13953,9 @@ export class PutEventRuleTargetsResponseBody extends $tea.Model {
|
|
|
13917
13953
|
}
|
|
13918
13954
|
|
|
13919
13955
|
export class PutEventRuleTargetsResponse extends $tea.Model {
|
|
13920
|
-
headers
|
|
13921
|
-
statusCode
|
|
13922
|
-
body
|
|
13956
|
+
headers?: { [key: string]: string };
|
|
13957
|
+
statusCode?: number;
|
|
13958
|
+
body?: PutEventRuleTargetsResponseBody;
|
|
13923
13959
|
static names(): { [key: string]: string } {
|
|
13924
13960
|
return {
|
|
13925
13961
|
headers: 'headers',
|
|
@@ -14001,9 +14037,9 @@ export class PutExporterOutputResponseBody extends $tea.Model {
|
|
|
14001
14037
|
}
|
|
14002
14038
|
|
|
14003
14039
|
export class PutExporterOutputResponse extends $tea.Model {
|
|
14004
|
-
headers
|
|
14005
|
-
statusCode
|
|
14006
|
-
body
|
|
14040
|
+
headers?: { [key: string]: string };
|
|
14041
|
+
statusCode?: number;
|
|
14042
|
+
body?: PutExporterOutputResponseBody;
|
|
14007
14043
|
static names(): { [key: string]: string } {
|
|
14008
14044
|
return {
|
|
14009
14045
|
headers: 'headers',
|
|
@@ -14091,9 +14127,9 @@ export class PutExporterRuleResponseBody extends $tea.Model {
|
|
|
14091
14127
|
}
|
|
14092
14128
|
|
|
14093
14129
|
export class PutExporterRuleResponse extends $tea.Model {
|
|
14094
|
-
headers
|
|
14095
|
-
statusCode
|
|
14096
|
-
body
|
|
14130
|
+
headers?: { [key: string]: string };
|
|
14131
|
+
statusCode?: number;
|
|
14132
|
+
body?: PutExporterRuleResponseBody;
|
|
14097
14133
|
static names(): { [key: string]: string } {
|
|
14098
14134
|
return {
|
|
14099
14135
|
headers: 'headers',
|
|
@@ -14130,6 +14166,7 @@ export class PutGroupMetricRuleRequest extends $tea.Model {
|
|
|
14130
14166
|
namespace?: string;
|
|
14131
14167
|
noDataPolicy?: string;
|
|
14132
14168
|
noEffectiveInterval?: string;
|
|
14169
|
+
options?: string;
|
|
14133
14170
|
period?: string;
|
|
14134
14171
|
ruleId?: string;
|
|
14135
14172
|
ruleName?: string;
|
|
@@ -14151,6 +14188,7 @@ export class PutGroupMetricRuleRequest extends $tea.Model {
|
|
|
14151
14188
|
namespace: 'Namespace',
|
|
14152
14189
|
noDataPolicy: 'NoDataPolicy',
|
|
14153
14190
|
noEffectiveInterval: 'NoEffectiveInterval',
|
|
14191
|
+
options: 'Options',
|
|
14154
14192
|
period: 'Period',
|
|
14155
14193
|
ruleId: 'RuleId',
|
|
14156
14194
|
ruleName: 'RuleName',
|
|
@@ -14175,6 +14213,7 @@ export class PutGroupMetricRuleRequest extends $tea.Model {
|
|
|
14175
14213
|
namespace: 'string',
|
|
14176
14214
|
noDataPolicy: 'string',
|
|
14177
14215
|
noEffectiveInterval: 'string',
|
|
14216
|
+
options: 'string',
|
|
14178
14217
|
period: 'string',
|
|
14179
14218
|
ruleId: 'string',
|
|
14180
14219
|
ruleName: 'string',
|
|
@@ -14220,9 +14259,9 @@ export class PutGroupMetricRuleResponseBody extends $tea.Model {
|
|
|
14220
14259
|
}
|
|
14221
14260
|
|
|
14222
14261
|
export class PutGroupMetricRuleResponse extends $tea.Model {
|
|
14223
|
-
headers
|
|
14224
|
-
statusCode
|
|
14225
|
-
body
|
|
14262
|
+
headers?: { [key: string]: string };
|
|
14263
|
+
statusCode?: number;
|
|
14264
|
+
body?: PutGroupMetricRuleResponseBody;
|
|
14226
14265
|
static names(): { [key: string]: string } {
|
|
14227
14266
|
return {
|
|
14228
14267
|
headers: 'headers',
|
|
@@ -14295,9 +14334,9 @@ export class PutHybridMonitorMetricDataResponseBody extends $tea.Model {
|
|
|
14295
14334
|
}
|
|
14296
14335
|
|
|
14297
14336
|
export class PutHybridMonitorMetricDataResponse extends $tea.Model {
|
|
14298
|
-
headers
|
|
14299
|
-
statusCode
|
|
14300
|
-
body
|
|
14337
|
+
headers?: { [key: string]: string };
|
|
14338
|
+
statusCode?: number;
|
|
14339
|
+
body?: PutHybridMonitorMetricDataResponseBody;
|
|
14301
14340
|
static names(): { [key: string]: string } {
|
|
14302
14341
|
return {
|
|
14303
14342
|
headers: 'headers',
|
|
@@ -14409,9 +14448,9 @@ export class PutLogMonitorResponseBody extends $tea.Model {
|
|
|
14409
14448
|
}
|
|
14410
14449
|
|
|
14411
14450
|
export class PutLogMonitorResponse extends $tea.Model {
|
|
14412
|
-
headers
|
|
14413
|
-
statusCode
|
|
14414
|
-
body
|
|
14451
|
+
headers?: { [key: string]: string };
|
|
14452
|
+
statusCode?: number;
|
|
14453
|
+
body?: PutLogMonitorResponseBody;
|
|
14415
14454
|
static names(): { [key: string]: string } {
|
|
14416
14455
|
return {
|
|
14417
14456
|
headers: 'headers',
|
|
@@ -14490,9 +14529,9 @@ export class PutMetricRuleTargetsResponseBody extends $tea.Model {
|
|
|
14490
14529
|
}
|
|
14491
14530
|
|
|
14492
14531
|
export class PutMetricRuleTargetsResponse extends $tea.Model {
|
|
14493
|
-
headers
|
|
14494
|
-
statusCode
|
|
14495
|
-
body
|
|
14532
|
+
headers?: { [key: string]: string };
|
|
14533
|
+
statusCode?: number;
|
|
14534
|
+
body?: PutMetricRuleTargetsResponseBody;
|
|
14496
14535
|
static names(): { [key: string]: string } {
|
|
14497
14536
|
return {
|
|
14498
14537
|
headers: 'headers',
|
|
@@ -14571,9 +14610,9 @@ export class PutMonitorGroupDynamicRuleResponseBody extends $tea.Model {
|
|
|
14571
14610
|
}
|
|
14572
14611
|
|
|
14573
14612
|
export class PutMonitorGroupDynamicRuleResponse extends $tea.Model {
|
|
14574
|
-
headers
|
|
14575
|
-
statusCode
|
|
14576
|
-
body
|
|
14613
|
+
headers?: { [key: string]: string };
|
|
14614
|
+
statusCode?: number;
|
|
14615
|
+
body?: PutMonitorGroupDynamicRuleResponseBody;
|
|
14577
14616
|
static names(): { [key: string]: string } {
|
|
14578
14617
|
return {
|
|
14579
14618
|
headers: 'headers',
|
|
@@ -14649,9 +14688,9 @@ export class PutMonitoringConfigResponseBody extends $tea.Model {
|
|
|
14649
14688
|
}
|
|
14650
14689
|
|
|
14651
14690
|
export class PutMonitoringConfigResponse extends $tea.Model {
|
|
14652
|
-
headers
|
|
14653
|
-
statusCode
|
|
14654
|
-
body
|
|
14691
|
+
headers?: { [key: string]: string };
|
|
14692
|
+
statusCode?: number;
|
|
14693
|
+
body?: PutMonitoringConfigResponseBody;
|
|
14655
14694
|
static names(): { [key: string]: string } {
|
|
14656
14695
|
return {
|
|
14657
14696
|
headers: 'headers',
|
|
@@ -14842,9 +14881,9 @@ export class PutResourceMetricRuleResponseBody extends $tea.Model {
|
|
|
14842
14881
|
}
|
|
14843
14882
|
|
|
14844
14883
|
export class PutResourceMetricRuleResponse extends $tea.Model {
|
|
14845
|
-
headers
|
|
14846
|
-
statusCode
|
|
14847
|
-
body
|
|
14884
|
+
headers?: { [key: string]: string };
|
|
14885
|
+
statusCode?: number;
|
|
14886
|
+
body?: PutResourceMetricRuleResponseBody;
|
|
14848
14887
|
static names(): { [key: string]: string } {
|
|
14849
14888
|
return {
|
|
14850
14889
|
headers: 'headers',
|
|
@@ -14917,9 +14956,9 @@ export class PutResourceMetricRulesResponseBody extends $tea.Model {
|
|
|
14917
14956
|
}
|
|
14918
14957
|
|
|
14919
14958
|
export class PutResourceMetricRulesResponse extends $tea.Model {
|
|
14920
|
-
headers
|
|
14921
|
-
statusCode
|
|
14922
|
-
body
|
|
14959
|
+
headers?: { [key: string]: string };
|
|
14960
|
+
statusCode?: number;
|
|
14961
|
+
body?: PutResourceMetricRulesResponseBody;
|
|
14923
14962
|
static names(): { [key: string]: string } {
|
|
14924
14963
|
return {
|
|
14925
14964
|
headers: 'headers',
|
|
@@ -14998,9 +15037,9 @@ export class RemoveTagsResponseBody extends $tea.Model {
|
|
|
14998
15037
|
}
|
|
14999
15038
|
|
|
15000
15039
|
export class RemoveTagsResponse extends $tea.Model {
|
|
15001
|
-
headers
|
|
15002
|
-
statusCode
|
|
15003
|
-
body
|
|
15040
|
+
headers?: { [key: string]: string };
|
|
15041
|
+
statusCode?: number;
|
|
15042
|
+
body?: RemoveTagsResponseBody;
|
|
15004
15043
|
static names(): { [key: string]: string } {
|
|
15005
15044
|
return {
|
|
15006
15045
|
headers: 'headers',
|
|
@@ -15082,9 +15121,9 @@ export class SendDryRunSystemEventResponseBody extends $tea.Model {
|
|
|
15082
15121
|
}
|
|
15083
15122
|
|
|
15084
15123
|
export class SendDryRunSystemEventResponse extends $tea.Model {
|
|
15085
|
-
headers
|
|
15086
|
-
statusCode
|
|
15087
|
-
body
|
|
15124
|
+
headers?: { [key: string]: string };
|
|
15125
|
+
statusCode?: number;
|
|
15126
|
+
body?: SendDryRunSystemEventResponseBody;
|
|
15088
15127
|
static names(): { [key: string]: string } {
|
|
15089
15128
|
return {
|
|
15090
15129
|
headers: 'headers',
|
|
@@ -15157,9 +15196,9 @@ export class UninstallMonitoringAgentResponseBody extends $tea.Model {
|
|
|
15157
15196
|
}
|
|
15158
15197
|
|
|
15159
15198
|
export class UninstallMonitoringAgentResponse extends $tea.Model {
|
|
15160
|
-
headers
|
|
15161
|
-
statusCode
|
|
15162
|
-
body
|
|
15199
|
+
headers?: { [key: string]: string };
|
|
15200
|
+
statusCode?: number;
|
|
15201
|
+
body?: UninstallMonitoringAgentResponseBody;
|
|
15163
15202
|
static names(): { [key: string]: string } {
|
|
15164
15203
|
return {
|
|
15165
15204
|
headers: 'headers',
|
|
@@ -16419,6 +16458,7 @@ export class CreateGroupMetricRulesRequestGroupMetricRules extends $tea.Model {
|
|
|
16419
16458
|
namespace?: string;
|
|
16420
16459
|
noDataPolicy?: string;
|
|
16421
16460
|
noEffectiveInterval?: string;
|
|
16461
|
+
options?: string;
|
|
16422
16462
|
period?: string;
|
|
16423
16463
|
ruleId?: string;
|
|
16424
16464
|
ruleName?: string;
|
|
@@ -16438,6 +16478,7 @@ export class CreateGroupMetricRulesRequestGroupMetricRules extends $tea.Model {
|
|
|
16438
16478
|
namespace: 'Namespace',
|
|
16439
16479
|
noDataPolicy: 'NoDataPolicy',
|
|
16440
16480
|
noEffectiveInterval: 'NoEffectiveInterval',
|
|
16481
|
+
options: 'Options',
|
|
16441
16482
|
period: 'Period',
|
|
16442
16483
|
ruleId: 'RuleId',
|
|
16443
16484
|
ruleName: 'RuleName',
|
|
@@ -16460,6 +16501,7 @@ export class CreateGroupMetricRulesRequestGroupMetricRules extends $tea.Model {
|
|
|
16460
16501
|
namespace: 'string',
|
|
16461
16502
|
noDataPolicy: 'string',
|
|
16462
16503
|
noEffectiveInterval: 'string',
|
|
16504
|
+
options: 'string',
|
|
16463
16505
|
period: 'string',
|
|
16464
16506
|
ruleId: 'string',
|
|
16465
16507
|
ruleName: 'string',
|
|
@@ -23195,6 +23237,7 @@ export class DescribeMonitoringAgentProcessesResponseBodyNodeProcesses extends $
|
|
|
23195
23237
|
}
|
|
23196
23238
|
|
|
23197
23239
|
export class DescribeMonitoringAgentStatusesResponseBodyNodeStatusListNodeStatus extends $tea.Model {
|
|
23240
|
+
agentInstallErrorCode?: string;
|
|
23198
23241
|
autoInstall?: boolean;
|
|
23199
23242
|
instanceId?: string;
|
|
23200
23243
|
osMonitorConfig?: string;
|
|
@@ -23205,6 +23248,7 @@ export class DescribeMonitoringAgentStatusesResponseBodyNodeStatusListNodeStatus
|
|
|
23205
23248
|
status?: string;
|
|
23206
23249
|
static names(): { [key: string]: string } {
|
|
23207
23250
|
return {
|
|
23251
|
+
agentInstallErrorCode: 'AgentInstallErrorCode',
|
|
23208
23252
|
autoInstall: 'AutoInstall',
|
|
23209
23253
|
instanceId: 'InstanceId',
|
|
23210
23254
|
osMonitorConfig: 'OsMonitorConfig',
|
|
@@ -23218,6 +23262,7 @@ export class DescribeMonitoringAgentStatusesResponseBodyNodeStatusListNodeStatus
|
|
|
23218
23262
|
|
|
23219
23263
|
static types(): { [key: string]: any } {
|
|
23220
23264
|
return {
|
|
23265
|
+
agentInstallErrorCode: 'string',
|
|
23221
23266
|
autoInstall: 'boolean',
|
|
23222
23267
|
instanceId: 'string',
|
|
23223
23268
|
osMonitorConfig: 'string',
|
|
@@ -24365,6 +24410,7 @@ export class DescribeSiteMonitorQuotaResponseBodyData extends $tea.Model {
|
|
|
24365
24410
|
export class DescribeSystemEventAttributeResponseBodySystemEventsSystemEvent extends $tea.Model {
|
|
24366
24411
|
content?: string;
|
|
24367
24412
|
groupId?: string;
|
|
24413
|
+
id?: string;
|
|
24368
24414
|
instanceName?: string;
|
|
24369
24415
|
level?: string;
|
|
24370
24416
|
name?: string;
|
|
@@ -24377,6 +24423,7 @@ export class DescribeSystemEventAttributeResponseBodySystemEventsSystemEvent ext
|
|
|
24377
24423
|
return {
|
|
24378
24424
|
content: 'Content',
|
|
24379
24425
|
groupId: 'GroupId',
|
|
24426
|
+
id: 'Id',
|
|
24380
24427
|
instanceName: 'InstanceName',
|
|
24381
24428
|
level: 'Level',
|
|
24382
24429
|
name: 'Name',
|
|
@@ -24392,6 +24439,7 @@ export class DescribeSystemEventAttributeResponseBodySystemEventsSystemEvent ext
|
|
|
24392
24439
|
return {
|
|
24393
24440
|
content: 'string',
|
|
24394
24441
|
groupId: 'string',
|
|
24442
|
+
id: 'string',
|
|
24395
24443
|
instanceName: 'string',
|
|
24396
24444
|
level: 'string',
|
|
24397
24445
|
name: 'string',
|
|
@@ -27663,8 +27711,10 @@ export default class Client extends OpenApi {
|
|
|
27663
27711
|
}
|
|
27664
27712
|
|
|
27665
27713
|
/**
|
|
27666
|
-
*
|
|
27714
|
+
* # [](#)Prerequisites
|
|
27667
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.
|
|
27668
27718
|
*
|
|
27669
27719
|
* @param request CreateHybridMonitorNamespaceRequest
|
|
27670
27720
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -27711,8 +27761,10 @@ export default class Client extends OpenApi {
|
|
|
27711
27761
|
}
|
|
27712
27762
|
|
|
27713
27763
|
/**
|
|
27714
|
-
*
|
|
27764
|
+
* # [](#)Prerequisites
|
|
27715
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.
|
|
27716
27768
|
*
|
|
27717
27769
|
* @param request CreateHybridMonitorNamespaceRequest
|
|
27718
27770
|
* @return CreateHybridMonitorNamespaceResponse
|
|
@@ -27779,9 +27831,11 @@ export default class Client extends OpenApi {
|
|
|
27779
27831
|
}
|
|
27780
27832
|
|
|
27781
27833
|
/**
|
|
27782
|
-
*
|
|
27834
|
+
* # [](#)Prerequisites
|
|
27783
27835
|
* * Hybrid Cloud Monitoring is activated. For more information, see [Activate Hybrid Cloud Monitoring](~~250773~~).
|
|
27784
|
-
* * 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.
|
|
27785
27839
|
*
|
|
27786
27840
|
* @param request CreateHybridMonitorTaskRequest
|
|
27787
27841
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -27794,6 +27848,10 @@ export default class Client extends OpenApi {
|
|
|
27794
27848
|
query["AttachLabels"] = request.attachLabels;
|
|
27795
27849
|
}
|
|
27796
27850
|
|
|
27851
|
+
if (!Util.isUnset(request.cloudAccessId)) {
|
|
27852
|
+
query["CloudAccessId"] = request.cloudAccessId;
|
|
27853
|
+
}
|
|
27854
|
+
|
|
27797
27855
|
if (!Util.isUnset(request.collectInterval)) {
|
|
27798
27856
|
query["CollectInterval"] = request.collectInterval;
|
|
27799
27857
|
}
|
|
@@ -27856,9 +27914,11 @@ export default class Client extends OpenApi {
|
|
|
27856
27914
|
}
|
|
27857
27915
|
|
|
27858
27916
|
/**
|
|
27859
|
-
*
|
|
27917
|
+
* # [](#)Prerequisites
|
|
27860
27918
|
* * Hybrid Cloud Monitoring is activated. For more information, see [Activate Hybrid Cloud Monitoring](~~250773~~).
|
|
27861
|
-
* * 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.
|
|
27862
27922
|
*
|
|
27863
27923
|
* @param request CreateHybridMonitorTaskRequest
|
|
27864
27924
|
* @return CreateHybridMonitorTaskResponse
|
|
@@ -29472,7 +29532,8 @@ export default class Client extends OpenApi {
|
|
|
29472
29532
|
}
|
|
29473
29533
|
|
|
29474
29534
|
/**
|
|
29475
|
-
*
|
|
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.
|
|
29476
29537
|
*
|
|
29477
29538
|
* @param request DescribeAlertLogCountRequest
|
|
29478
29539
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -29489,6 +29550,10 @@ export default class Client extends OpenApi {
|
|
|
29489
29550
|
query["EndTime"] = request.endTime;
|
|
29490
29551
|
}
|
|
29491
29552
|
|
|
29553
|
+
if (!Util.isUnset(request.eventType)) {
|
|
29554
|
+
query["EventType"] = request.eventType;
|
|
29555
|
+
}
|
|
29556
|
+
|
|
29492
29557
|
if (!Util.isUnset(request.groupBy)) {
|
|
29493
29558
|
query["GroupBy"] = request.groupBy;
|
|
29494
29559
|
}
|
|
@@ -29525,6 +29590,10 @@ export default class Client extends OpenApi {
|
|
|
29525
29590
|
query["Product"] = request.product;
|
|
29526
29591
|
}
|
|
29527
29592
|
|
|
29593
|
+
if (!Util.isUnset(request.ruleId)) {
|
|
29594
|
+
query["RuleId"] = request.ruleId;
|
|
29595
|
+
}
|
|
29596
|
+
|
|
29528
29597
|
if (!Util.isUnset(request.ruleName)) {
|
|
29529
29598
|
query["RuleName"] = request.ruleName;
|
|
29530
29599
|
}
|
|
@@ -29563,7 +29632,8 @@ export default class Client extends OpenApi {
|
|
|
29563
29632
|
}
|
|
29564
29633
|
|
|
29565
29634
|
/**
|
|
29566
|
-
*
|
|
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.
|
|
29567
29637
|
*
|
|
29568
29638
|
* @param request DescribeAlertLogCountRequest
|
|
29569
29639
|
* @return DescribeAlertLogCountResponse
|
|
@@ -29591,6 +29661,10 @@ export default class Client extends OpenApi {
|
|
|
29591
29661
|
query["EndTime"] = request.endTime;
|
|
29592
29662
|
}
|
|
29593
29663
|
|
|
29664
|
+
if (!Util.isUnset(request.eventType)) {
|
|
29665
|
+
query["EventType"] = request.eventType;
|
|
29666
|
+
}
|
|
29667
|
+
|
|
29594
29668
|
if (!Util.isUnset(request.groupBy)) {
|
|
29595
29669
|
query["GroupBy"] = request.groupBy;
|
|
29596
29670
|
}
|
|
@@ -29627,6 +29701,10 @@ export default class Client extends OpenApi {
|
|
|
29627
29701
|
query["Product"] = request.product;
|
|
29628
29702
|
}
|
|
29629
29703
|
|
|
29704
|
+
if (!Util.isUnset(request.ruleId)) {
|
|
29705
|
+
query["RuleId"] = request.ruleId;
|
|
29706
|
+
}
|
|
29707
|
+
|
|
29630
29708
|
if (!Util.isUnset(request.ruleName)) {
|
|
29631
29709
|
query["RuleName"] = request.ruleName;
|
|
29632
29710
|
}
|
|
@@ -29676,6 +29754,7 @@ export default class Client extends OpenApi {
|
|
|
29676
29754
|
}
|
|
29677
29755
|
|
|
29678
29756
|
/**
|
|
29757
|
+
* You can call the operation to query only the alert logs within the last year.
|
|
29679
29758
|
* This topic provides an example to show how to query the alert logs of Elastic Compute Service (ECS) based on the `product` dimension.
|
|
29680
29759
|
*
|
|
29681
29760
|
* @param request DescribeAlertLogListRequest
|
|
@@ -29693,6 +29772,10 @@ export default class Client extends OpenApi {
|
|
|
29693
29772
|
query["EndTime"] = request.endTime;
|
|
29694
29773
|
}
|
|
29695
29774
|
|
|
29775
|
+
if (!Util.isUnset(request.eventType)) {
|
|
29776
|
+
query["EventType"] = request.eventType;
|
|
29777
|
+
}
|
|
29778
|
+
|
|
29696
29779
|
if (!Util.isUnset(request.groupBy)) {
|
|
29697
29780
|
query["GroupBy"] = request.groupBy;
|
|
29698
29781
|
}
|
|
@@ -29771,6 +29854,7 @@ export default class Client extends OpenApi {
|
|
|
29771
29854
|
}
|
|
29772
29855
|
|
|
29773
29856
|
/**
|
|
29857
|
+
* You can call the operation to query only the alert logs within the last year.
|
|
29774
29858
|
* This topic provides an example to show how to query the alert logs of Elastic Compute Service (ECS) based on the `product` dimension.
|
|
29775
29859
|
*
|
|
29776
29860
|
* @param request DescribeAlertLogListRequest
|
|
@@ -30409,7 +30493,7 @@ export default class Client extends OpenApi {
|
|
|
30409
30493
|
}
|
|
30410
30494
|
|
|
30411
30495
|
/**
|
|
30412
|
-
* You can create a process monitoring task to monitor all or the specified Elastic Compute Service (ECS) instances in an application group and
|
|
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.
|
|
30413
30497
|
*
|
|
30414
30498
|
* @param request DescribeGroupMonitoringAgentProcessRequest
|
|
30415
30499
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -30452,7 +30536,7 @@ export default class Client extends OpenApi {
|
|
|
30452
30536
|
}
|
|
30453
30537
|
|
|
30454
30538
|
/**
|
|
30455
|
-
* You can create a process monitoring task to monitor all or the specified Elastic Compute Service (ECS) instances in an application group and
|
|
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.
|
|
30456
30540
|
*
|
|
30457
30541
|
* @param request DescribeGroupMonitoringAgentProcessRequest
|
|
30458
30542
|
* @return DescribeGroupMonitoringAgentProcessResponse
|
|
@@ -34584,6 +34668,10 @@ export default class Client extends OpenApi {
|
|
|
34584
34668
|
query["NoEffectiveInterval"] = request.noEffectiveInterval;
|
|
34585
34669
|
}
|
|
34586
34670
|
|
|
34671
|
+
if (!Util.isUnset(request.options)) {
|
|
34672
|
+
query["Options"] = request.options;
|
|
34673
|
+
}
|
|
34674
|
+
|
|
34587
34675
|
if (!Util.isUnset(request.period)) {
|
|
34588
34676
|
query["Period"] = request.period;
|
|
34589
34677
|
}
|
|
@@ -35021,7 +35109,7 @@ export default class Client extends OpenApi {
|
|
|
35021
35109
|
}
|
|
35022
35110
|
|
|
35023
35111
|
/**
|
|
35024
|
-
* This topic provides an example on how to create a threshold-triggered alert rule for the `cpu_total` metric of
|
|
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`.
|
|
35025
35113
|
*
|
|
35026
35114
|
* @param request PutResourceMetricRulesRequest
|
|
35027
35115
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -35052,7 +35140,7 @@ export default class Client extends OpenApi {
|
|
|
35052
35140
|
}
|
|
35053
35141
|
|
|
35054
35142
|
/**
|
|
35055
|
-
* This topic provides an example on how to create a threshold-triggered alert rule for the `cpu_total` metric of
|
|
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`.
|
|
35056
35144
|
*
|
|
35057
35145
|
* @param request PutResourceMetricRulesRequest
|
|
35058
35146
|
* @return PutResourceMetricRulesResponse
|