@alicloud/alidns20150109 4.3.5 → 4.4.0
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 +60 -1
- package/dist/client.js +228 -1
- package/dist/client.js.map +1 -1
- package/dist/models/DescribeCloudGtmGlobalAlertResponseBody.d.ts +5 -0
- package/dist/models/DescribeCloudGtmGlobalAlertResponseBody.js +2 -0
- package/dist/models/DescribeCloudGtmGlobalAlertResponseBody.js.map +1 -1
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewRequest.d.ts +33 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewRequest.js +64 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewRequest.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewResponse.d.ts +19 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewResponse.js +69 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewResponse.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewResponseBody.d.ts +54 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewResponseBody.js +88 -0
- package/dist/models/DescribeInterAuthStatisticsGlobalOverviewResponseBody.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryRequest.d.ts +44 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryRequest.js +70 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryRequest.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryResponse.d.ts +19 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryResponse.js +69 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryResponse.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryResponseBody.d.ts +69 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryResponseBody.js +94 -0
- package/dist/models/DescribeInterAuthStatisticsHistoryResponseBody.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryRequest.d.ts +80 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryRequest.js +84 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryRequest.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryResponse.d.ts +19 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryResponse.js +69 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryResponse.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryResponseBody.d.ts +124 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryResponseBody.js +116 -0
- package/dist/models/DescribeInterAuthStatisticsSummaryResponseBody.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewRequest.d.ts +28 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewRequest.js +62 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewRequest.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewResponse.d.ts +19 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewResponse.js +69 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewResponse.js.map +1 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewResponseBody.d.ts +49 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewResponseBody.js +86 -0
- package/dist/models/DescribeInterAuthStatisticsZoneOverviewResponseBody.js.map +1 -0
- package/dist/models/UpdateCloudGtmGlobalAlertRequest.d.ts +5 -0
- package/dist/models/UpdateCloudGtmGlobalAlertRequest.js +2 -0
- package/dist/models/UpdateCloudGtmGlobalAlertRequest.js.map +1 -1
- package/dist/models/model.d.ts +16 -0
- package/dist/models/model.js +51 -18
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +264 -1
- package/src/models/DescribeCloudGtmGlobalAlertResponseBody.ts +7 -0
- package/src/models/DescribeInterAuthStatisticsGlobalOverviewRequest.ts +52 -0
- package/src/models/DescribeInterAuthStatisticsGlobalOverviewResponse.ts +40 -0
- package/src/models/DescribeInterAuthStatisticsGlobalOverviewResponseBody.ts +88 -0
- package/src/models/DescribeInterAuthStatisticsHistoryRequest.ts +69 -0
- package/src/models/DescribeInterAuthStatisticsHistoryResponse.ts +40 -0
- package/src/models/DescribeInterAuthStatisticsHistoryResponseBody.ts +109 -0
- package/src/models/DescribeInterAuthStatisticsSummaryRequest.ts +119 -0
- package/src/models/DescribeInterAuthStatisticsSummaryResponse.ts +40 -0
- package/src/models/DescribeInterAuthStatisticsSummaryResponseBody.ts +186 -0
- package/src/models/DescribeInterAuthStatisticsZoneOverviewRequest.ts +45 -0
- package/src/models/DescribeInterAuthStatisticsZoneOverviewResponse.ts +40 -0
- package/src/models/DescribeInterAuthStatisticsZoneOverviewResponseBody.ts +81 -0
- package/src/models/UpdateCloudGtmGlobalAlertRequest.ts +7 -0
- package/src/models/model.ts +16 -0
package/src/client.ts
CHANGED
|
@@ -3250,7 +3250,6 @@ export default class Client extends OpenApi {
|
|
|
3250
3250
|
}
|
|
3251
3251
|
|
|
3252
3252
|
/**
|
|
3253
|
-
* @param request - DescribeCloudGtmSystemLinesRequest
|
|
3254
3253
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
3255
3254
|
* @returns DescribeCloudGtmSystemLinesResponse
|
|
3256
3255
|
*/
|
|
@@ -6280,6 +6279,270 @@ export default class Client extends OpenApi {
|
|
|
6280
6279
|
return await this.describeInstanceDomainsWithOptions(request, runtime);
|
|
6281
6280
|
}
|
|
6282
6281
|
|
|
6282
|
+
/**
|
|
6283
|
+
* 公网权威解析统计信息全局总览
|
|
6284
|
+
*
|
|
6285
|
+
* @param request - DescribeInterAuthStatisticsGlobalOverviewRequest
|
|
6286
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
6287
|
+
* @returns DescribeInterAuthStatisticsGlobalOverviewResponse
|
|
6288
|
+
*/
|
|
6289
|
+
async describeInterAuthStatisticsGlobalOverviewWithOptions(request: $_model.DescribeInterAuthStatisticsGlobalOverviewRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeInterAuthStatisticsGlobalOverviewResponse> {
|
|
6290
|
+
request.validate();
|
|
6291
|
+
let query = { };
|
|
6292
|
+
if (!$dara.isNull(request.acceptLanguage)) {
|
|
6293
|
+
query["AcceptLanguage"] = request.acceptLanguage;
|
|
6294
|
+
}
|
|
6295
|
+
|
|
6296
|
+
if (!$dara.isNull(request.clientToken)) {
|
|
6297
|
+
query["ClientToken"] = request.clientToken;
|
|
6298
|
+
}
|
|
6299
|
+
|
|
6300
|
+
if (!$dara.isNull(request.overviewPeriod)) {
|
|
6301
|
+
query["OverviewPeriod"] = request.overviewPeriod;
|
|
6302
|
+
}
|
|
6303
|
+
|
|
6304
|
+
if (!$dara.isNull(request.serverRegion)) {
|
|
6305
|
+
query["ServerRegion"] = request.serverRegion;
|
|
6306
|
+
}
|
|
6307
|
+
|
|
6308
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
6309
|
+
query: OpenApiUtil.query(query),
|
|
6310
|
+
});
|
|
6311
|
+
let params = new $OpenApiUtil.Params({
|
|
6312
|
+
action: "DescribeInterAuthStatisticsGlobalOverview",
|
|
6313
|
+
version: "2015-01-09",
|
|
6314
|
+
protocol: "HTTPS",
|
|
6315
|
+
pathname: "/",
|
|
6316
|
+
method: "POST",
|
|
6317
|
+
authType: "AK",
|
|
6318
|
+
style: "RPC",
|
|
6319
|
+
reqBodyType: "formData",
|
|
6320
|
+
bodyType: "json",
|
|
6321
|
+
});
|
|
6322
|
+
return $dara.cast<$_model.DescribeInterAuthStatisticsGlobalOverviewResponse>(await this.callApi(params, req, runtime), new $_model.DescribeInterAuthStatisticsGlobalOverviewResponse({}));
|
|
6323
|
+
}
|
|
6324
|
+
|
|
6325
|
+
/**
|
|
6326
|
+
* 公网权威解析统计信息全局总览
|
|
6327
|
+
*
|
|
6328
|
+
* @param request - DescribeInterAuthStatisticsGlobalOverviewRequest
|
|
6329
|
+
* @returns DescribeInterAuthStatisticsGlobalOverviewResponse
|
|
6330
|
+
*/
|
|
6331
|
+
async describeInterAuthStatisticsGlobalOverview(request: $_model.DescribeInterAuthStatisticsGlobalOverviewRequest): Promise<$_model.DescribeInterAuthStatisticsGlobalOverviewResponse> {
|
|
6332
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
6333
|
+
return await this.describeInterAuthStatisticsGlobalOverviewWithOptions(request, runtime);
|
|
6334
|
+
}
|
|
6335
|
+
|
|
6336
|
+
/**
|
|
6337
|
+
* 公网权威解析统计信息趋势
|
|
6338
|
+
*
|
|
6339
|
+
* @param request - DescribeInterAuthStatisticsHistoryRequest
|
|
6340
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
6341
|
+
* @returns DescribeInterAuthStatisticsHistoryResponse
|
|
6342
|
+
*/
|
|
6343
|
+
async describeInterAuthStatisticsHistoryWithOptions(request: $_model.DescribeInterAuthStatisticsHistoryRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeInterAuthStatisticsHistoryResponse> {
|
|
6344
|
+
request.validate();
|
|
6345
|
+
let query = { };
|
|
6346
|
+
if (!$dara.isNull(request.domainName)) {
|
|
6347
|
+
query["DomainName"] = request.domainName;
|
|
6348
|
+
}
|
|
6349
|
+
|
|
6350
|
+
if (!$dara.isNull(request.endTimestamp)) {
|
|
6351
|
+
query["EndTimestamp"] = request.endTimestamp;
|
|
6352
|
+
}
|
|
6353
|
+
|
|
6354
|
+
if (!$dara.isNull(request.rcode)) {
|
|
6355
|
+
query["Rcode"] = request.rcode;
|
|
6356
|
+
}
|
|
6357
|
+
|
|
6358
|
+
if (!$dara.isNull(request.serverRegion)) {
|
|
6359
|
+
query["ServerRegion"] = request.serverRegion;
|
|
6360
|
+
}
|
|
6361
|
+
|
|
6362
|
+
if (!$dara.isNull(request.startTimestamp)) {
|
|
6363
|
+
query["StartTimestamp"] = request.startTimestamp;
|
|
6364
|
+
}
|
|
6365
|
+
|
|
6366
|
+
if (!$dara.isNull(request.statisticalType)) {
|
|
6367
|
+
query["StatisticalType"] = request.statisticalType;
|
|
6368
|
+
}
|
|
6369
|
+
|
|
6370
|
+
if (!$dara.isNull(request.zoneName)) {
|
|
6371
|
+
query["ZoneName"] = request.zoneName;
|
|
6372
|
+
}
|
|
6373
|
+
|
|
6374
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
6375
|
+
query: OpenApiUtil.query(query),
|
|
6376
|
+
});
|
|
6377
|
+
let params = new $OpenApiUtil.Params({
|
|
6378
|
+
action: "DescribeInterAuthStatisticsHistory",
|
|
6379
|
+
version: "2015-01-09",
|
|
6380
|
+
protocol: "HTTPS",
|
|
6381
|
+
pathname: "/",
|
|
6382
|
+
method: "POST",
|
|
6383
|
+
authType: "AK",
|
|
6384
|
+
style: "RPC",
|
|
6385
|
+
reqBodyType: "formData",
|
|
6386
|
+
bodyType: "json",
|
|
6387
|
+
});
|
|
6388
|
+
return $dara.cast<$_model.DescribeInterAuthStatisticsHistoryResponse>(await this.callApi(params, req, runtime), new $_model.DescribeInterAuthStatisticsHistoryResponse({}));
|
|
6389
|
+
}
|
|
6390
|
+
|
|
6391
|
+
/**
|
|
6392
|
+
* 公网权威解析统计信息趋势
|
|
6393
|
+
*
|
|
6394
|
+
* @param request - DescribeInterAuthStatisticsHistoryRequest
|
|
6395
|
+
* @returns DescribeInterAuthStatisticsHistoryResponse
|
|
6396
|
+
*/
|
|
6397
|
+
async describeInterAuthStatisticsHistory(request: $_model.DescribeInterAuthStatisticsHistoryRequest): Promise<$_model.DescribeInterAuthStatisticsHistoryResponse> {
|
|
6398
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
6399
|
+
return await this.describeInterAuthStatisticsHistoryWithOptions(request, runtime);
|
|
6400
|
+
}
|
|
6401
|
+
|
|
6402
|
+
/**
|
|
6403
|
+
* 公网权威解析统计信息摘要列表
|
|
6404
|
+
*
|
|
6405
|
+
* @param request - DescribeInterAuthStatisticsSummaryRequest
|
|
6406
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
6407
|
+
* @returns DescribeInterAuthStatisticsSummaryResponse
|
|
6408
|
+
*/
|
|
6409
|
+
async describeInterAuthStatisticsSummaryWithOptions(request: $_model.DescribeInterAuthStatisticsSummaryRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeInterAuthStatisticsSummaryResponse> {
|
|
6410
|
+
request.validate();
|
|
6411
|
+
let query = { };
|
|
6412
|
+
if (!$dara.isNull(request.direction)) {
|
|
6413
|
+
query["Direction"] = request.direction;
|
|
6414
|
+
}
|
|
6415
|
+
|
|
6416
|
+
if (!$dara.isNull(request.domainName)) {
|
|
6417
|
+
query["DomainName"] = request.domainName;
|
|
6418
|
+
}
|
|
6419
|
+
|
|
6420
|
+
if (!$dara.isNull(request.endTimestamp)) {
|
|
6421
|
+
query["EndTimestamp"] = request.endTimestamp;
|
|
6422
|
+
}
|
|
6423
|
+
|
|
6424
|
+
if (!$dara.isNull(request.growType)) {
|
|
6425
|
+
query["GrowType"] = request.growType;
|
|
6426
|
+
}
|
|
6427
|
+
|
|
6428
|
+
if (!$dara.isNull(request.orderBy)) {
|
|
6429
|
+
query["OrderBy"] = request.orderBy;
|
|
6430
|
+
}
|
|
6431
|
+
|
|
6432
|
+
if (!$dara.isNull(request.pageNumber)) {
|
|
6433
|
+
query["PageNumber"] = request.pageNumber;
|
|
6434
|
+
}
|
|
6435
|
+
|
|
6436
|
+
if (!$dara.isNull(request.pageSize)) {
|
|
6437
|
+
query["PageSize"] = request.pageSize;
|
|
6438
|
+
}
|
|
6439
|
+
|
|
6440
|
+
if (!$dara.isNull(request.period)) {
|
|
6441
|
+
query["Period"] = request.period;
|
|
6442
|
+
}
|
|
6443
|
+
|
|
6444
|
+
if (!$dara.isNull(request.rcode)) {
|
|
6445
|
+
query["Rcode"] = request.rcode;
|
|
6446
|
+
}
|
|
6447
|
+
|
|
6448
|
+
if (!$dara.isNull(request.serverRegion)) {
|
|
6449
|
+
query["ServerRegion"] = request.serverRegion;
|
|
6450
|
+
}
|
|
6451
|
+
|
|
6452
|
+
if (!$dara.isNull(request.sourceType)) {
|
|
6453
|
+
query["SourceType"] = request.sourceType;
|
|
6454
|
+
}
|
|
6455
|
+
|
|
6456
|
+
if (!$dara.isNull(request.startTimestamp)) {
|
|
6457
|
+
query["StartTimestamp"] = request.startTimestamp;
|
|
6458
|
+
}
|
|
6459
|
+
|
|
6460
|
+
if (!$dara.isNull(request.statisticalType)) {
|
|
6461
|
+
query["StatisticalType"] = request.statisticalType;
|
|
6462
|
+
}
|
|
6463
|
+
|
|
6464
|
+
if (!$dara.isNull(request.zoneName)) {
|
|
6465
|
+
query["ZoneName"] = request.zoneName;
|
|
6466
|
+
}
|
|
6467
|
+
|
|
6468
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
6469
|
+
query: OpenApiUtil.query(query),
|
|
6470
|
+
});
|
|
6471
|
+
let params = new $OpenApiUtil.Params({
|
|
6472
|
+
action: "DescribeInterAuthStatisticsSummary",
|
|
6473
|
+
version: "2015-01-09",
|
|
6474
|
+
protocol: "HTTPS",
|
|
6475
|
+
pathname: "/",
|
|
6476
|
+
method: "POST",
|
|
6477
|
+
authType: "AK",
|
|
6478
|
+
style: "RPC",
|
|
6479
|
+
reqBodyType: "formData",
|
|
6480
|
+
bodyType: "json",
|
|
6481
|
+
});
|
|
6482
|
+
return $dara.cast<$_model.DescribeInterAuthStatisticsSummaryResponse>(await this.callApi(params, req, runtime), new $_model.DescribeInterAuthStatisticsSummaryResponse({}));
|
|
6483
|
+
}
|
|
6484
|
+
|
|
6485
|
+
/**
|
|
6486
|
+
* 公网权威解析统计信息摘要列表
|
|
6487
|
+
*
|
|
6488
|
+
* @param request - DescribeInterAuthStatisticsSummaryRequest
|
|
6489
|
+
* @returns DescribeInterAuthStatisticsSummaryResponse
|
|
6490
|
+
*/
|
|
6491
|
+
async describeInterAuthStatisticsSummary(request: $_model.DescribeInterAuthStatisticsSummaryRequest): Promise<$_model.DescribeInterAuthStatisticsSummaryResponse> {
|
|
6492
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
6493
|
+
return await this.describeInterAuthStatisticsSummaryWithOptions(request, runtime);
|
|
6494
|
+
}
|
|
6495
|
+
|
|
6496
|
+
/**
|
|
6497
|
+
* 公网权威解析统计信息Zone维度总览
|
|
6498
|
+
*
|
|
6499
|
+
* @param request - DescribeInterAuthStatisticsZoneOverviewRequest
|
|
6500
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
6501
|
+
* @returns DescribeInterAuthStatisticsZoneOverviewResponse
|
|
6502
|
+
*/
|
|
6503
|
+
async describeInterAuthStatisticsZoneOverviewWithOptions(request: $_model.DescribeInterAuthStatisticsZoneOverviewRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DescribeInterAuthStatisticsZoneOverviewResponse> {
|
|
6504
|
+
request.validate();
|
|
6505
|
+
let query = { };
|
|
6506
|
+
if (!$dara.isNull(request.overviewPeriod)) {
|
|
6507
|
+
query["OverviewPeriod"] = request.overviewPeriod;
|
|
6508
|
+
}
|
|
6509
|
+
|
|
6510
|
+
if (!$dara.isNull(request.serverRegion)) {
|
|
6511
|
+
query["ServerRegion"] = request.serverRegion;
|
|
6512
|
+
}
|
|
6513
|
+
|
|
6514
|
+
if (!$dara.isNull(request.zoneName)) {
|
|
6515
|
+
query["ZoneName"] = request.zoneName;
|
|
6516
|
+
}
|
|
6517
|
+
|
|
6518
|
+
let req = new $OpenApiUtil.OpenApiRequest({
|
|
6519
|
+
query: OpenApiUtil.query(query),
|
|
6520
|
+
});
|
|
6521
|
+
let params = new $OpenApiUtil.Params({
|
|
6522
|
+
action: "DescribeInterAuthStatisticsZoneOverview",
|
|
6523
|
+
version: "2015-01-09",
|
|
6524
|
+
protocol: "HTTPS",
|
|
6525
|
+
pathname: "/",
|
|
6526
|
+
method: "POST",
|
|
6527
|
+
authType: "AK",
|
|
6528
|
+
style: "RPC",
|
|
6529
|
+
reqBodyType: "formData",
|
|
6530
|
+
bodyType: "json",
|
|
6531
|
+
});
|
|
6532
|
+
return $dara.cast<$_model.DescribeInterAuthStatisticsZoneOverviewResponse>(await this.callApi(params, req, runtime), new $_model.DescribeInterAuthStatisticsZoneOverviewResponse({}));
|
|
6533
|
+
}
|
|
6534
|
+
|
|
6535
|
+
/**
|
|
6536
|
+
* 公网权威解析统计信息Zone维度总览
|
|
6537
|
+
*
|
|
6538
|
+
* @param request - DescribeInterAuthStatisticsZoneOverviewRequest
|
|
6539
|
+
* @returns DescribeInterAuthStatisticsZoneOverviewResponse
|
|
6540
|
+
*/
|
|
6541
|
+
async describeInterAuthStatisticsZoneOverview(request: $_model.DescribeInterAuthStatisticsZoneOverviewRequest): Promise<$_model.DescribeInterAuthStatisticsZoneOverviewResponse> {
|
|
6542
|
+
let runtime = new $dara.RuntimeOptions({ });
|
|
6543
|
+
return await this.describeInterAuthStatisticsZoneOverviewWithOptions(request, runtime);
|
|
6544
|
+
}
|
|
6545
|
+
|
|
6283
6546
|
/**
|
|
6284
6547
|
* 查询解析日志
|
|
6285
6548
|
*
|
|
@@ -6,6 +6,11 @@ export class DescribeCloudGtmGlobalAlertResponseBodyAlertConfigAlertConfig exten
|
|
|
6
6
|
dingtalkNotice?: boolean;
|
|
7
7
|
emailNotice?: boolean;
|
|
8
8
|
noticeType?: string;
|
|
9
|
+
/**
|
|
10
|
+
* @example
|
|
11
|
+
* 10
|
|
12
|
+
*/
|
|
13
|
+
qpsThreshold?: number;
|
|
9
14
|
smsNotice?: boolean;
|
|
10
15
|
/**
|
|
11
16
|
* @example
|
|
@@ -17,6 +22,7 @@ export class DescribeCloudGtmGlobalAlertResponseBodyAlertConfigAlertConfig exten
|
|
|
17
22
|
dingtalkNotice: 'DingtalkNotice',
|
|
18
23
|
emailNotice: 'EmailNotice',
|
|
19
24
|
noticeType: 'NoticeType',
|
|
25
|
+
qpsThreshold: 'QpsThreshold',
|
|
20
26
|
smsNotice: 'SmsNotice',
|
|
21
27
|
threshold: 'Threshold',
|
|
22
28
|
};
|
|
@@ -27,6 +33,7 @@ export class DescribeCloudGtmGlobalAlertResponseBodyAlertConfigAlertConfig exten
|
|
|
27
33
|
dingtalkNotice: 'boolean',
|
|
28
34
|
emailNotice: 'boolean',
|
|
29
35
|
noticeType: 'string',
|
|
36
|
+
qpsThreshold: 'number',
|
|
30
37
|
smsNotice: 'boolean',
|
|
31
38
|
threshold: 'number',
|
|
32
39
|
};
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DescribeInterAuthStatisticsGlobalOverviewRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* en-US
|
|
9
|
+
*/
|
|
10
|
+
acceptLanguage?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 23445411234395894586....
|
|
14
|
+
*/
|
|
15
|
+
clientToken?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* DAY
|
|
19
|
+
*/
|
|
20
|
+
overviewPeriod?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* cn-beijing
|
|
24
|
+
*/
|
|
25
|
+
serverRegion?: string;
|
|
26
|
+
static names(): { [key: string]: string } {
|
|
27
|
+
return {
|
|
28
|
+
acceptLanguage: 'AcceptLanguage',
|
|
29
|
+
clientToken: 'ClientToken',
|
|
30
|
+
overviewPeriod: 'OverviewPeriod',
|
|
31
|
+
serverRegion: 'ServerRegion',
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
static types(): { [key: string]: any } {
|
|
36
|
+
return {
|
|
37
|
+
acceptLanguage: 'string',
|
|
38
|
+
clientToken: 'string',
|
|
39
|
+
overviewPeriod: 'string',
|
|
40
|
+
serverRegion: 'string',
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
validate() {
|
|
45
|
+
super.validate();
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
constructor(map?: { [key: string]: any }) {
|
|
49
|
+
super(map);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { DescribeInterAuthStatisticsGlobalOverviewResponseBody } from "./DescribeInterAuthStatisticsGlobalOverviewResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class DescribeInterAuthStatisticsGlobalOverviewResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: DescribeInterAuthStatisticsGlobalOverviewResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: DescribeInterAuthStatisticsGlobalOverviewResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DescribeInterAuthStatisticsGlobalOverviewResponseBodyData extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 72
|
|
9
|
+
*/
|
|
10
|
+
avgSuccessRatio?: number;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 75
|
|
14
|
+
*/
|
|
15
|
+
avgSuccessRatioTrend?: number;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 18349
|
|
19
|
+
*/
|
|
20
|
+
totalResolveCount?: number;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* 2341
|
|
24
|
+
*/
|
|
25
|
+
totalResolveCountTrend?: number;
|
|
26
|
+
static names(): { [key: string]: string } {
|
|
27
|
+
return {
|
|
28
|
+
avgSuccessRatio: 'AvgSuccessRatio',
|
|
29
|
+
avgSuccessRatioTrend: 'AvgSuccessRatioTrend',
|
|
30
|
+
totalResolveCount: 'TotalResolveCount',
|
|
31
|
+
totalResolveCountTrend: 'TotalResolveCountTrend',
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
static types(): { [key: string]: any } {
|
|
36
|
+
return {
|
|
37
|
+
avgSuccessRatio: 'number',
|
|
38
|
+
avgSuccessRatioTrend: 'number',
|
|
39
|
+
totalResolveCount: 'number',
|
|
40
|
+
totalResolveCountTrend: 'number',
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
validate() {
|
|
45
|
+
super.validate();
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
constructor(map?: { [key: string]: any }) {
|
|
49
|
+
super(map);
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export class DescribeInterAuthStatisticsGlobalOverviewResponseBody extends $dara.Model {
|
|
54
|
+
data?: DescribeInterAuthStatisticsGlobalOverviewResponseBodyData;
|
|
55
|
+
/**
|
|
56
|
+
* @remarks
|
|
57
|
+
* Id of the request
|
|
58
|
+
*
|
|
59
|
+
* @example
|
|
60
|
+
* 389DFFA3-77A5-4A9E-BF3D-147C6F98A5BA
|
|
61
|
+
*/
|
|
62
|
+
requestId?: string;
|
|
63
|
+
static names(): { [key: string]: string } {
|
|
64
|
+
return {
|
|
65
|
+
data: 'Data',
|
|
66
|
+
requestId: 'RequestId',
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
static types(): { [key: string]: any } {
|
|
71
|
+
return {
|
|
72
|
+
data: DescribeInterAuthStatisticsGlobalOverviewResponseBodyData,
|
|
73
|
+
requestId: 'string',
|
|
74
|
+
};
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
validate() {
|
|
78
|
+
if(this.data && typeof (this.data as any).validate === 'function') {
|
|
79
|
+
(this.data as any).validate();
|
|
80
|
+
}
|
|
81
|
+
super.validate();
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
constructor(map?: { [key: string]: any }) {
|
|
85
|
+
super(map);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DescribeInterAuthStatisticsHistoryRequest extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* dns-example.top
|
|
9
|
+
*/
|
|
10
|
+
domainName?: string;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* 1741526400000
|
|
14
|
+
*/
|
|
15
|
+
endTimestamp?: number;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* 0
|
|
19
|
+
*/
|
|
20
|
+
rcode?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* ap-southeast-3
|
|
24
|
+
*/
|
|
25
|
+
serverRegion?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* 1474335170000
|
|
29
|
+
*/
|
|
30
|
+
startTimestamp?: number;
|
|
31
|
+
statisticalType?: string;
|
|
32
|
+
/**
|
|
33
|
+
* @example
|
|
34
|
+
* lisheng999.com
|
|
35
|
+
*/
|
|
36
|
+
zoneName?: string;
|
|
37
|
+
static names(): { [key: string]: string } {
|
|
38
|
+
return {
|
|
39
|
+
domainName: 'DomainName',
|
|
40
|
+
endTimestamp: 'EndTimestamp',
|
|
41
|
+
rcode: 'Rcode',
|
|
42
|
+
serverRegion: 'ServerRegion',
|
|
43
|
+
startTimestamp: 'StartTimestamp',
|
|
44
|
+
statisticalType: 'StatisticalType',
|
|
45
|
+
zoneName: 'ZoneName',
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
static types(): { [key: string]: any } {
|
|
50
|
+
return {
|
|
51
|
+
domainName: 'string',
|
|
52
|
+
endTimestamp: 'number',
|
|
53
|
+
rcode: 'string',
|
|
54
|
+
serverRegion: 'string',
|
|
55
|
+
startTimestamp: 'number',
|
|
56
|
+
statisticalType: 'string',
|
|
57
|
+
zoneName: 'string',
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
validate() {
|
|
62
|
+
super.validate();
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
constructor(map?: { [key: string]: any }) {
|
|
66
|
+
super(map);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
import { DescribeInterAuthStatisticsHistoryResponseBody } from "./DescribeInterAuthStatisticsHistoryResponseBody";
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
export class DescribeInterAuthStatisticsHistoryResponse extends $dara.Model {
|
|
7
|
+
headers?: { [key: string]: string };
|
|
8
|
+
statusCode?: number;
|
|
9
|
+
body?: DescribeInterAuthStatisticsHistoryResponseBody;
|
|
10
|
+
static names(): { [key: string]: string } {
|
|
11
|
+
return {
|
|
12
|
+
headers: 'headers',
|
|
13
|
+
statusCode: 'statusCode',
|
|
14
|
+
body: 'body',
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
static types(): { [key: string]: any } {
|
|
19
|
+
return {
|
|
20
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
21
|
+
statusCode: 'number',
|
|
22
|
+
body: DescribeInterAuthStatisticsHistoryResponseBody,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
validate() {
|
|
27
|
+
if(this.headers) {
|
|
28
|
+
$dara.Model.validateMap(this.headers);
|
|
29
|
+
}
|
|
30
|
+
if(this.body && typeof (this.body as any).validate === 'function') {
|
|
31
|
+
(this.body as any).validate();
|
|
32
|
+
}
|
|
33
|
+
super.validate();
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
constructor(map?: { [key: string]: any }) {
|
|
37
|
+
super(map);
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
// This file is auto-generated, don't edit it
|
|
2
|
+
import * as $dara from '@darabonba/typescript';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
export class DescribeInterAuthStatisticsHistoryResponseBodyData extends $dara.Model {
|
|
6
|
+
/**
|
|
7
|
+
* @example
|
|
8
|
+
* 20
|
|
9
|
+
*/
|
|
10
|
+
count?: number;
|
|
11
|
+
/**
|
|
12
|
+
* @example
|
|
13
|
+
* example.com
|
|
14
|
+
*/
|
|
15
|
+
domainName?: string;
|
|
16
|
+
/**
|
|
17
|
+
* @example
|
|
18
|
+
* HTTP
|
|
19
|
+
*/
|
|
20
|
+
protocol?: string;
|
|
21
|
+
/**
|
|
22
|
+
* @example
|
|
23
|
+
* A
|
|
24
|
+
*/
|
|
25
|
+
qtype?: string;
|
|
26
|
+
/**
|
|
27
|
+
* @example
|
|
28
|
+
* 100
|
|
29
|
+
*/
|
|
30
|
+
ratio?: number;
|
|
31
|
+
/**
|
|
32
|
+
* @example
|
|
33
|
+
* 1706716800000
|
|
34
|
+
*/
|
|
35
|
+
timestamp?: number;
|
|
36
|
+
/**
|
|
37
|
+
* @example
|
|
38
|
+
* mt2.cn
|
|
39
|
+
*/
|
|
40
|
+
zoneName?: string;
|
|
41
|
+
static names(): { [key: string]: string } {
|
|
42
|
+
return {
|
|
43
|
+
count: 'Count',
|
|
44
|
+
domainName: 'DomainName',
|
|
45
|
+
protocol: 'Protocol',
|
|
46
|
+
qtype: 'Qtype',
|
|
47
|
+
ratio: 'Ratio',
|
|
48
|
+
timestamp: 'Timestamp',
|
|
49
|
+
zoneName: 'ZoneName',
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
static types(): { [key: string]: any } {
|
|
54
|
+
return {
|
|
55
|
+
count: 'number',
|
|
56
|
+
domainName: 'string',
|
|
57
|
+
protocol: 'string',
|
|
58
|
+
qtype: 'string',
|
|
59
|
+
ratio: 'number',
|
|
60
|
+
timestamp: 'number',
|
|
61
|
+
zoneName: 'string',
|
|
62
|
+
};
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
validate() {
|
|
66
|
+
super.validate();
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
constructor(map?: { [key: string]: any }) {
|
|
70
|
+
super(map);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export class DescribeInterAuthStatisticsHistoryResponseBody extends $dara.Model {
|
|
75
|
+
data?: DescribeInterAuthStatisticsHistoryResponseBodyData[];
|
|
76
|
+
/**
|
|
77
|
+
* @remarks
|
|
78
|
+
* Id of the request
|
|
79
|
+
*
|
|
80
|
+
* @example
|
|
81
|
+
* 6856BCF6-11D6-4D7E-AC53-FD579933522B
|
|
82
|
+
*/
|
|
83
|
+
requestId?: string;
|
|
84
|
+
static names(): { [key: string]: string } {
|
|
85
|
+
return {
|
|
86
|
+
data: 'Data',
|
|
87
|
+
requestId: 'RequestId',
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
static types(): { [key: string]: any } {
|
|
92
|
+
return {
|
|
93
|
+
data: { 'type': 'array', 'itemType': DescribeInterAuthStatisticsHistoryResponseBodyData },
|
|
94
|
+
requestId: 'string',
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
validate() {
|
|
99
|
+
if(Array.isArray(this.data)) {
|
|
100
|
+
$dara.Model.validateArray(this.data);
|
|
101
|
+
}
|
|
102
|
+
super.validate();
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
constructor(map?: { [key: string]: any }) {
|
|
106
|
+
super(map);
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
|