@alicloud/cms20190101 2.0.5 → 2.0.7
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 +163 -4
- package/dist/client.js +245 -4
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +308 -4
package/dist/client.d.ts
CHANGED
|
@@ -1460,6 +1460,7 @@ export declare class CreateMonitoringAgentProcessResponse extends $tea.Model {
|
|
|
1460
1460
|
export declare class CreateSiteMonitorRequest extends $tea.Model {
|
|
1461
1461
|
address?: string;
|
|
1462
1462
|
alertIds?: string;
|
|
1463
|
+
customSchedule?: string;
|
|
1463
1464
|
interval?: string;
|
|
1464
1465
|
ispCities?: string;
|
|
1465
1466
|
optionsJson?: string;
|
|
@@ -5616,7 +5617,10 @@ export declare class DescribeSiteMonitorListResponse extends $tea.Model {
|
|
|
5616
5617
|
});
|
|
5617
5618
|
}
|
|
5618
5619
|
export declare class DescribeSiteMonitorLogRequest extends $tea.Model {
|
|
5620
|
+
browser?: string;
|
|
5621
|
+
browserInfo?: string;
|
|
5619
5622
|
city?: string;
|
|
5623
|
+
device?: string;
|
|
5620
5624
|
endTime?: string;
|
|
5621
5625
|
filter?: string;
|
|
5622
5626
|
isp?: string;
|
|
@@ -7120,6 +7124,7 @@ export declare class ModifyMonitorGroupInstancesResponse extends $tea.Model {
|
|
|
7120
7124
|
export declare class ModifySiteMonitorRequest extends $tea.Model {
|
|
7121
7125
|
address?: string;
|
|
7122
7126
|
alertIds?: string;
|
|
7127
|
+
customSchedule?: string;
|
|
7123
7128
|
interval?: string;
|
|
7124
7129
|
intervalUnit?: string;
|
|
7125
7130
|
ispCities?: string;
|
|
@@ -8410,6 +8415,7 @@ export declare class NotificationStrategyGroupingSetting extends $tea.Model {
|
|
|
8410
8415
|
});
|
|
8411
8416
|
}
|
|
8412
8417
|
export declare class NotificationStrategyPushingSetting extends $tea.Model {
|
|
8418
|
+
pushingDataFormat?: string;
|
|
8413
8419
|
range?: string;
|
|
8414
8420
|
targetUuids?: string[];
|
|
8415
8421
|
templateUuid?: string;
|
|
@@ -12415,6 +12421,33 @@ export declare class DescribeSiteMonitorAttributeResponseBodyMetricRules extends
|
|
|
12415
12421
|
[key: string]: any;
|
|
12416
12422
|
});
|
|
12417
12423
|
}
|
|
12424
|
+
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsCustomScheduleDays extends $tea.Model {
|
|
12425
|
+
days?: number[];
|
|
12426
|
+
static names(): {
|
|
12427
|
+
[key: string]: string;
|
|
12428
|
+
};
|
|
12429
|
+
static types(): {
|
|
12430
|
+
[key: string]: any;
|
|
12431
|
+
};
|
|
12432
|
+
constructor(map?: {
|
|
12433
|
+
[key: string]: any;
|
|
12434
|
+
});
|
|
12435
|
+
}
|
|
12436
|
+
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsCustomSchedule extends $tea.Model {
|
|
12437
|
+
days?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsCustomScheduleDays;
|
|
12438
|
+
endHour?: number;
|
|
12439
|
+
startHour?: number;
|
|
12440
|
+
timeZone?: string;
|
|
12441
|
+
static names(): {
|
|
12442
|
+
[key: string]: string;
|
|
12443
|
+
};
|
|
12444
|
+
static types(): {
|
|
12445
|
+
[key: string]: any;
|
|
12446
|
+
};
|
|
12447
|
+
constructor(map?: {
|
|
12448
|
+
[key: string]: any;
|
|
12449
|
+
});
|
|
12450
|
+
}
|
|
12418
12451
|
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsIspCitiesIspCity extends $tea.Model {
|
|
12419
12452
|
city?: string;
|
|
12420
12453
|
cityName?: string;
|
|
@@ -12469,10 +12502,127 @@ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJ
|
|
|
12469
12502
|
[key: string]: any;
|
|
12470
12503
|
});
|
|
12471
12504
|
}
|
|
12505
|
+
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBlockedUrlList extends $tea.Model {
|
|
12506
|
+
blockedUrlList?: string[];
|
|
12507
|
+
static names(): {
|
|
12508
|
+
[key: string]: string;
|
|
12509
|
+
};
|
|
12510
|
+
static types(): {
|
|
12511
|
+
[key: string]: any;
|
|
12512
|
+
};
|
|
12513
|
+
constructor(map?: {
|
|
12514
|
+
[key: string]: any;
|
|
12515
|
+
});
|
|
12516
|
+
}
|
|
12517
|
+
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserHeaders extends $tea.Model {
|
|
12518
|
+
browserHeaders?: {
|
|
12519
|
+
[key: string]: any;
|
|
12520
|
+
}[];
|
|
12521
|
+
static names(): {
|
|
12522
|
+
[key: string]: string;
|
|
12523
|
+
};
|
|
12524
|
+
static types(): {
|
|
12525
|
+
[key: string]: any;
|
|
12526
|
+
};
|
|
12527
|
+
constructor(map?: {
|
|
12528
|
+
[key: string]: any;
|
|
12529
|
+
});
|
|
12530
|
+
}
|
|
12531
|
+
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserHosts extends $tea.Model {
|
|
12532
|
+
browserHosts?: string[];
|
|
12533
|
+
static names(): {
|
|
12534
|
+
[key: string]: string;
|
|
12535
|
+
};
|
|
12536
|
+
static types(): {
|
|
12537
|
+
[key: string]: any;
|
|
12538
|
+
};
|
|
12539
|
+
constructor(map?: {
|
|
12540
|
+
[key: string]: any;
|
|
12541
|
+
});
|
|
12542
|
+
}
|
|
12543
|
+
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserInfoBrowserInfo extends $tea.Model {
|
|
12544
|
+
browser?: string;
|
|
12545
|
+
device?: string;
|
|
12546
|
+
static names(): {
|
|
12547
|
+
[key: string]: string;
|
|
12548
|
+
};
|
|
12549
|
+
static types(): {
|
|
12550
|
+
[key: string]: any;
|
|
12551
|
+
};
|
|
12552
|
+
constructor(map?: {
|
|
12553
|
+
[key: string]: any;
|
|
12554
|
+
});
|
|
12555
|
+
}
|
|
12556
|
+
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserInfo extends $tea.Model {
|
|
12557
|
+
browserInfo?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserInfoBrowserInfo[];
|
|
12558
|
+
static names(): {
|
|
12559
|
+
[key: string]: string;
|
|
12560
|
+
};
|
|
12561
|
+
static types(): {
|
|
12562
|
+
[key: string]: any;
|
|
12563
|
+
};
|
|
12564
|
+
constructor(map?: {
|
|
12565
|
+
[key: string]: any;
|
|
12566
|
+
});
|
|
12567
|
+
}
|
|
12568
|
+
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonExpectExistString extends $tea.Model {
|
|
12569
|
+
expectExistString?: string[];
|
|
12570
|
+
static names(): {
|
|
12571
|
+
[key: string]: string;
|
|
12572
|
+
};
|
|
12573
|
+
static types(): {
|
|
12574
|
+
[key: string]: any;
|
|
12575
|
+
};
|
|
12576
|
+
constructor(map?: {
|
|
12577
|
+
[key: string]: any;
|
|
12578
|
+
});
|
|
12579
|
+
}
|
|
12580
|
+
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonExpectNonExistString extends $tea.Model {
|
|
12581
|
+
expectNonExistString?: string[];
|
|
12582
|
+
static names(): {
|
|
12583
|
+
[key: string]: string;
|
|
12584
|
+
};
|
|
12585
|
+
static types(): {
|
|
12586
|
+
[key: string]: any;
|
|
12587
|
+
};
|
|
12588
|
+
constructor(map?: {
|
|
12589
|
+
[key: string]: any;
|
|
12590
|
+
});
|
|
12591
|
+
}
|
|
12592
|
+
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonTrafficHijackElementBlacklist extends $tea.Model {
|
|
12593
|
+
trafficHijackElementBlacklist?: string[];
|
|
12594
|
+
static names(): {
|
|
12595
|
+
[key: string]: string;
|
|
12596
|
+
};
|
|
12597
|
+
static types(): {
|
|
12598
|
+
[key: string]: any;
|
|
12599
|
+
};
|
|
12600
|
+
constructor(map?: {
|
|
12601
|
+
[key: string]: any;
|
|
12602
|
+
});
|
|
12603
|
+
}
|
|
12604
|
+
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonTrafficHijackElementWhitelist extends $tea.Model {
|
|
12605
|
+
trafficHijackElementWhitelist?: string[];
|
|
12606
|
+
static names(): {
|
|
12607
|
+
[key: string]: string;
|
|
12608
|
+
};
|
|
12609
|
+
static types(): {
|
|
12610
|
+
[key: string]: any;
|
|
12611
|
+
};
|
|
12612
|
+
constructor(map?: {
|
|
12613
|
+
[key: string]: any;
|
|
12614
|
+
});
|
|
12615
|
+
}
|
|
12472
12616
|
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJson extends $tea.Model {
|
|
12473
12617
|
assertions?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonAssertions;
|
|
12474
12618
|
attempts?: number;
|
|
12475
12619
|
authentication?: number;
|
|
12620
|
+
blockedUrlList?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBlockedUrlList;
|
|
12621
|
+
browserHeaders?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserHeaders;
|
|
12622
|
+
browserHosts?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserHosts;
|
|
12623
|
+
browserInfo?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonBrowserInfo;
|
|
12624
|
+
browserInsecure?: boolean;
|
|
12625
|
+
browserTaskVersion?: string;
|
|
12476
12626
|
cookie?: string;
|
|
12477
12627
|
diagnosisMtr?: boolean;
|
|
12478
12628
|
diagnosisPing?: boolean;
|
|
@@ -12480,6 +12630,8 @@ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJ
|
|
|
12480
12630
|
dnsMatchRule?: string;
|
|
12481
12631
|
dnsServer?: string;
|
|
12482
12632
|
dnsType?: string;
|
|
12633
|
+
expectExistString?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonExpectExistString;
|
|
12634
|
+
expectNonExistString?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonExpectNonExistString;
|
|
12483
12635
|
expectValue?: string;
|
|
12484
12636
|
failureRate?: number;
|
|
12485
12637
|
header?: string;
|
|
@@ -12489,6 +12641,8 @@ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJ
|
|
|
12489
12641
|
minTlsVersion?: string;
|
|
12490
12642
|
password?: string;
|
|
12491
12643
|
pingNum?: number;
|
|
12644
|
+
pingPort?: number;
|
|
12645
|
+
pingType?: string;
|
|
12492
12646
|
port?: number;
|
|
12493
12647
|
protocol?: string;
|
|
12494
12648
|
requestContent?: string;
|
|
@@ -12496,7 +12650,11 @@ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJ
|
|
|
12496
12650
|
responseContent?: string;
|
|
12497
12651
|
responseFormat?: string;
|
|
12498
12652
|
retryDelay?: number;
|
|
12653
|
+
strictMode?: boolean;
|
|
12499
12654
|
timeOut?: number;
|
|
12655
|
+
trafficHijackElementBlacklist?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonTrafficHijackElementBlacklist;
|
|
12656
|
+
trafficHijackElementCount?: number;
|
|
12657
|
+
trafficHijackElementWhitelist?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJsonTrafficHijackElementWhitelist;
|
|
12500
12658
|
username?: string;
|
|
12501
12659
|
static names(): {
|
|
12502
12660
|
[key: string]: string;
|
|
@@ -12511,6 +12669,7 @@ export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJ
|
|
|
12511
12669
|
export declare class DescribeSiteMonitorAttributeResponseBodySiteMonitors extends $tea.Model {
|
|
12512
12670
|
address?: string;
|
|
12513
12671
|
agentGroup?: string;
|
|
12672
|
+
customSchedule?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsCustomSchedule;
|
|
12514
12673
|
interval?: string;
|
|
12515
12674
|
ispCities?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsIspCities;
|
|
12516
12675
|
optionJson?: DescribeSiteMonitorAttributeResponseBodySiteMonitorsOptionJson;
|
|
@@ -14283,7 +14442,7 @@ export default class Client extends OpenApi {
|
|
|
14283
14442
|
*/
|
|
14284
14443
|
createHybridMonitorTask(request: CreateHybridMonitorTaskRequest): Promise<CreateHybridMonitorTaskResponse>;
|
|
14285
14444
|
/**
|
|
14286
|
-
* You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring.
|
|
14445
|
+
* You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring.
|
|
14287
14446
|
* 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`.
|
|
14288
14447
|
*
|
|
14289
14448
|
* @param request CreateInstantSiteMonitorRequest
|
|
@@ -14292,7 +14451,7 @@ export default class Client extends OpenApi {
|
|
|
14292
14451
|
*/
|
|
14293
14452
|
createInstantSiteMonitorWithOptions(request: CreateInstantSiteMonitorRequest, runtime: $Util.RuntimeOptions): Promise<CreateInstantSiteMonitorResponse>;
|
|
14294
14453
|
/**
|
|
14295
|
-
* You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring.
|
|
14454
|
+
* You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring.
|
|
14296
14455
|
* 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`.
|
|
14297
14456
|
*
|
|
14298
14457
|
* @param request CreateInstantSiteMonitorRequest
|
|
@@ -15109,7 +15268,7 @@ export default class Client extends OpenApi {
|
|
|
15109
15268
|
*/
|
|
15110
15269
|
describeSiteMonitorList(request: DescribeSiteMonitorListRequest): Promise<DescribeSiteMonitorListResponse>;
|
|
15111
15270
|
/**
|
|
15112
|
-
* You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring.
|
|
15271
|
+
* You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring.
|
|
15113
15272
|
* 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****`.
|
|
15114
15273
|
*
|
|
15115
15274
|
* @param request DescribeSiteMonitorLogRequest
|
|
@@ -15118,7 +15277,7 @@ export default class Client extends OpenApi {
|
|
|
15118
15277
|
*/
|
|
15119
15278
|
describeSiteMonitorLogWithOptions(request: DescribeSiteMonitorLogRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSiteMonitorLogResponse>;
|
|
15120
15279
|
/**
|
|
15121
|
-
* You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring.
|
|
15280
|
+
* You can create an instant test task only by using the Alibaba Cloud account that you used to enable Network Analysis and Monitoring.
|
|
15122
15281
|
* 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****`.
|
|
15123
15282
|
*
|
|
15124
15283
|
* @param request DescribeSiteMonitorLogRequest
|