@alicloud/cms20190101 2.0.6 → 2.0.8

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 CHANGED
@@ -141,6 +141,25 @@ export declare class MetricStat extends $tea.Model {
141
141
  [key: string]: any;
142
142
  });
143
143
  }
144
+ export declare class MigrationJob extends $tea.Model {
145
+ createTime?: string;
146
+ detail?: string;
147
+ jobStatus?: string;
148
+ plan?: MigrationJobPlan;
149
+ ruleNames?: string[];
150
+ source?: MigrationJobSource[];
151
+ updateTime?: string;
152
+ uuid?: string;
153
+ static names(): {
154
+ [key: string]: string;
155
+ };
156
+ static types(): {
157
+ [key: string]: any;
158
+ };
159
+ constructor(map?: {
160
+ [key: string]: any;
161
+ });
162
+ }
144
163
  export declare class NotificationStrategy extends $tea.Model {
145
164
  createTime?: string;
146
165
  description?: string;
@@ -3474,6 +3493,7 @@ export declare class DescribeEventRuleAttributeResponse extends $tea.Model {
3474
3493
  }
3475
3494
  export declare class DescribeEventRuleListRequest extends $tea.Model {
3476
3495
  groupId?: string;
3496
+ isEnable?: boolean;
3477
3497
  namePrefix?: string;
3478
3498
  pageNumber?: string;
3479
3499
  pageSize?: string;
@@ -5617,7 +5637,10 @@ export declare class DescribeSiteMonitorListResponse extends $tea.Model {
5617
5637
  });
5618
5638
  }
5619
5639
  export declare class DescribeSiteMonitorLogRequest extends $tea.Model {
5640
+ browser?: string;
5641
+ browserInfo?: string;
5620
5642
  city?: string;
5643
+ device?: string;
5621
5644
  endTime?: string;
5622
5645
  filter?: string;
5623
5646
  isp?: string;
@@ -8310,6 +8333,286 @@ export declare class EscalationRuleEscalations extends $tea.Model {
8310
8333
  [key: string]: any;
8311
8334
  });
8312
8335
  }
8336
+ export declare class MigrationJobPlanContactsChannels extends $tea.Model {
8337
+ level?: number;
8338
+ type?: string;
8339
+ value?: string;
8340
+ static names(): {
8341
+ [key: string]: string;
8342
+ };
8343
+ static types(): {
8344
+ [key: string]: any;
8345
+ };
8346
+ constructor(map?: {
8347
+ [key: string]: any;
8348
+ });
8349
+ }
8350
+ export declare class MigrationJobPlanContacts extends $tea.Model {
8351
+ channels?: MigrationJobPlanContactsChannels[];
8352
+ name?: string;
8353
+ static names(): {
8354
+ [key: string]: string;
8355
+ };
8356
+ static types(): {
8357
+ [key: string]: any;
8358
+ };
8359
+ constructor(map?: {
8360
+ [key: string]: any;
8361
+ });
8362
+ }
8363
+ export declare class MigrationJobPlanEscalationsEscalationsLevelGroups extends $tea.Model {
8364
+ critical?: string[];
8365
+ info?: string[];
8366
+ resolved?: string[];
8367
+ warning?: string[];
8368
+ static names(): {
8369
+ [key: string]: string;
8370
+ };
8371
+ static types(): {
8372
+ [key: string]: any;
8373
+ };
8374
+ constructor(map?: {
8375
+ [key: string]: any;
8376
+ });
8377
+ }
8378
+ export declare class MigrationJobPlanEscalationsEscalations extends $tea.Model {
8379
+ groups?: string[];
8380
+ levelGroups?: MigrationJobPlanEscalationsEscalationsLevelGroups;
8381
+ static names(): {
8382
+ [key: string]: string;
8383
+ };
8384
+ static types(): {
8385
+ [key: string]: any;
8386
+ };
8387
+ constructor(map?: {
8388
+ [key: string]: any;
8389
+ });
8390
+ }
8391
+ export declare class MigrationJobPlanEscalations extends $tea.Model {
8392
+ escalations?: MigrationJobPlanEscalationsEscalations[];
8393
+ name?: string;
8394
+ uuid?: string;
8395
+ static names(): {
8396
+ [key: string]: string;
8397
+ };
8398
+ static types(): {
8399
+ [key: string]: any;
8400
+ };
8401
+ constructor(map?: {
8402
+ [key: string]: any;
8403
+ });
8404
+ }
8405
+ export declare class MigrationJobPlanGroups extends $tea.Model {
8406
+ contacts?: string[];
8407
+ name?: string;
8408
+ static names(): {
8409
+ [key: string]: string;
8410
+ };
8411
+ static types(): {
8412
+ [key: string]: any;
8413
+ };
8414
+ constructor(map?: {
8415
+ [key: string]: any;
8416
+ });
8417
+ }
8418
+ export declare class MigrationJobPlanStrategiesEscalationSetting extends $tea.Model {
8419
+ escalationUuid?: string;
8420
+ static names(): {
8421
+ [key: string]: string;
8422
+ };
8423
+ static types(): {
8424
+ [key: string]: any;
8425
+ };
8426
+ constructor(map?: {
8427
+ [key: string]: any;
8428
+ });
8429
+ }
8430
+ export declare class MigrationJobPlanStrategiesPushingSetting extends $tea.Model {
8431
+ targetUuids?: string[];
8432
+ static names(): {
8433
+ [key: string]: string;
8434
+ };
8435
+ static types(): {
8436
+ [key: string]: any;
8437
+ };
8438
+ constructor(map?: {
8439
+ [key: string]: any;
8440
+ });
8441
+ }
8442
+ export declare class MigrationJobPlanStrategies extends $tea.Model {
8443
+ escalationSetting?: MigrationJobPlanStrategiesEscalationSetting;
8444
+ name?: string;
8445
+ pushingSetting?: MigrationJobPlanStrategiesPushingSetting;
8446
+ static names(): {
8447
+ [key: string]: string;
8448
+ };
8449
+ static types(): {
8450
+ [key: string]: any;
8451
+ };
8452
+ constructor(map?: {
8453
+ [key: string]: any;
8454
+ });
8455
+ }
8456
+ export declare class MigrationJobPlanSubscriptionsConditions extends $tea.Model {
8457
+ field?: string;
8458
+ op?: string;
8459
+ value?: string;
8460
+ static names(): {
8461
+ [key: string]: string;
8462
+ };
8463
+ static types(): {
8464
+ [key: string]: any;
8465
+ };
8466
+ constructor(map?: {
8467
+ [key: string]: any;
8468
+ });
8469
+ }
8470
+ export declare class MigrationJobPlanSubscriptions extends $tea.Model {
8471
+ conditions?: MigrationJobPlanSubscriptionsConditions[];
8472
+ name?: string;
8473
+ strategyUuid?: string;
8474
+ static names(): {
8475
+ [key: string]: string;
8476
+ };
8477
+ static types(): {
8478
+ [key: string]: any;
8479
+ };
8480
+ constructor(map?: {
8481
+ [key: string]: any;
8482
+ });
8483
+ }
8484
+ export declare class MigrationJobPlanTargetsHttpRequestTarget extends $tea.Model {
8485
+ contentType?: string;
8486
+ method?: string;
8487
+ url?: string;
8488
+ static names(): {
8489
+ [key: string]: string;
8490
+ };
8491
+ static types(): {
8492
+ [key: string]: any;
8493
+ };
8494
+ constructor(map?: {
8495
+ [key: string]: any;
8496
+ });
8497
+ }
8498
+ export declare class MigrationJobPlanTargets extends $tea.Model {
8499
+ arn?: string;
8500
+ httpRequestTarget?: MigrationJobPlanTargetsHttpRequestTarget;
8501
+ name?: string;
8502
+ type?: string;
8503
+ uuid?: string;
8504
+ static names(): {
8505
+ [key: string]: string;
8506
+ };
8507
+ static types(): {
8508
+ [key: string]: any;
8509
+ };
8510
+ constructor(map?: {
8511
+ [key: string]: any;
8512
+ });
8513
+ }
8514
+ export declare class MigrationJobPlan extends $tea.Model {
8515
+ contacts?: MigrationJobPlanContacts[];
8516
+ escalations?: MigrationJobPlanEscalations[];
8517
+ groups?: MigrationJobPlanGroups[];
8518
+ ruleNames?: string[];
8519
+ strategies?: MigrationJobPlanStrategies[];
8520
+ subscriptions?: MigrationJobPlanSubscriptions[];
8521
+ targets?: MigrationJobPlanTargets[];
8522
+ static names(): {
8523
+ [key: string]: string;
8524
+ };
8525
+ static types(): {
8526
+ [key: string]: any;
8527
+ };
8528
+ constructor(map?: {
8529
+ [key: string]: any;
8530
+ });
8531
+ }
8532
+ export declare class MigrationJobSourceRuleKeywordFilter extends $tea.Model {
8533
+ keywords?: string[];
8534
+ relation?: string;
8535
+ static names(): {
8536
+ [key: string]: string;
8537
+ };
8538
+ static types(): {
8539
+ [key: string]: any;
8540
+ };
8541
+ constructor(map?: {
8542
+ [key: string]: any;
8543
+ });
8544
+ }
8545
+ export declare class MigrationJobSourceRulePrimaryFilters extends $tea.Model {
8546
+ field?: string;
8547
+ opType?: string;
8548
+ value?: string;
8549
+ static names(): {
8550
+ [key: string]: string;
8551
+ };
8552
+ static types(): {
8553
+ [key: string]: any;
8554
+ };
8555
+ constructor(map?: {
8556
+ [key: string]: any;
8557
+ });
8558
+ }
8559
+ export declare class MigrationJobSourceRule extends $tea.Model {
8560
+ keywordFilter?: MigrationJobSourceRuleKeywordFilter;
8561
+ name?: string;
8562
+ primaryFilters?: MigrationJobSourceRulePrimaryFilters[];
8563
+ static names(): {
8564
+ [key: string]: string;
8565
+ };
8566
+ static types(): {
8567
+ [key: string]: any;
8568
+ };
8569
+ constructor(map?: {
8570
+ [key: string]: any;
8571
+ });
8572
+ }
8573
+ export declare class MigrationJobSourceTargetsContent extends $tea.Model {
8574
+ group?: string;
8575
+ level?: string;
8576
+ method?: string;
8577
+ region?: string;
8578
+ resourcePath?: string;
8579
+ url?: string;
8580
+ static names(): {
8581
+ [key: string]: string;
8582
+ };
8583
+ static types(): {
8584
+ [key: string]: any;
8585
+ };
8586
+ constructor(map?: {
8587
+ [key: string]: any;
8588
+ });
8589
+ }
8590
+ export declare class MigrationJobSourceTargets extends $tea.Model {
8591
+ content?: MigrationJobSourceTargetsContent;
8592
+ type?: string;
8593
+ static names(): {
8594
+ [key: string]: string;
8595
+ };
8596
+ static types(): {
8597
+ [key: string]: any;
8598
+ };
8599
+ constructor(map?: {
8600
+ [key: string]: any;
8601
+ });
8602
+ }
8603
+ export declare class MigrationJobSource extends $tea.Model {
8604
+ rule?: MigrationJobSourceRule;
8605
+ targets?: MigrationJobSourceTargets[];
8606
+ static names(): {
8607
+ [key: string]: string;
8608
+ };
8609
+ static types(): {
8610
+ [key: string]: any;
8611
+ };
8612
+ constructor(map?: {
8613
+ [key: string]: any;
8614
+ });
8615
+ }
8313
8616
  export declare class NotificationStrategyEscalationSettingCustomChannels extends $tea.Model {
8314
8617
  channelType?: string;
8315
8618
  severities?: string[];
@@ -8412,6 +8715,7 @@ export declare class NotificationStrategyGroupingSetting extends $tea.Model {
8412
8715
  });
8413
8716
  }
8414
8717
  export declare class NotificationStrategyPushingSetting extends $tea.Model {
8718
+ pushingDataFormat?: string;
8415
8719
  range?: string;
8416
8720
  targetUuids?: string[];
8417
8721
  templateUuid?: string;
@@ -10094,6 +10398,31 @@ export declare class DescribeEventRuleAttributeResponseBodyResultEventPatternEve
10094
10398
  [key: string]: any;
10095
10399
  });
10096
10400
  }
10401
+ export declare class DescribeEventRuleAttributeResponseBodyResultEventPatternKeywordFilterObjKeywords extends $tea.Model {
10402
+ keyword?: string[];
10403
+ static names(): {
10404
+ [key: string]: string;
10405
+ };
10406
+ static types(): {
10407
+ [key: string]: any;
10408
+ };
10409
+ constructor(map?: {
10410
+ [key: string]: any;
10411
+ });
10412
+ }
10413
+ export declare class DescribeEventRuleAttributeResponseBodyResultEventPatternKeywordFilterObj extends $tea.Model {
10414
+ keywords?: DescribeEventRuleAttributeResponseBodyResultEventPatternKeywordFilterObjKeywords;
10415
+ relation?: string;
10416
+ static names(): {
10417
+ [key: string]: string;
10418
+ };
10419
+ static types(): {
10420
+ [key: string]: any;
10421
+ };
10422
+ constructor(map?: {
10423
+ [key: string]: any;
10424
+ });
10425
+ }
10097
10426
  export declare class DescribeEventRuleAttributeResponseBodyResultEventPatternLevelList extends $tea.Model {
10098
10427
  levelList?: string[];
10099
10428
  static names(): {
@@ -10132,9 +10461,11 @@ export declare class DescribeEventRuleAttributeResponseBodyResultEventPatternSta
10132
10461
  }
10133
10462
  export declare class DescribeEventRuleAttributeResponseBodyResultEventPattern extends $tea.Model {
10134
10463
  eventTypeList?: DescribeEventRuleAttributeResponseBodyResultEventPatternEventTypeList;
10464
+ keywordFilterObj?: DescribeEventRuleAttributeResponseBodyResultEventPatternKeywordFilterObj;
10135
10465
  levelList?: DescribeEventRuleAttributeResponseBodyResultEventPatternLevelList;
10136
10466
  nameList?: DescribeEventRuleAttributeResponseBodyResultEventPatternNameList;
10137
10467
  product?: string;
10468
+ SQLFilter?: string;
10138
10469
  statusList?: DescribeEventRuleAttributeResponseBodyResultEventPatternStatusList;
10139
10470
  static names(): {
10140
10471
  [key: string]: string;
@@ -12498,10 +12829,127 @@ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJ
12498
12829
  [key: string]: any;
12499
12830
  });
12500
12831
  }
12832
+ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBlockedUrlList extends $tea.Model {
12833
+ blockedUrlList?: string[];
12834
+ static names(): {
12835
+ [key: string]: string;
12836
+ };
12837
+ static types(): {
12838
+ [key: string]: any;
12839
+ };
12840
+ constructor(map?: {
12841
+ [key: string]: any;
12842
+ });
12843
+ }
12844
+ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserHeaders extends $tea.Model {
12845
+ browserHeaders?: {
12846
+ [key: string]: any;
12847
+ }[];
12848
+ static names(): {
12849
+ [key: string]: string;
12850
+ };
12851
+ static types(): {
12852
+ [key: string]: any;
12853
+ };
12854
+ constructor(map?: {
12855
+ [key: string]: any;
12856
+ });
12857
+ }
12858
+ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserHosts extends $tea.Model {
12859
+ browserHosts?: string[];
12860
+ static names(): {
12861
+ [key: string]: string;
12862
+ };
12863
+ static types(): {
12864
+ [key: string]: any;
12865
+ };
12866
+ constructor(map?: {
12867
+ [key: string]: any;
12868
+ });
12869
+ }
12870
+ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserInfoBrowserInfo extends $tea.Model {
12871
+ browser?: string;
12872
+ device?: string;
12873
+ static names(): {
12874
+ [key: string]: string;
12875
+ };
12876
+ static types(): {
12877
+ [key: string]: any;
12878
+ };
12879
+ constructor(map?: {
12880
+ [key: string]: any;
12881
+ });
12882
+ }
12883
+ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserInfo extends $tea.Model {
12884
+ browserInfo?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserInfoBrowserInfo[];
12885
+ static names(): {
12886
+ [key: string]: string;
12887
+ };
12888
+ static types(): {
12889
+ [key: string]: any;
12890
+ };
12891
+ constructor(map?: {
12892
+ [key: string]: any;
12893
+ });
12894
+ }
12895
+ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonExpectExistString extends $tea.Model {
12896
+ expectExistString?: string[];
12897
+ static names(): {
12898
+ [key: string]: string;
12899
+ };
12900
+ static types(): {
12901
+ [key: string]: any;
12902
+ };
12903
+ constructor(map?: {
12904
+ [key: string]: any;
12905
+ });
12906
+ }
12907
+ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonExpectNonExistString extends $tea.Model {
12908
+ expectNonExistString?: string[];
12909
+ static names(): {
12910
+ [key: string]: string;
12911
+ };
12912
+ static types(): {
12913
+ [key: string]: any;
12914
+ };
12915
+ constructor(map?: {
12916
+ [key: string]: any;
12917
+ });
12918
+ }
12919
+ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonTrafficHijackElementBlacklist extends $tea.Model {
12920
+ trafficHijackElementBlacklist?: string[];
12921
+ static names(): {
12922
+ [key: string]: string;
12923
+ };
12924
+ static types(): {
12925
+ [key: string]: any;
12926
+ };
12927
+ constructor(map?: {
12928
+ [key: string]: any;
12929
+ });
12930
+ }
12931
+ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonTrafficHijackElementWhitelist extends $tea.Model {
12932
+ trafficHijackElementWhitelist?: string[];
12933
+ static names(): {
12934
+ [key: string]: string;
12935
+ };
12936
+ static types(): {
12937
+ [key: string]: any;
12938
+ };
12939
+ constructor(map?: {
12940
+ [key: string]: any;
12941
+ });
12942
+ }
12501
12943
  export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJson extends $tea.Model {
12502
12944
  assertions?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonAssertions;
12503
12945
  attempts?: number;
12504
12946
  authentication?: number;
12947
+ blockedUrlList?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBlockedUrlList;
12948
+ browserHeaders?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserHeaders;
12949
+ browserHosts?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserHosts;
12950
+ browserInfo?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserInfo;
12951
+ browserInsecure?: boolean;
12952
+ browserTaskVersion?: string;
12505
12953
  cookie?: string;
12506
12954
  diagnosisMtr?: boolean;
12507
12955
  diagnosisPing?: boolean;
@@ -12509,6 +12957,8 @@ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJ
12509
12957
  dnsMatchRule?: string;
12510
12958
  dnsServer?: string;
12511
12959
  dnsType?: string;
12960
+ expectExistString?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonExpectExistString;
12961
+ expectNonExistString?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonExpectNonExistString;
12512
12962
  expectValue?: string;
12513
12963
  failureRate?: number;
12514
12964
  header?: string;
@@ -12518,6 +12968,8 @@ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJ
12518
12968
  minTlsVersion?: string;
12519
12969
  password?: string;
12520
12970
  pingNum?: number;
12971
+ pingPort?: number;
12972
+ pingType?: string;
12521
12973
  port?: number;
12522
12974
  protocol?: string;
12523
12975
  requestContent?: string;
@@ -12525,8 +12977,13 @@ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJ
12525
12977
  responseContent?: string;
12526
12978
  responseFormat?: string;
12527
12979
  retryDelay?: number;
12980
+ strictMode?: boolean;
12528
12981
  timeOut?: number;
12982
+ trafficHijackElementBlacklist?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonTrafficHijackElementBlacklist;
12983
+ trafficHijackElementCount?: number;
12984
+ trafficHijackElementWhitelist?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonTrafficHijackElementWhitelist;
12529
12985
  username?: string;
12986
+ waitTimeAfterCompletion?: number;
12530
12987
  static names(): {
12531
12988
  [key: string]: string;
12532
12989
  };
@@ -14137,9 +14594,7 @@ export default class Client extends OpenApi {
14137
14594
  [key: string]: string;
14138
14595
  }, endpoint: string): string;
14139
14596
  /**
14140
- * Indicates whether the call was successful. Valid values:
14141
- * * true: The call was successful.
14142
- * * false: The call failed.
14597
+ * This topic provides an example on how to add a tag to an application group whose ID is `7301****`. In this example, the key of the tag is `key1` and the value of the tag is `value1`.
14143
14598
  *
14144
14599
  * @param request AddTagsRequest
14145
14600
  * @param runtime runtime options for this request RuntimeOptions
@@ -14147,9 +14602,7 @@ export default class Client extends OpenApi {
14147
14602
  */
14148
14603
  addTagsWithOptions(request: AddTagsRequest, runtime: $Util.RuntimeOptions): Promise<AddTagsResponse>;
14149
14604
  /**
14150
- * Indicates whether the call was successful. Valid values:
14151
- * * true: The call was successful.
14152
- * * false: The call failed.
14605
+ * This topic provides an example on how to add a tag to an application group whose ID is `7301****`. In this example, the key of the tag is `key1` and the value of the tag is `value1`.
14153
14606
  *
14154
14607
  * @param request AddTagsRequest
14155
14608
  * @return AddTagsResponse
@@ -14202,7 +14655,26 @@ export default class Client extends OpenApi {
14202
14655
  * @return BatchCreateIntantSiteMonitorResponse
14203
14656
  */
14204
14657
  batchCreateIntantSiteMonitor(request: BatchCreateIntantSiteMonitorRequest): Promise<BatchCreateIntantSiteMonitorResponse>;
14658
+ /**
14659
+ * ### [](#)Prerequisites
14660
+ * The `Cursor` information is returned by calling the [Cursor](~~2330730~~) operation.
14661
+ * ### [](#)Description
14662
+ * This topic provides an example on how to export the monitoring data of the `cpu_idle` metric for Elastic Compute Service (ECS). The namespace of ECS is `acs_ecs_dashboard`. The `Cursor` information is specified. A maximum of 1,000 data entries can be returned in each response.
14663
+ *
14664
+ * @param tmpReq BatchExportRequest
14665
+ * @param runtime runtime options for this request RuntimeOptions
14666
+ * @return BatchExportResponse
14667
+ */
14205
14668
  batchExportWithOptions(tmpReq: BatchExportRequest, runtime: $Util.RuntimeOptions): Promise<BatchExportResponse>;
14669
+ /**
14670
+ * ### [](#)Prerequisites
14671
+ * The `Cursor` information is returned by calling the [Cursor](~~2330730~~) operation.
14672
+ * ### [](#)Description
14673
+ * This topic provides an example on how to export the monitoring data of the `cpu_idle` metric for Elastic Compute Service (ECS). The namespace of ECS is `acs_ecs_dashboard`. The `Cursor` information is specified. A maximum of 1,000 data entries can be returned in each response.
14674
+ *
14675
+ * @param request BatchExportRequest
14676
+ * @return BatchExportResponse
14677
+ */
14206
14678
  batchExport(request: BatchExportRequest): Promise<BatchExportResponse>;
14207
14679
  createCmsCallNumOrderWithOptions(request: CreateCmsCallNumOrderRequest, runtime: $Util.RuntimeOptions): Promise<CreateCmsCallNumOrderResponse>;
14208
14680
  createCmsCallNumOrder(request: CreateCmsCallNumOrderRequest): Promise<CreateCmsCallNumOrderResponse>;
@@ -14247,7 +14719,7 @@ export default class Client extends OpenApi {
14247
14719
  createGroupMonitoringAgentProcessWithOptions(request: CreateGroupMonitoringAgentProcessRequest, runtime: $Util.RuntimeOptions): Promise<CreateGroupMonitoringAgentProcessResponse>;
14248
14720
  createGroupMonitoringAgentProcess(request: CreateGroupMonitoringAgentProcessRequest): Promise<CreateGroupMonitoringAgentProcessResponse>;
14249
14721
  /**
14250
- * The ID of the resource for which alerts are triggered.
14722
+ * This topic provides an example on how to create an availability monitoring task named `task1` in an application group named `123456`. The TaskType parameter of the task is set to `HTTP`. After you start the task, the system sends alerts by using the specified email address and DingTalk chatbot.
14251
14723
  *
14252
14724
  * @param request CreateHostAvailabilityRequest
14253
14725
  * @param runtime runtime options for this request RuntimeOptions
@@ -14255,7 +14727,7 @@ export default class Client extends OpenApi {
14255
14727
  */
14256
14728
  createHostAvailabilityWithOptions(request: CreateHostAvailabilityRequest, runtime: $Util.RuntimeOptions): Promise<CreateHostAvailabilityResponse>;
14257
14729
  /**
14258
- * The ID of the resource for which alerts are triggered.
14730
+ * This topic provides an example on how to create an availability monitoring task named `task1` in an application group named `123456`. The TaskType parameter of the task is set to `HTTP`. After you start the task, the system sends alerts by using the specified email address and DingTalk chatbot.
14259
14731
  *
14260
14732
  * @param request CreateHostAvailabilityRequest
14261
14733
  * @return CreateHostAvailabilityResponse
@@ -14313,7 +14785,7 @@ export default class Client extends OpenApi {
14313
14785
  */
14314
14786
  createHybridMonitorTask(request: CreateHybridMonitorTaskRequest): Promise<CreateHybridMonitorTaskResponse>;
14315
14787
  /**
14316
- * You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring. For more information, see [Billing of Network Analysis and Monitoring](~~341649~~).
14788
+ * You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring.
14317
14789
  * This topic provides an example to show how to create an instant test task. The name of the task is `task1`. The tested address is `http://www.aliyun.com`. The test type is `HTTP`. The number of detection points is `1`.
14318
14790
  *
14319
14791
  * @param request CreateInstantSiteMonitorRequest
@@ -14322,7 +14794,7 @@ export default class Client extends OpenApi {
14322
14794
  */
14323
14795
  createInstantSiteMonitorWithOptions(request: CreateInstantSiteMonitorRequest, runtime: $Util.RuntimeOptions): Promise<CreateInstantSiteMonitorResponse>;
14324
14796
  /**
14325
- * You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring. For more information, see [Billing of Network Analysis and Monitoring](~~341649~~).
14797
+ * You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring.
14326
14798
  * This topic provides an example to show how to create an instant test task. The name of the task is `task1`. The tested address is `http://www.aliyun.com`. The test type is `HTTP`. The number of detection points is `1`.
14327
14799
  *
14328
14800
  * @param request CreateInstantSiteMonitorRequest
@@ -14330,8 +14802,9 @@ export default class Client extends OpenApi {
14330
14802
  */
14331
14803
  createInstantSiteMonitor(request: CreateInstantSiteMonitorRequest): Promise<CreateInstantSiteMonitorResponse>;
14332
14804
  /**
14333
- * The name of the metric.
14334
- * Valid values of N: 1 to 10
14805
+ * ### Background information
14806
+ * * CloudMonitor blocks alert notifications based on the blacklist policies that take effect. To block alert notifications when the value of a metric that belongs to a cloud service reaches the threshold that you specified, add the metric to a blacklist policy.
14807
+ * * CloudMonitor allows you to create blacklist policies only based on threshold metrics. You cannot create blacklist policies based on system events. For more information about the cloud services and the thresholds of the metrics that are supported by CloudMonitor, see [Appendix 1: Metrics](~~163515~~).
14335
14808
  *
14336
14809
  * @param request CreateMetricRuleBlackListRequest
14337
14810
  * @param runtime runtime options for this request RuntimeOptions
@@ -14339,8 +14812,9 @@ export default class Client extends OpenApi {
14339
14812
  */
14340
14813
  createMetricRuleBlackListWithOptions(request: CreateMetricRuleBlackListRequest, runtime: $Util.RuntimeOptions): Promise<CreateMetricRuleBlackListResponse>;
14341
14814
  /**
14342
- * The name of the metric.
14343
- * Valid values of N: 1 to 10
14815
+ * ### Background information
14816
+ * * CloudMonitor blocks alert notifications based on the blacklist policies that take effect. To block alert notifications when the value of a metric that belongs to a cloud service reaches the threshold that you specified, add the metric to a blacklist policy.
14817
+ * * CloudMonitor allows you to create blacklist policies only based on threshold metrics. You cannot create blacklist policies based on system events. For more information about the cloud services and the thresholds of the metrics that are supported by CloudMonitor, see [Appendix 1: Metrics](~~163515~~).
14344
14818
  *
14345
14819
  * @param request CreateMetricRuleBlackListRequest
14346
14820
  * @return CreateMetricRuleBlackListResponse
@@ -14368,8 +14842,7 @@ export default class Client extends OpenApi {
14368
14842
  */
14369
14843
  createMonitorGroup(request: CreateMonitorGroupRequest): Promise<CreateMonitorGroupResponse>;
14370
14844
  /**
14371
- * The ID of the region where the resource group resides.
14372
- * For information about how to obtain the ID of the region where a resource group resides, see [GetResourceGroup](~~158866~~).
14845
+ * This topic provides an example on how to create an application group by using the resource group `CloudMonitor` and the alert contact group `ECS_Group`. The region ID of the resource group is `cn-hangzhou`.
14373
14846
  *
14374
14847
  * @param request CreateMonitorGroupByResourceGroupIdRequest
14375
14848
  * @param runtime runtime options for this request RuntimeOptions
@@ -14377,8 +14850,7 @@ export default class Client extends OpenApi {
14377
14850
  */
14378
14851
  createMonitorGroupByResourceGroupIdWithOptions(request: CreateMonitorGroupByResourceGroupIdRequest, runtime: $Util.RuntimeOptions): Promise<CreateMonitorGroupByResourceGroupIdResponse>;
14379
14852
  /**
14380
- * The ID of the region where the resource group resides.
14381
- * For information about how to obtain the ID of the region where a resource group resides, see [GetResourceGroup](~~158866~~).
14853
+ * This topic provides an example on how to create an application group by using the resource group `CloudMonitor` and the alert contact group `ECS_Group`. The region ID of the resource group is `cn-hangzhou`.
14382
14854
  *
14383
14855
  * @param request CreateMonitorGroupByResourceGroupIdRequest
14384
14856
  * @return CreateMonitorGroupByResourceGroupIdResponse
@@ -14419,9 +14891,7 @@ export default class Client extends OpenApi {
14419
14891
  createMonitoringAgentProcessWithOptions(request: CreateMonitoringAgentProcessRequest, runtime: $Util.RuntimeOptions): Promise<CreateMonitoringAgentProcessResponse>;
14420
14892
  createMonitoringAgentProcess(request: CreateMonitoringAgentProcessRequest): Promise<CreateMonitoringAgentProcessResponse>;
14421
14893
  /**
14422
- * Indicates whether the call was successful. Valid values:
14423
- * * true: The call was successful.
14424
- * * false: The call failed.
14894
+ * This topic provides an example on how to create a site monitoring task named `HanZhou_ECS1`. The URL that is monitored by the task is `https://www.aliyun.com` and the type of the task is `HTTPS`.
14425
14895
  *
14426
14896
  * @param request CreateSiteMonitorRequest
14427
14897
  * @param runtime runtime options for this request RuntimeOptions
@@ -14429,15 +14899,36 @@ export default class Client extends OpenApi {
14429
14899
  */
14430
14900
  createSiteMonitorWithOptions(request: CreateSiteMonitorRequest, runtime: $Util.RuntimeOptions): Promise<CreateSiteMonitorResponse>;
14431
14901
  /**
14432
- * Indicates whether the call was successful. Valid values:
14433
- * * true: The call was successful.
14434
- * * false: The call failed.
14902
+ * This topic provides an example on how to create a site monitoring task named `HanZhou_ECS1`. The URL that is monitored by the task is `https://www.aliyun.com` and the type of the task is `HTTPS`.
14435
14903
  *
14436
14904
  * @param request CreateSiteMonitorRequest
14437
14905
  * @return CreateSiteMonitorResponse
14438
14906
  */
14439
14907
  createSiteMonitor(request: CreateSiteMonitorRequest): Promise<CreateSiteMonitorResponse>;
14908
+ /**
14909
+ * ### [](#)Prerequisites
14910
+ * Hybrid Cloud Monitoring is activated. For more information, see [Activate Hybrid Cloud Monitoring](~~250773~~).
14911
+ * ### [](#)Background information
14912
+ * You can call this operation to obtain the Cursor information and then call the [BatchExport](~~2329847~~) operation to export the monitoring data.
14913
+ * ### [](#)Description
14914
+ * This topic provides an example on how to define the monitoring data of a specified metric for a specified cloud service. In this example, the namespace of the cloud service is set to `acs_ecs_dashboard`, the metric is set to `cpu_idle`, the start time is set to `1641627000000`, and the end time is set to `1641645000000`. The number of idle CPU cores on your Elastic Compute Service (ECS) instances is measured every 60 seconds from 15:30:00, January 8, 2022 to 20:30:00, January 8, 2022. The `Cursor` information is returned.
14915
+ *
14916
+ * @param tmpReq CursorRequest
14917
+ * @param runtime runtime options for this request RuntimeOptions
14918
+ * @return CursorResponse
14919
+ */
14440
14920
  cursorWithOptions(tmpReq: CursorRequest, runtime: $Util.RuntimeOptions): Promise<CursorResponse>;
14921
+ /**
14922
+ * ### [](#)Prerequisites
14923
+ * Hybrid Cloud Monitoring is activated. For more information, see [Activate Hybrid Cloud Monitoring](~~250773~~).
14924
+ * ### [](#)Background information
14925
+ * You can call this operation to obtain the Cursor information and then call the [BatchExport](~~2329847~~) operation to export the monitoring data.
14926
+ * ### [](#)Description
14927
+ * This topic provides an example on how to define the monitoring data of a specified metric for a specified cloud service. In this example, the namespace of the cloud service is set to `acs_ecs_dashboard`, the metric is set to `cpu_idle`, the start time is set to `1641627000000`, and the end time is set to `1641645000000`. The number of idle CPU cores on your Elastic Compute Service (ECS) instances is measured every 60 seconds from 15:30:00, January 8, 2022 to 20:30:00, January 8, 2022. The `Cursor` information is returned.
14928
+ *
14929
+ * @param request CursorRequest
14930
+ * @return CursorResponse
14931
+ */
14441
14932
  cursor(request: CursorRequest): Promise<CursorResponse>;
14442
14933
  deleteContactWithOptions(request: DeleteContactRequest, runtime: $Util.RuntimeOptions): Promise<DeleteContactResponse>;
14443
14934
  deleteContact(request: DeleteContactRequest): Promise<DeleteContactResponse>;
@@ -14479,9 +14970,7 @@ export default class Client extends OpenApi {
14479
14970
  */
14480
14971
  deleteHybridMonitorNamespace(request: DeleteHybridMonitorNamespaceRequest): Promise<DeleteHybridMonitorNamespaceResponse>;
14481
14972
  /**
14482
- * Indicates whether the call is successful. Valid values:
14483
- * * true: The call is successful.
14484
- * * false: The call fails.
14973
+ * This topic provides an example on how to delete a Logstore group named `Logstore_test`. The response shows that the Logstore group is deleted.
14485
14974
  *
14486
14975
  * @param request DeleteHybridMonitorSLSGroupRequest
14487
14976
  * @param runtime runtime options for this request RuntimeOptions
@@ -14489,18 +14978,14 @@ export default class Client extends OpenApi {
14489
14978
  */
14490
14979
  deleteHybridMonitorSLSGroupWithOptions(request: DeleteHybridMonitorSLSGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteHybridMonitorSLSGroupResponse>;
14491
14980
  /**
14492
- * Indicates whether the call is successful. Valid values:
14493
- * * true: The call is successful.
14494
- * * false: The call fails.
14981
+ * This topic provides an example on how to delete a Logstore group named `Logstore_test`. The response shows that the Logstore group is deleted.
14495
14982
  *
14496
14983
  * @param request DeleteHybridMonitorSLSGroupRequest
14497
14984
  * @return DeleteHybridMonitorSLSGroupResponse
14498
14985
  */
14499
14986
  deleteHybridMonitorSLSGroup(request: DeleteHybridMonitorSLSGroupRequest): Promise<DeleteHybridMonitorSLSGroupResponse>;
14500
14987
  /**
14501
- * Indicates whether the call was successful. Valid values:
14502
- * * true: The call was successful.
14503
- * * false: The call failed.
14988
+ * This topic provides an example on how to delete a metric import task whose ID is `36****`. The returned result indicates that the metric import task is deleted.
14504
14989
  *
14505
14990
  * @param request DeleteHybridMonitorTaskRequest
14506
14991
  * @param runtime runtime options for this request RuntimeOptions
@@ -14508,9 +14993,7 @@ export default class Client extends OpenApi {
14508
14993
  */
14509
14994
  deleteHybridMonitorTaskWithOptions(request: DeleteHybridMonitorTaskRequest, runtime: $Util.RuntimeOptions): Promise<DeleteHybridMonitorTaskResponse>;
14510
14995
  /**
14511
- * Indicates whether the call was successful. Valid values:
14512
- * * true: The call was successful.
14513
- * * false: The call failed.
14996
+ * This topic provides an example on how to delete a metric import task whose ID is `36****`. The returned result indicates that the metric import task is deleted.
14514
14997
  *
14515
14998
  * @param request DeleteHybridMonitorTaskRequest
14516
14999
  * @return DeleteHybridMonitorTaskResponse
@@ -14575,7 +15058,7 @@ export default class Client extends OpenApi {
14575
15058
  */
14576
15059
  describeAlertLogCount(request: DescribeAlertLogCountRequest): Promise<DescribeAlertLogCountResponse>;
14577
15060
  /**
14578
- * The operation that you want to perform. Set the value to DescribeAlertLogHistogram.
15061
+ * This topic provides an example on how to query the number of alert logs for Elastic Compute Service (ECS) based on the `product` dimension.
14579
15062
  *
14580
15063
  * @param request DescribeAlertLogHistogramRequest
14581
15064
  * @param runtime runtime options for this request RuntimeOptions
@@ -14583,7 +15066,7 @@ export default class Client extends OpenApi {
14583
15066
  */
14584
15067
  describeAlertLogHistogramWithOptions(request: DescribeAlertLogHistogramRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAlertLogHistogramResponse>;
14585
15068
  /**
14586
- * The operation that you want to perform. Set the value to DescribeAlertLogHistogram.
15069
+ * This topic provides an example on how to query the number of alert logs for Elastic Compute Service (ECS) based on the `product` dimension.
14587
15070
  *
14588
15071
  * @param request DescribeAlertLogHistogramRequest
14589
15072
  * @return DescribeAlertLogHistogramResponse
@@ -14670,8 +15153,7 @@ export default class Client extends OpenApi {
14670
15153
  */
14671
15154
  describeDynamicTagRuleList(request: DescribeDynamicTagRuleListRequest): Promise<DescribeDynamicTagRuleListResponse>;
14672
15155
  /**
14673
- * The name of the event-triggered alert rule.
14674
- * For information about how to obtain the name of an event-triggered alert rule, see [DescribeEventRuleList](~~114996~~).
15156
+ * This topic provides an example to show how to query the details of an event-triggered alert rule named `testRule`.
14675
15157
  *
14676
15158
  * @param request DescribeEventRuleAttributeRequest
14677
15159
  * @param runtime runtime options for this request RuntimeOptions
@@ -14679,8 +15161,7 @@ export default class Client extends OpenApi {
14679
15161
  */
14680
15162
  describeEventRuleAttributeWithOptions(request: DescribeEventRuleAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEventRuleAttributeResponse>;
14681
15163
  /**
14682
- * The name of the event-triggered alert rule.
14683
- * For information about how to obtain the name of an event-triggered alert rule, see [DescribeEventRuleList](~~114996~~).
15164
+ * This topic provides an example to show how to query the details of an event-triggered alert rule named `testRule`.
14684
15165
  *
14685
15166
  * @param request DescribeEventRuleAttributeRequest
14686
15167
  * @return DescribeEventRuleAttributeResponse
@@ -14780,9 +15261,7 @@ export default class Client extends OpenApi {
14780
15261
  */
14781
15262
  describeHybridMonitorNamespaceList(request: DescribeHybridMonitorNamespaceListRequest): Promise<DescribeHybridMonitorNamespaceListResponse>;
14782
15263
  /**
14783
- * Indicates whether the call is successful. Valid values:
14784
- * * true: The call is successful.
14785
- * * false: The call fails.
15264
+ * In this example, all Logstore groups within the current account are queried. The response shows that the current account has two Logstore groups: `Logstore_test` and `Logstore_aliyun`.
14786
15265
  *
14787
15266
  * @param request DescribeHybridMonitorSLSGroupRequest
14788
15267
  * @param runtime runtime options for this request RuntimeOptions
@@ -14790,18 +15269,14 @@ export default class Client extends OpenApi {
14790
15269
  */
14791
15270
  describeHybridMonitorSLSGroupWithOptions(request: DescribeHybridMonitorSLSGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHybridMonitorSLSGroupResponse>;
14792
15271
  /**
14793
- * Indicates whether the call is successful. Valid values:
14794
- * * true: The call is successful.
14795
- * * false: The call fails.
15272
+ * In this example, all Logstore groups within the current account are queried. The response shows that the current account has two Logstore groups: `Logstore_test` and `Logstore_aliyun`.
14796
15273
  *
14797
15274
  * @param request DescribeHybridMonitorSLSGroupRequest
14798
15275
  * @return DescribeHybridMonitorSLSGroupResponse
14799
15276
  */
14800
15277
  describeHybridMonitorSLSGroup(request: DescribeHybridMonitorSLSGroupRequest): Promise<DescribeHybridMonitorSLSGroupResponse>;
14801
15278
  /**
14802
- * Indicates whether the call was successful. Valid values:
14803
- * * true: The call was successful.
14804
- * * false: The call failed.
15279
+ * This topic provides an example on how to query all metric import tasks that belong to the current Alibaba Cloud account. The returned result indicates that the current account has only one metric import task. The metric import task is named `aliyun_task`.
14805
15280
  *
14806
15281
  * @param request DescribeHybridMonitorTaskListRequest
14807
15282
  * @param runtime runtime options for this request RuntimeOptions
@@ -14809,9 +15284,7 @@ export default class Client extends OpenApi {
14809
15284
  */
14810
15285
  describeHybridMonitorTaskListWithOptions(request: DescribeHybridMonitorTaskListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHybridMonitorTaskListResponse>;
14811
15286
  /**
14812
- * Indicates whether the call was successful. Valid values:
14813
- * * true: The call was successful.
14814
- * * false: The call failed.
15287
+ * This topic provides an example on how to query all metric import tasks that belong to the current Alibaba Cloud account. The returned result indicates that the current account has only one metric import task. The metric import task is named `aliyun_task`.
14815
15288
  *
14816
15289
  * @param request DescribeHybridMonitorTaskListRequest
14817
15290
  * @return DescribeHybridMonitorTaskListResponse
@@ -14847,9 +15320,15 @@ export default class Client extends OpenApi {
14847
15320
  */
14848
15321
  describeMetricData(request: DescribeMetricDataRequest): Promise<DescribeMetricDataResponse>;
14849
15322
  /**
14850
- * The number of entries to return on each page.
14851
- * Default value: 1000. This value indicates that a maximum of 1,000 entries of monitoring data can be returned on each page.
14852
- * > The maximum value of the Length parameter in a request is 1440.
15323
+ * ### [](#)Limits
15324
+ * Each API operation can be called up to 50 times per second. An Alibaba Cloud account and the RAM users within the account share the quota.
15325
+ * ### [](#)Precautions
15326
+ * The storage duration of the monitoring data of each cloud service is related to the `Period` parameter (statistical period). A larger value of the `Period` parameter indicates that the monitoring data is distributed in a larger time range and the storage duration of the monitoring data is longer. The following list describes the specific relationships:
15327
+ * * If the value of the `Period` parameter is less than 60 seconds, the storage duration is seven days.
15328
+ * * If the value of the `Period` parameter is 60 seconds, the storage duration is 31 days.
15329
+ * * If the value of the `Period` parameter is 300 seconds, the storage duration is 91 days.
15330
+ * ### [](#)Description
15331
+ * This topic provides an example on how to query the latest monitoring data of the `CPUUtilization` metric for Elastic Compute Service (ECS). The namespace of ECS is `acs_ecs_dashboard`. The returned result indicates that the monitoring data for the instance `i-abcdefgh12****` of the account `123456789876****` is queried at an interval of 60 seconds. The maximum, minimum, and average values of the metric are 100, 93.1, and 99.52.
14853
15332
  *
14854
15333
  * @param request DescribeMetricLastRequest
14855
15334
  * @param runtime runtime options for this request RuntimeOptions
@@ -14857,9 +15336,15 @@ export default class Client extends OpenApi {
14857
15336
  */
14858
15337
  describeMetricLastWithOptions(request: DescribeMetricLastRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMetricLastResponse>;
14859
15338
  /**
14860
- * The number of entries to return on each page.
14861
- * Default value: 1000. This value indicates that a maximum of 1,000 entries of monitoring data can be returned on each page.
14862
- * > The maximum value of the Length parameter in a request is 1440.
15339
+ * ### [](#)Limits
15340
+ * Each API operation can be called up to 50 times per second. An Alibaba Cloud account and the RAM users within the account share the quota.
15341
+ * ### [](#)Precautions
15342
+ * The storage duration of the monitoring data of each cloud service is related to the `Period` parameter (statistical period). A larger value of the `Period` parameter indicates that the monitoring data is distributed in a larger time range and the storage duration of the monitoring data is longer. The following list describes the specific relationships:
15343
+ * * If the value of the `Period` parameter is less than 60 seconds, the storage duration is seven days.
15344
+ * * If the value of the `Period` parameter is 60 seconds, the storage duration is 31 days.
15345
+ * * If the value of the `Period` parameter is 300 seconds, the storage duration is 91 days.
15346
+ * ### [](#)Description
15347
+ * This topic provides an example on how to query the latest monitoring data of the `CPUUtilization` metric for Elastic Compute Service (ECS). The namespace of ECS is `acs_ecs_dashboard`. The returned result indicates that the monitoring data for the instance `i-abcdefgh12****` of the account `123456789876****` is queried at an interval of 60 seconds. The maximum, minimum, and average values of the metric are 100, 93.1, and 99.52.
14863
15348
  *
14864
15349
  * @param request DescribeMetricLastRequest
14865
15350
  * @return DescribeMetricLastResponse
@@ -14949,8 +15434,7 @@ export default class Client extends OpenApi {
14949
15434
  */
14950
15435
  describeMetricRuleTemplateAttribute(request: DescribeMetricRuleTemplateAttributeRequest): Promise<DescribeMetricRuleTemplateAttributeResponse>;
14951
15436
  /**
14952
- * The HTTP status code.
14953
- * > The status code 200 indicates that the call was successful.
15437
+ * This topic provides an example on how to query alert templates. In this example, the following alert templates are returned in the response: `ECS_Template1` and `ECS_Template2`.
14954
15438
  *
14955
15439
  * @param request DescribeMetricRuleTemplateListRequest
14956
15440
  * @param runtime runtime options for this request RuntimeOptions
@@ -14958,17 +15442,22 @@ export default class Client extends OpenApi {
14958
15442
  */
14959
15443
  describeMetricRuleTemplateListWithOptions(request: DescribeMetricRuleTemplateListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMetricRuleTemplateListResponse>;
14960
15444
  /**
14961
- * The HTTP status code.
14962
- * > The status code 200 indicates that the call was successful.
15445
+ * This topic provides an example on how to query alert templates. In this example, the following alert templates are returned in the response: `ECS_Template1` and `ECS_Template2`.
14963
15446
  *
14964
15447
  * @param request DescribeMetricRuleTemplateListRequest
14965
15448
  * @return DescribeMetricRuleTemplateListResponse
14966
15449
  */
14967
15450
  describeMetricRuleTemplateList(request: DescribeMetricRuleTemplateListRequest): Promise<DescribeMetricRuleTemplateListResponse>;
14968
15451
  /**
14969
- * The order in which data is sorted. Valid values:
14970
- * * True: sorts data in ascending order.
14971
- * * False (default value): sorts data in descending order.
15452
+ * ### [](#)Limits
15453
+ * Each API operation can be called up to 10 times per second. An Alibaba Cloud account and the RAM users within the account share the quota.
15454
+ * ### [](#)Precautions
15455
+ * The storage duration of the monitoring data of each cloud service is related to the `Period` parameter (statistical period). A larger value of the `Period` parameter indicates that the monitoring data is distributed in a larger time range and the storage duration of the monitoring data is longer. The following list describes the specific relationships:
15456
+ * * If the value of the `Period` parameter is less than 60 seconds, the storage duration is seven days.
15457
+ * * If the value of the `Period` parameter is 60 seconds, the storage duration is 31 days.
15458
+ * * If the value of the `Period` parameter is 300 seconds, the storage duration is 91 days.
15459
+ * ### [](#)Description
15460
+ * This topic provides an example to show how to query the monitoring data of the `cpu_idle` metric in the last 60 seconds for Elastic Compute Service (ECS). The namespace of ECS is `acs_ecs_dashboard`. The monitoring data is sorted in the descending order based on the `Average` field.
14972
15461
  *
14973
15462
  * @param request DescribeMetricTopRequest
14974
15463
  * @param runtime runtime options for this request RuntimeOptions
@@ -14976,9 +15465,15 @@ export default class Client extends OpenApi {
14976
15465
  */
14977
15466
  describeMetricTopWithOptions(request: DescribeMetricTopRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMetricTopResponse>;
14978
15467
  /**
14979
- * The order in which data is sorted. Valid values:
14980
- * * True: sorts data in ascending order.
14981
- * * False (default value): sorts data in descending order.
15468
+ * ### [](#)Limits
15469
+ * Each API operation can be called up to 10 times per second. An Alibaba Cloud account and the RAM users within the account share the quota.
15470
+ * ### [](#)Precautions
15471
+ * The storage duration of the monitoring data of each cloud service is related to the `Period` parameter (statistical period). A larger value of the `Period` parameter indicates that the monitoring data is distributed in a larger time range and the storage duration of the monitoring data is longer. The following list describes the specific relationships:
15472
+ * * If the value of the `Period` parameter is less than 60 seconds, the storage duration is seven days.
15473
+ * * If the value of the `Period` parameter is 60 seconds, the storage duration is 31 days.
15474
+ * * If the value of the `Period` parameter is 300 seconds, the storage duration is 91 days.
15475
+ * ### [](#)Description
15476
+ * This topic provides an example to show how to query the monitoring data of the `cpu_idle` metric in the last 60 seconds for Elastic Compute Service (ECS). The namespace of ECS is `acs_ecs_dashboard`. The monitoring data is sorted in the descending order based on the `Average` field.
14982
15477
  *
14983
15478
  * @param request DescribeMetricTopRequest
14984
15479
  * @return DescribeMetricTopResponse
@@ -15033,12 +15528,7 @@ export default class Client extends OpenApi {
15033
15528
  */
15034
15529
  describeMonitoringAgentProcesses(request: DescribeMonitoringAgentProcessesRequest): Promise<DescribeMonitoringAgentProcessesResponse>;
15035
15530
  /**
15036
- * The details of the execution error. Valid values:
15037
- * * `Command.ErrorCode.Fail.Downlaod.REGIN_ID`: Failed to obtain the region ID.
15038
- * * `Command.ErrorCode.Fail.Downlaod.SYSAK`: Failed to download the .rpm package of System Analyse Kit (SysAK).
15039
- * * `Command.ErrorCode.Fail.Downlaod.CMON_FILE`: Failed to download the CMON file.
15040
- * * `Command.ErrorCode.Fail.Downlaod.BTF`: Failed to start SysAK because the BTF file is not found.
15041
- * * `Command.ErrorCode.Fail.Start.SYSAK`: Failed to start SysAK due to an unknown error.
15531
+ * This topic describes how to query the status of the CloudMonitor agent that is installed on the `i-hp3dunahluwajv6f****` instance. The result indicates that the CloudMonitor agent is in the `running` state.
15042
15532
  *
15043
15533
  * @param request DescribeMonitoringAgentStatusesRequest
15044
15534
  * @param runtime runtime options for this request RuntimeOptions
@@ -15046,12 +15536,7 @@ export default class Client extends OpenApi {
15046
15536
  */
15047
15537
  describeMonitoringAgentStatusesWithOptions(request: DescribeMonitoringAgentStatusesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMonitoringAgentStatusesResponse>;
15048
15538
  /**
15049
- * The details of the execution error. Valid values:
15050
- * * `Command.ErrorCode.Fail.Downlaod.REGIN_ID`: Failed to obtain the region ID.
15051
- * * `Command.ErrorCode.Fail.Downlaod.SYSAK`: Failed to download the .rpm package of System Analyse Kit (SysAK).
15052
- * * `Command.ErrorCode.Fail.Downlaod.CMON_FILE`: Failed to download the CMON file.
15053
- * * `Command.ErrorCode.Fail.Downlaod.BTF`: Failed to start SysAK because the BTF file is not found.
15054
- * * `Command.ErrorCode.Fail.Start.SYSAK`: Failed to start SysAK due to an unknown error.
15539
+ * This topic describes how to query the status of the CloudMonitor agent that is installed on the `i-hp3dunahluwajv6f****` instance. The result indicates that the CloudMonitor agent is in the `running` state.
15055
15540
  *
15056
15541
  * @param request DescribeMonitoringAgentStatusesRequest
15057
15542
  * @return DescribeMonitoringAgentStatusesResponse
@@ -15139,7 +15624,7 @@ export default class Client extends OpenApi {
15139
15624
  */
15140
15625
  describeSiteMonitorList(request: DescribeSiteMonitorListRequest): Promise<DescribeSiteMonitorListResponse>;
15141
15626
  /**
15142
- * You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring. For more information, see [Billing of Network Analysis and Monitoring](~~341649~~).
15627
+ * You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring.
15143
15628
  * This topic provides an example to show how to query the logs of an instant test task whose ID is `afa5c3ce-f944-4363-9edb-ce919a29****`.
15144
15629
  *
15145
15630
  * @param request DescribeSiteMonitorLogRequest
@@ -15148,7 +15633,7 @@ export default class Client extends OpenApi {
15148
15633
  */
15149
15634
  describeSiteMonitorLogWithOptions(request: DescribeSiteMonitorLogRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSiteMonitorLogResponse>;
15150
15635
  /**
15151
- * You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring. For more information, see [Billing of Network Analysis and Monitoring](~~341649~~).
15636
+ * You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring.
15152
15637
  * This topic provides an example to show how to query the logs of an instant test task whose ID is `afa5c3ce-f944-4363-9edb-ce919a29****`.
15153
15638
  *
15154
15639
  * @param request DescribeSiteMonitorLogRequest
@@ -15243,9 +15728,7 @@ export default class Client extends OpenApi {
15243
15728
  modifyGroupMonitoringAgentProcessWithOptions(request: ModifyGroupMonitoringAgentProcessRequest, runtime: $Util.RuntimeOptions): Promise<ModifyGroupMonitoringAgentProcessResponse>;
15244
15729
  modifyGroupMonitoringAgentProcess(request: ModifyGroupMonitoringAgentProcessRequest): Promise<ModifyGroupMonitoringAgentProcessResponse>;
15245
15730
  /**
15246
- * Indicates whether the call was successful. Valid values:
15247
- * * true: The call was successful.
15248
- * * false: The call failed.
15731
+ * This topic provides an example on how to change the name of an availability monitoring task named `12345` in an application group named `123456` to `task2`.
15249
15732
  *
15250
15733
  * @param request ModifyHostAvailabilityRequest
15251
15734
  * @param runtime runtime options for this request RuntimeOptions
@@ -15253,9 +15736,7 @@ export default class Client extends OpenApi {
15253
15736
  */
15254
15737
  modifyHostAvailabilityWithOptions(request: ModifyHostAvailabilityRequest, runtime: $Util.RuntimeOptions): Promise<ModifyHostAvailabilityResponse>;
15255
15738
  /**
15256
- * Indicates whether the call was successful. Valid values:
15257
- * * true: The call was successful.
15258
- * * false: The call failed.
15739
+ * This topic provides an example on how to change the name of an availability monitoring task named `12345` in an application group named `123456` to `task2`.
15259
15740
  *
15260
15741
  * @param request ModifyHostAvailabilityRequest
15261
15742
  * @return ModifyHostAvailabilityResponse
@@ -15313,7 +15794,7 @@ export default class Client extends OpenApi {
15313
15794
  */
15314
15795
  modifyHybridMonitorSLSGroup(request: ModifyHybridMonitorSLSGroupRequest): Promise<ModifyHybridMonitorSLSGroupResponse>;
15315
15796
  /**
15316
- * The alias of the extended field that specifies the result of basic operations performed on aggregation results.
15797
+ * This topic provides an example on how to change the collection period of a metric import task whose ID is `36****` to `15` seconds. The task is used to monitor the logs that are imported from Log Service. The returned result indicates that the metric is modified.
15317
15798
  *
15318
15799
  * @param request ModifyHybridMonitorTaskRequest
15319
15800
  * @param runtime runtime options for this request RuntimeOptions
@@ -15321,7 +15802,7 @@ export default class Client extends OpenApi {
15321
15802
  */
15322
15803
  modifyHybridMonitorTaskWithOptions(request: ModifyHybridMonitorTaskRequest, runtime: $Util.RuntimeOptions): Promise<ModifyHybridMonitorTaskResponse>;
15323
15804
  /**
15324
- * The alias of the extended field that specifies the result of basic operations performed on aggregation results.
15805
+ * This topic provides an example on how to change the collection period of a metric import task whose ID is `36****` to `15` seconds. The task is used to monitor the logs that are imported from Log Service. The returned result indicates that the metric is modified.
15325
15806
  *
15326
15807
  * @param request ModifyHybridMonitorTaskRequest
15327
15808
  * @return ModifyHybridMonitorTaskResponse
@@ -15488,9 +15969,7 @@ export default class Client extends OpenApi {
15488
15969
  putExporterRuleWithOptions(request: PutExporterRuleRequest, runtime: $Util.RuntimeOptions): Promise<PutExporterRuleResponse>;
15489
15970
  putExporterRule(request: PutExporterRuleRequest): Promise<PutExporterRuleResponse>;
15490
15971
  /**
15491
- * Indicates whether the call was successful. Valid values:
15492
- * * true: The call was successful.
15493
- * * false: The call failed.
15972
+ * This topic provides an example on how to create an alert rule for the `cpu_total` metric of Elastic Compute Service (ECS) in the `17285****` application group. The ID of the alert rule is `123456`. The name of the alert rule is `Rule_test`. The alert level is `Critical`. The statistical method is `Average`. The alert threshold comparator is `GreaterThanOrEqualToThreshold`. The alert threshold is `90`. The number of alert retries is `3`. The returned result shows that the alert rule is created and the alert rule ID is `123456`.
15494
15973
  *
15495
15974
  * @param request PutGroupMetricRuleRequest
15496
15975
  * @param runtime runtime options for this request RuntimeOptions
@@ -15498,18 +15977,19 @@ export default class Client extends OpenApi {
15498
15977
  */
15499
15978
  putGroupMetricRuleWithOptions(request: PutGroupMetricRuleRequest, runtime: $Util.RuntimeOptions): Promise<PutGroupMetricRuleResponse>;
15500
15979
  /**
15501
- * Indicates whether the call was successful. Valid values:
15502
- * * true: The call was successful.
15503
- * * false: The call failed.
15980
+ * This topic provides an example on how to create an alert rule for the `cpu_total` metric of Elastic Compute Service (ECS) in the `17285****` application group. The ID of the alert rule is `123456`. The name of the alert rule is `Rule_test`. The alert level is `Critical`. The statistical method is `Average`. The alert threshold comparator is `GreaterThanOrEqualToThreshold`. The alert threshold is `90`. The number of alert retries is `3`. The returned result shows that the alert rule is created and the alert rule ID is `123456`.
15504
15981
  *
15505
15982
  * @param request PutGroupMetricRuleRequest
15506
15983
  * @return PutGroupMetricRuleResponse
15507
15984
  */
15508
15985
  putGroupMetricRule(request: PutGroupMetricRuleRequest): Promise<PutGroupMetricRuleResponse>;
15509
15986
  /**
15510
- * The tag value of the metric.
15511
- * Valid values of N: 1 to 100.
15512
- * > You must specify a key and a value for a tag at the same time.
15987
+ * # [](#)Prerequisites
15988
+ * Hybrid Cloud Monitoring is activated. For more information, see [Activate Hybrid Cloud Monitoring](~~250773~~).
15989
+ * # [](#)Limits
15990
+ * The size of the monitoring data that you import at a time must be less than or equal to 1 MB.
15991
+ * # [](#)Description
15992
+ * This topic provides an example on how to import the monitoring data of the `CPU_Usage` metric to the `default-aliyun` namespace of Hybrid Cloud Monitoring.
15513
15993
  *
15514
15994
  * @param request PutHybridMonitorMetricDataRequest
15515
15995
  * @param runtime runtime options for this request RuntimeOptions
@@ -15517,9 +15997,12 @@ export default class Client extends OpenApi {
15517
15997
  */
15518
15998
  putHybridMonitorMetricDataWithOptions(request: PutHybridMonitorMetricDataRequest, runtime: $Util.RuntimeOptions): Promise<PutHybridMonitorMetricDataResponse>;
15519
15999
  /**
15520
- * The tag value of the metric.
15521
- * Valid values of N: 1 to 100.
15522
- * > You must specify a key and a value for a tag at the same time.
16000
+ * # [](#)Prerequisites
16001
+ * Hybrid Cloud Monitoring is activated. For more information, see [Activate Hybrid Cloud Monitoring](~~250773~~).
16002
+ * # [](#)Limits
16003
+ * The size of the monitoring data that you import at a time must be less than or equal to 1 MB.
16004
+ * # [](#)Description
16005
+ * This topic provides an example on how to import the monitoring data of the `CPU_Usage` metric to the `default-aliyun` namespace of Hybrid Cloud Monitoring.
15523
16006
  *
15524
16007
  * @param request PutHybridMonitorMetricDataRequest
15525
16008
  * @return PutHybridMonitorMetricDataResponse
@@ -15564,8 +16047,7 @@ export default class Client extends OpenApi {
15564
16047
  putMonitoringConfigWithOptions(request: PutMonitoringConfigRequest, runtime: $Util.RuntimeOptions): Promise<PutMonitoringConfigResponse>;
15565
16048
  putMonitoringConfig(request: PutMonitoringConfigRequest): Promise<PutMonitoringConfigResponse>;
15566
16049
  /**
15567
- * The mute period during which new alerts are not sent even if the trigger conditions are met. Unit: seconds. Default value: 86400.
15568
- * > If an alert is not cleared within the mute period, a new alert notification is sent when the mute period ends.
16050
+ * This topic provides an example to show 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 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`.
15569
16051
  *
15570
16052
  * @param tmpReq PutResourceMetricRuleRequest
15571
16053
  * @param runtime runtime options for this request RuntimeOptions
@@ -15573,8 +16055,7 @@ export default class Client extends OpenApi {
15573
16055
  */
15574
16056
  putResourceMetricRuleWithOptions(tmpReq: PutResourceMetricRuleRequest, runtime: $Util.RuntimeOptions): Promise<PutResourceMetricRuleResponse>;
15575
16057
  /**
15576
- * The mute period during which new alerts are not sent even if the trigger conditions are met. Unit: seconds. Default value: 86400.
15577
- * > If an alert is not cleared within the mute period, a new alert notification is sent when the mute period ends.
16058
+ * This topic provides an example to show 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 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`.
15578
16059
  *
15579
16060
  * @param request PutResourceMetricRuleRequest
15580
16061
  * @return PutResourceMetricRuleResponse