@alicloud/waf-openapi20211001 4.0.0 → 4.0.2
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 +206 -75
- package/dist/client.js +133 -11
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +275 -75
package/src/client.ts
CHANGED
|
@@ -428,10 +428,9 @@ export class CreateApiExportRequest extends $tea.Model {
|
|
|
428
428
|
param?: string;
|
|
429
429
|
/**
|
|
430
430
|
* @remarks
|
|
431
|
-
*
|
|
432
|
-
*
|
|
433
|
-
* - **
|
|
434
|
-
* - **cn-hongkong**: outside the Chinese mainland.
|
|
431
|
+
* Language type. Valid values:
|
|
432
|
+
* - **cn**: Chinese.
|
|
433
|
+
* - **en**: English.
|
|
435
434
|
*
|
|
436
435
|
* @example
|
|
437
436
|
* cn
|
|
@@ -612,6 +611,7 @@ export class CreateCloudResourceRequest extends $tea.Model {
|
|
|
612
611
|
* rg-acfm***q
|
|
613
612
|
*/
|
|
614
613
|
resourceManagerResourceGroupId?: string;
|
|
614
|
+
tag?: CreateCloudResourceRequestTag[];
|
|
615
615
|
static names(): { [key: string]: string } {
|
|
616
616
|
return {
|
|
617
617
|
instanceId: 'InstanceId',
|
|
@@ -620,6 +620,7 @@ export class CreateCloudResourceRequest extends $tea.Model {
|
|
|
620
620
|
redirect: 'Redirect',
|
|
621
621
|
regionId: 'RegionId',
|
|
622
622
|
resourceManagerResourceGroupId: 'ResourceManagerResourceGroupId',
|
|
623
|
+
tag: 'Tag',
|
|
623
624
|
};
|
|
624
625
|
}
|
|
625
626
|
|
|
@@ -631,6 +632,7 @@ export class CreateCloudResourceRequest extends $tea.Model {
|
|
|
631
632
|
redirect: CreateCloudResourceRequestRedirect,
|
|
632
633
|
regionId: 'string',
|
|
633
634
|
resourceManagerResourceGroupId: 'string',
|
|
635
|
+
tag: { 'type': 'array', 'itemType': CreateCloudResourceRequestTag },
|
|
634
636
|
};
|
|
635
637
|
}
|
|
636
638
|
|
|
@@ -693,6 +695,7 @@ export class CreateCloudResourceShrinkRequest extends $tea.Model {
|
|
|
693
695
|
* rg-acfm***q
|
|
694
696
|
*/
|
|
695
697
|
resourceManagerResourceGroupId?: string;
|
|
698
|
+
tag?: CreateCloudResourceShrinkRequestTag[];
|
|
696
699
|
static names(): { [key: string]: string } {
|
|
697
700
|
return {
|
|
698
701
|
instanceId: 'InstanceId',
|
|
@@ -701,6 +704,7 @@ export class CreateCloudResourceShrinkRequest extends $tea.Model {
|
|
|
701
704
|
redirectShrink: 'Redirect',
|
|
702
705
|
regionId: 'RegionId',
|
|
703
706
|
resourceManagerResourceGroupId: 'ResourceManagerResourceGroupId',
|
|
707
|
+
tag: 'Tag',
|
|
704
708
|
};
|
|
705
709
|
}
|
|
706
710
|
|
|
@@ -712,6 +716,7 @@ export class CreateCloudResourceShrinkRequest extends $tea.Model {
|
|
|
712
716
|
redirectShrink: 'string',
|
|
713
717
|
regionId: 'string',
|
|
714
718
|
resourceManagerResourceGroupId: 'string',
|
|
719
|
+
tag: { 'type': 'array', 'itemType': CreateCloudResourceShrinkRequestTag },
|
|
715
720
|
};
|
|
716
721
|
}
|
|
717
722
|
|
|
@@ -1332,6 +1337,7 @@ export class CreateDomainRequest extends $tea.Model {
|
|
|
1332
1337
|
* rg-acfm***q
|
|
1333
1338
|
*/
|
|
1334
1339
|
resourceManagerResourceGroupId?: string;
|
|
1340
|
+
tag?: CreateDomainRequestTag[];
|
|
1335
1341
|
static names(): { [key: string]: string } {
|
|
1336
1342
|
return {
|
|
1337
1343
|
accessType: 'AccessType',
|
|
@@ -1341,6 +1347,7 @@ export class CreateDomainRequest extends $tea.Model {
|
|
|
1341
1347
|
redirect: 'Redirect',
|
|
1342
1348
|
regionId: 'RegionId',
|
|
1343
1349
|
resourceManagerResourceGroupId: 'ResourceManagerResourceGroupId',
|
|
1350
|
+
tag: 'Tag',
|
|
1344
1351
|
};
|
|
1345
1352
|
}
|
|
1346
1353
|
|
|
@@ -1353,6 +1360,7 @@ export class CreateDomainRequest extends $tea.Model {
|
|
|
1353
1360
|
redirect: CreateDomainRequestRedirect,
|
|
1354
1361
|
regionId: 'string',
|
|
1355
1362
|
resourceManagerResourceGroupId: 'string',
|
|
1363
|
+
tag: { 'type': 'array', 'itemType': CreateDomainRequestTag },
|
|
1356
1364
|
};
|
|
1357
1365
|
}
|
|
1358
1366
|
|
|
@@ -1430,6 +1438,7 @@ export class CreateDomainShrinkRequest extends $tea.Model {
|
|
|
1430
1438
|
* rg-acfm***q
|
|
1431
1439
|
*/
|
|
1432
1440
|
resourceManagerResourceGroupId?: string;
|
|
1441
|
+
tag?: CreateDomainShrinkRequestTag[];
|
|
1433
1442
|
static names(): { [key: string]: string } {
|
|
1434
1443
|
return {
|
|
1435
1444
|
accessType: 'AccessType',
|
|
@@ -1439,6 +1448,7 @@ export class CreateDomainShrinkRequest extends $tea.Model {
|
|
|
1439
1448
|
redirectShrink: 'Redirect',
|
|
1440
1449
|
regionId: 'RegionId',
|
|
1441
1450
|
resourceManagerResourceGroupId: 'ResourceManagerResourceGroupId',
|
|
1451
|
+
tag: 'Tag',
|
|
1442
1452
|
};
|
|
1443
1453
|
}
|
|
1444
1454
|
|
|
@@ -1451,6 +1461,7 @@ export class CreateDomainShrinkRequest extends $tea.Model {
|
|
|
1451
1461
|
redirectShrink: 'string',
|
|
1452
1462
|
regionId: 'string',
|
|
1453
1463
|
resourceManagerResourceGroupId: 'string',
|
|
1464
|
+
tag: { 'type': 'array', 'itemType': CreateDomainShrinkRequestTag },
|
|
1454
1465
|
};
|
|
1455
1466
|
}
|
|
1456
1467
|
|
|
@@ -2276,6 +2287,7 @@ export class DeleteApisecAbnormalsRequest extends $tea.Model {
|
|
|
2276
2287
|
/**
|
|
2277
2288
|
* @remarks
|
|
2278
2289
|
* The ID of the hybrid cloud cluster.
|
|
2290
|
+
* >For hybrid cloud scenarios only, you can call the [DescribeHybridCloudClusters](https://help.aliyun.com/document_detail/2849376.html) operation to query the hybrid cloud clusters.
|
|
2279
2291
|
*
|
|
2280
2292
|
* @example
|
|
2281
2293
|
* 428
|
|
@@ -2306,7 +2318,7 @@ export class DeleteApisecAbnormalsRequest extends $tea.Model {
|
|
|
2306
2318
|
regionId?: string;
|
|
2307
2319
|
/**
|
|
2308
2320
|
* @remarks
|
|
2309
|
-
*
|
|
2321
|
+
* 阿里云资源组ID。
|
|
2310
2322
|
*
|
|
2311
2323
|
* @example
|
|
2312
2324
|
* rg-acfm***q
|
|
@@ -2392,6 +2404,7 @@ export class DeleteApisecEventsRequest extends $tea.Model {
|
|
|
2392
2404
|
/**
|
|
2393
2405
|
* @remarks
|
|
2394
2406
|
* The ID of the hybrid cloud cluster.
|
|
2407
|
+
* >For hybrid cloud scenarios only, you can call the [DescribeHybridCloudClusters](https://help.aliyun.com/document_detail/2849376.html) operation to query the hybrid cloud clusters.
|
|
2395
2408
|
*
|
|
2396
2409
|
* @example
|
|
2397
2410
|
* 428
|
|
@@ -2429,7 +2442,7 @@ export class DeleteApisecEventsRequest extends $tea.Model {
|
|
|
2429
2442
|
regionId?: string;
|
|
2430
2443
|
/**
|
|
2431
2444
|
* @remarks
|
|
2432
|
-
*
|
|
2445
|
+
* 阿里云资源组ID。
|
|
2433
2446
|
*
|
|
2434
2447
|
* @example
|
|
2435
2448
|
* rg-acfm***q
|
|
@@ -3554,7 +3567,9 @@ export class DescribeAccountDelegatedStatusResponse extends $tea.Model {
|
|
|
3554
3567
|
export class DescribeApiExportsRequest extends $tea.Model {
|
|
3555
3568
|
/**
|
|
3556
3569
|
* @remarks
|
|
3557
|
-
* The
|
|
3570
|
+
* The ID of the Web Application Firewall (WAF) instance.
|
|
3571
|
+
*
|
|
3572
|
+
* > You can call the [DescribeInstance](https://help.aliyun.com/document_detail/433756.html) operation to query the ID of the WAF instance.
|
|
3558
3573
|
*
|
|
3559
3574
|
* This parameter is required.
|
|
3560
3575
|
*
|
|
@@ -3564,7 +3579,10 @@ export class DescribeApiExportsRequest extends $tea.Model {
|
|
|
3564
3579
|
instanceId?: string;
|
|
3565
3580
|
/**
|
|
3566
3581
|
* @remarks
|
|
3567
|
-
*
|
|
3582
|
+
* Language type. Valid values:
|
|
3583
|
+
*
|
|
3584
|
+
* - **cn**: Chinese.
|
|
3585
|
+
* - **en**: English.
|
|
3568
3586
|
*
|
|
3569
3587
|
* @example
|
|
3570
3588
|
* zh
|
|
@@ -3572,7 +3590,7 @@ export class DescribeApiExportsRequest extends $tea.Model {
|
|
|
3572
3590
|
lang?: string;
|
|
3573
3591
|
/**
|
|
3574
3592
|
* @remarks
|
|
3575
|
-
* The
|
|
3593
|
+
* The page number. Default value: **1**.
|
|
3576
3594
|
*
|
|
3577
3595
|
* @example
|
|
3578
3596
|
* 1
|
|
@@ -3580,7 +3598,7 @@ export class DescribeApiExportsRequest extends $tea.Model {
|
|
|
3580
3598
|
pageNumber?: number;
|
|
3581
3599
|
/**
|
|
3582
3600
|
* @remarks
|
|
3583
|
-
* The
|
|
3601
|
+
* The number of entries to return on each page. Default value: **10**.
|
|
3584
3602
|
*
|
|
3585
3603
|
* @example
|
|
3586
3604
|
* 10
|
|
@@ -3588,7 +3606,10 @@ export class DescribeApiExportsRequest extends $tea.Model {
|
|
|
3588
3606
|
pageSize?: number;
|
|
3589
3607
|
/**
|
|
3590
3608
|
* @remarks
|
|
3591
|
-
* The
|
|
3609
|
+
* The region ID of the Web Application Firewall (WAF) instance. Valid values:
|
|
3610
|
+
*
|
|
3611
|
+
* * **cn-hangzhou**: Chinese mainland.
|
|
3612
|
+
* * **ap-southeast-1**: outside the Chinese mainland.
|
|
3592
3613
|
*
|
|
3593
3614
|
* @example
|
|
3594
3615
|
* cn-hangzhou
|
|
@@ -3596,7 +3617,7 @@ export class DescribeApiExportsRequest extends $tea.Model {
|
|
|
3596
3617
|
regionId?: string;
|
|
3597
3618
|
/**
|
|
3598
3619
|
* @remarks
|
|
3599
|
-
* The
|
|
3620
|
+
* The ID of the Alibaba Cloud resource group.
|
|
3600
3621
|
*
|
|
3601
3622
|
* @example
|
|
3602
3623
|
* rg-acfm***q
|
|
@@ -3632,12 +3653,12 @@ export class DescribeApiExportsRequest extends $tea.Model {
|
|
|
3632
3653
|
export class DescribeApiExportsResponseBody extends $tea.Model {
|
|
3633
3654
|
/**
|
|
3634
3655
|
* @remarks
|
|
3635
|
-
* The
|
|
3656
|
+
* The returned data export tasks.
|
|
3636
3657
|
*/
|
|
3637
3658
|
apiExports?: DescribeApiExportsResponseBodyApiExports[];
|
|
3638
3659
|
/**
|
|
3639
3660
|
* @remarks
|
|
3640
|
-
* The
|
|
3661
|
+
* The request ID.
|
|
3641
3662
|
*
|
|
3642
3663
|
* @example
|
|
3643
3664
|
* D9532525-E885-54E7-A178-D5554D563AFB
|
|
@@ -3705,6 +3726,7 @@ export class DescribeApisecAbnormalDomainStatisticRequest extends $tea.Model {
|
|
|
3705
3726
|
/**
|
|
3706
3727
|
* @remarks
|
|
3707
3728
|
* The ID of the hybrid cloud cluster.
|
|
3729
|
+
* >For hybrid cloud scenarios only, you can call the [DescribeHybridCloudClusters](https://help.aliyun.com/document_detail/2849376.html) operation to query the hybrid cloud clusters.
|
|
3708
3730
|
*
|
|
3709
3731
|
* @example
|
|
3710
3732
|
* 428
|
|
@@ -3712,7 +3734,7 @@ export class DescribeApisecAbnormalDomainStatisticRequest extends $tea.Model {
|
|
|
3712
3734
|
clusterId?: string;
|
|
3713
3735
|
/**
|
|
3714
3736
|
* @remarks
|
|
3715
|
-
* The end of the time range to query.
|
|
3737
|
+
* The end of the time range to query. Specify a UNIX timestamp in UTC. Unit: seconds.
|
|
3716
3738
|
*
|
|
3717
3739
|
* @example
|
|
3718
3740
|
* 1687313820
|
|
@@ -3732,10 +3754,10 @@ export class DescribeApisecAbnormalDomainStatisticRequest extends $tea.Model {
|
|
|
3732
3754
|
instanceId?: string;
|
|
3733
3755
|
/**
|
|
3734
3756
|
* @remarks
|
|
3735
|
-
* The sorting order.
|
|
3757
|
+
* The sorting order. Valid values:
|
|
3736
3758
|
*
|
|
3737
|
-
*
|
|
3738
|
-
*
|
|
3759
|
+
* - **asc**: ascending order.
|
|
3760
|
+
* - **desc**: descending order.
|
|
3739
3761
|
*
|
|
3740
3762
|
* @example
|
|
3741
3763
|
* desc
|
|
@@ -3751,10 +3773,10 @@ export class DescribeApisecAbnormalDomainStatisticRequest extends $tea.Model {
|
|
|
3751
3773
|
pageNumber?: number;
|
|
3752
3774
|
/**
|
|
3753
3775
|
* @remarks
|
|
3754
|
-
* The number of entries per page. Default value: **
|
|
3776
|
+
* The number of entries per page. Default value: **5**.
|
|
3755
3777
|
*
|
|
3756
3778
|
* @example
|
|
3757
|
-
*
|
|
3779
|
+
* 5
|
|
3758
3780
|
*/
|
|
3759
3781
|
pageSize?: number;
|
|
3760
3782
|
/**
|
|
@@ -3778,7 +3800,7 @@ export class DescribeApisecAbnormalDomainStatisticRequest extends $tea.Model {
|
|
|
3778
3800
|
resourceManagerResourceGroupId?: string;
|
|
3779
3801
|
/**
|
|
3780
3802
|
* @remarks
|
|
3781
|
-
* The beginning of the time range to query.
|
|
3803
|
+
* The beginning of the time range to query. Specify a UNIX timestamp in UTC. Unit: seconds.
|
|
3782
3804
|
*
|
|
3783
3805
|
* @example
|
|
3784
3806
|
* 1682571600
|
|
@@ -3825,7 +3847,7 @@ export class DescribeApisecAbnormalDomainStatisticResponseBody extends $tea.Mode
|
|
|
3825
3847
|
data?: DescribeApisecAbnormalDomainStatisticResponseBodyData[];
|
|
3826
3848
|
/**
|
|
3827
3849
|
* @remarks
|
|
3828
|
-
* Id of the request
|
|
3850
|
+
* Id of the request.
|
|
3829
3851
|
*
|
|
3830
3852
|
* @example
|
|
3831
3853
|
* 66A98669-CC6E-4F3E-80A6-3014***B11AE
|
|
@@ -3910,7 +3932,7 @@ export class DescribeApisecAbnormalsRequest extends $tea.Model {
|
|
|
3910
3932
|
* @remarks
|
|
3911
3933
|
* The type of the risk.
|
|
3912
3934
|
*
|
|
3913
|
-
* > You can call the [DescribeApisecRules](
|
|
3935
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported types of risks.
|
|
3914
3936
|
*
|
|
3915
3937
|
* @example
|
|
3916
3938
|
* LackOfSpeedLimit
|
|
@@ -3936,7 +3958,7 @@ export class DescribeApisecAbnormalsRequest extends $tea.Model {
|
|
|
3936
3958
|
* @remarks
|
|
3937
3959
|
* The business purpose of the API.
|
|
3938
3960
|
*
|
|
3939
|
-
* > You can call the [DescribeApisecRules](
|
|
3961
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the business purposes of APIs.
|
|
3940
3962
|
*
|
|
3941
3963
|
* @example
|
|
3942
3964
|
* RegisterAPI
|
|
@@ -4241,7 +4263,7 @@ export class DescribeApisecApiResourcesRequest extends $tea.Model {
|
|
|
4241
4263
|
* @remarks
|
|
4242
4264
|
* The business purpose of the API.
|
|
4243
4265
|
*
|
|
4244
|
-
* > You can call the [DescribeApisecRules](
|
|
4266
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the business purpose of the API.
|
|
4245
4267
|
*
|
|
4246
4268
|
* @example
|
|
4247
4269
|
* SendMail
|
|
@@ -4384,7 +4406,7 @@ export class DescribeApisecApiResourcesRequest extends $tea.Model {
|
|
|
4384
4406
|
* @remarks
|
|
4385
4407
|
* The sensitive data type in the request.
|
|
4386
4408
|
*
|
|
4387
|
-
* > You can call the [DescribeApisecRules](
|
|
4409
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported sensitive data types.
|
|
4388
4410
|
*
|
|
4389
4411
|
* @example
|
|
4390
4412
|
* 1004,1005
|
|
@@ -4415,7 +4437,7 @@ export class DescribeApisecApiResourcesRequest extends $tea.Model {
|
|
|
4415
4437
|
* @remarks
|
|
4416
4438
|
* The sensitive data type in the response.
|
|
4417
4439
|
*
|
|
4418
|
-
* > You can call the [DescribeApisecRules](
|
|
4440
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported sensitive data types.
|
|
4419
4441
|
*
|
|
4420
4442
|
* @example
|
|
4421
4443
|
* 1004
|
|
@@ -4569,7 +4591,7 @@ export class DescribeApisecAssetTrendRequest extends $tea.Model {
|
|
|
4569
4591
|
clusterId?: string;
|
|
4570
4592
|
/**
|
|
4571
4593
|
* @remarks
|
|
4572
|
-
* The end of the time range to query. Specify a UNIX timestamp in UTC. Unit:
|
|
4594
|
+
* The end of the time range to query. Specify a UNIX timestamp in UTC. Unit: seconds.
|
|
4573
4595
|
*
|
|
4574
4596
|
* @example
|
|
4575
4597
|
* 1683183599
|
|
@@ -4579,7 +4601,7 @@ export class DescribeApisecAssetTrendRequest extends $tea.Model {
|
|
|
4579
4601
|
* @remarks
|
|
4580
4602
|
* The ID of the WAF instance.
|
|
4581
4603
|
*
|
|
4582
|
-
* > You can call the [
|
|
4604
|
+
* > You can call the [DescribeInstance](https://help.aliyun.com/document_detail/433756.html) operation to query the ID of the WAF instance.
|
|
4583
4605
|
*
|
|
4584
4606
|
* This parameter is required.
|
|
4585
4607
|
*
|
|
@@ -4608,7 +4630,7 @@ export class DescribeApisecAssetTrendRequest extends $tea.Model {
|
|
|
4608
4630
|
resourceManagerResourceGroupId?: string;
|
|
4609
4631
|
/**
|
|
4610
4632
|
* @remarks
|
|
4611
|
-
* The beginning of the time range to query. Specify a UNIX timestamp in UTC. Unit:
|
|
4633
|
+
* The beginning of the time range to query. Specify a UNIX timestamp in UTC. Unit: seconds.
|
|
4612
4634
|
*
|
|
4613
4635
|
* @example
|
|
4614
4636
|
* 1668496310
|
|
@@ -4649,7 +4671,7 @@ export class DescribeApisecAssetTrendResponseBody extends $tea.Model {
|
|
|
4649
4671
|
data?: DescribeApisecAssetTrendResponseBodyData[];
|
|
4650
4672
|
/**
|
|
4651
4673
|
* @remarks
|
|
4652
|
-
* Id of the request
|
|
4674
|
+
* Id of the request.
|
|
4653
4675
|
*
|
|
4654
4676
|
* @example
|
|
4655
4677
|
* D7861F61-5B61-46CE-A47C-6B19****5EB0
|
|
@@ -4703,6 +4725,7 @@ export class DescribeApisecEventDomainStatisticRequest extends $tea.Model {
|
|
|
4703
4725
|
/**
|
|
4704
4726
|
* @remarks
|
|
4705
4727
|
* The ID of the hybrid cloud cluster.
|
|
4728
|
+
* >For hybrid cloud scenarios only, you can call the [DescribeHybridCloudClusters](https://help.aliyun.com/document_detail/2849376.html) operation to query the hybrid cloud clusters.
|
|
4706
4729
|
*
|
|
4707
4730
|
* @example
|
|
4708
4731
|
* 428
|
|
@@ -4710,7 +4733,7 @@ export class DescribeApisecEventDomainStatisticRequest extends $tea.Model {
|
|
|
4710
4733
|
clusterId?: string;
|
|
4711
4734
|
/**
|
|
4712
4735
|
* @remarks
|
|
4713
|
-
* The end of the time range to query. Specify a UNIX timestamp in UTC. Unit:
|
|
4736
|
+
* The end of the time range to query. Specify a UNIX timestamp in UTC. Unit: seconds.
|
|
4714
4737
|
*
|
|
4715
4738
|
* @example
|
|
4716
4739
|
* 1686895256
|
|
@@ -4730,10 +4753,10 @@ export class DescribeApisecEventDomainStatisticRequest extends $tea.Model {
|
|
|
4730
4753
|
instanceId?: string;
|
|
4731
4754
|
/**
|
|
4732
4755
|
* @remarks
|
|
4733
|
-
* The sorting order.
|
|
4756
|
+
* The sorting order. Valid values:
|
|
4734
4757
|
*
|
|
4735
|
-
*
|
|
4736
|
-
*
|
|
4758
|
+
* - **asc**: ascending order.
|
|
4759
|
+
* - **desc**: descending order.
|
|
4737
4760
|
*
|
|
4738
4761
|
* @example
|
|
4739
4762
|
* desc
|
|
@@ -4741,7 +4764,7 @@ export class DescribeApisecEventDomainStatisticRequest extends $tea.Model {
|
|
|
4741
4764
|
orderWay?: string;
|
|
4742
4765
|
/**
|
|
4743
4766
|
* @remarks
|
|
4744
|
-
* The page number.
|
|
4767
|
+
* The page number. Default value: **1**.
|
|
4745
4768
|
*
|
|
4746
4769
|
* @example
|
|
4747
4770
|
* 1
|
|
@@ -4749,10 +4772,10 @@ export class DescribeApisecEventDomainStatisticRequest extends $tea.Model {
|
|
|
4749
4772
|
pageNumber?: number;
|
|
4750
4773
|
/**
|
|
4751
4774
|
* @remarks
|
|
4752
|
-
* The number of entries per page. Default value: **
|
|
4775
|
+
* The number of entries per page. Default value: **5**.
|
|
4753
4776
|
*
|
|
4754
4777
|
* @example
|
|
4755
|
-
*
|
|
4778
|
+
* 5
|
|
4756
4779
|
*/
|
|
4757
4780
|
pageSize?: number;
|
|
4758
4781
|
/**
|
|
@@ -4776,7 +4799,7 @@ export class DescribeApisecEventDomainStatisticRequest extends $tea.Model {
|
|
|
4776
4799
|
resourceManagerResourceGroupId?: string;
|
|
4777
4800
|
/**
|
|
4778
4801
|
* @remarks
|
|
4779
|
-
* The beginning of the time range to query. Specify a UNIX timestamp in UTC. Unit:
|
|
4802
|
+
* The beginning of the time range to query. Specify a UNIX timestamp in UTC. Unit: seconds.
|
|
4780
4803
|
*
|
|
4781
4804
|
* @example
|
|
4782
4805
|
* 1668496310
|
|
@@ -4823,7 +4846,7 @@ export class DescribeApisecEventDomainStatisticResponseBody extends $tea.Model {
|
|
|
4823
4846
|
data?: DescribeApisecEventDomainStatisticResponseBodyData[];
|
|
4824
4847
|
/**
|
|
4825
4848
|
* @remarks
|
|
4826
|
-
* Id of the request
|
|
4849
|
+
* Id of the request.
|
|
4827
4850
|
*
|
|
4828
4851
|
* @example
|
|
4829
4852
|
* 66A98669-*******-80A6-3014697B11AE
|
|
@@ -4904,7 +4927,7 @@ export class DescribeApisecEventsRequest extends $tea.Model {
|
|
|
4904
4927
|
* @remarks
|
|
4905
4928
|
* The business purpose of the API.
|
|
4906
4929
|
*
|
|
4907
|
-
* > You can call the [DescribeApisecRules](
|
|
4930
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the business purpose of the API.
|
|
4908
4931
|
*
|
|
4909
4932
|
* @example
|
|
4910
4933
|
* SendMail
|
|
@@ -4959,7 +4982,7 @@ export class DescribeApisecEventsRequest extends $tea.Model {
|
|
|
4959
4982
|
* @remarks
|
|
4960
4983
|
* The type of the event.
|
|
4961
4984
|
*
|
|
4962
|
-
* > You can call the [DescribeApisecRules](
|
|
4985
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported event types.
|
|
4963
4986
|
*
|
|
4964
4987
|
* @example
|
|
4965
4988
|
* ObtainSensitiveUnauthorized
|
|
@@ -6059,10 +6082,10 @@ export class DescribeApisecSensitiveDomainStatisticRequest extends $tea.Model {
|
|
|
6059
6082
|
instanceId?: string;
|
|
6060
6083
|
/**
|
|
6061
6084
|
* @remarks
|
|
6062
|
-
* The sorting order.
|
|
6085
|
+
* The sorting order. Valid values:
|
|
6063
6086
|
*
|
|
6064
|
-
*
|
|
6065
|
-
*
|
|
6087
|
+
* - **asc**: ascending order.
|
|
6088
|
+
* - **desc**: descending order.
|
|
6066
6089
|
*
|
|
6067
6090
|
* @example
|
|
6068
6091
|
* desc
|
|
@@ -6078,10 +6101,10 @@ export class DescribeApisecSensitiveDomainStatisticRequest extends $tea.Model {
|
|
|
6078
6101
|
pageNumber?: number;
|
|
6079
6102
|
/**
|
|
6080
6103
|
* @remarks
|
|
6081
|
-
* The number of entries per page. Default value: **
|
|
6104
|
+
* The number of entries per page. Default value: **5**.
|
|
6082
6105
|
*
|
|
6083
6106
|
* @example
|
|
6084
|
-
*
|
|
6107
|
+
* 5
|
|
6085
6108
|
*/
|
|
6086
6109
|
pageSize?: number;
|
|
6087
6110
|
/**
|
|
@@ -6113,10 +6136,10 @@ export class DescribeApisecSensitiveDomainStatisticRequest extends $tea.Model {
|
|
|
6113
6136
|
startTime?: number;
|
|
6114
6137
|
/**
|
|
6115
6138
|
* @remarks
|
|
6116
|
-
* The sensitive data type.
|
|
6139
|
+
* The sensitive data type. Valid values:
|
|
6117
6140
|
*
|
|
6118
|
-
*
|
|
6119
|
-
*
|
|
6141
|
+
* - **request**: sensitive data in requests.
|
|
6142
|
+
* - **response**: sensitive data in responses.
|
|
6120
6143
|
*
|
|
6121
6144
|
* @example
|
|
6122
6145
|
* request
|
|
@@ -6165,7 +6188,7 @@ export class DescribeApisecSensitiveDomainStatisticResponseBody extends $tea.Mod
|
|
|
6165
6188
|
data?: DescribeApisecSensitiveDomainStatisticResponseBodyData[];
|
|
6166
6189
|
/**
|
|
6167
6190
|
* @remarks
|
|
6168
|
-
*
|
|
6191
|
+
* The request ID.
|
|
6169
6192
|
*
|
|
6170
6193
|
* @example
|
|
6171
6194
|
* 56B40D30-4960-4F19-B7D5-2B1F***6CB70
|
|
@@ -7584,6 +7607,9 @@ export class DescribeCloudResourcesRequest extends $tea.Model {
|
|
|
7584
7607
|
*/
|
|
7585
7608
|
resourceInstanceId?: string;
|
|
7586
7609
|
/**
|
|
7610
|
+
* @remarks
|
|
7611
|
+
* The name of the instance that is added to WAF.
|
|
7612
|
+
*
|
|
7587
7613
|
* @example
|
|
7588
7614
|
* test-name
|
|
7589
7615
|
*/
|
|
@@ -7608,12 +7634,16 @@ export class DescribeCloudResourcesRequest extends $tea.Model {
|
|
|
7608
7634
|
resourceName?: string;
|
|
7609
7635
|
/**
|
|
7610
7636
|
* @remarks
|
|
7611
|
-
* The cloud service to which the resource belongs. Valid values:
|
|
7637
|
+
* The cloud service to which the resource belongs. If you do not specify this parameter, the system automatically returns the Application Load Balancer (ALB), Microservices Engine (MSE), Function Compute, and Serverless App Engine (SAE) resources that are added to WAF. Valid values:
|
|
7612
7638
|
*
|
|
7613
|
-
* * **alb**:
|
|
7614
|
-
* * **mse**:
|
|
7639
|
+
* * **alb**: ALB.
|
|
7640
|
+
* * **mse**: MSE.
|
|
7615
7641
|
* * **fc**: Function Compute.
|
|
7616
|
-
* * **sae**:
|
|
7642
|
+
* * **sae**: SAE.
|
|
7643
|
+
* * **ecs**: Elastic Compute Service (ECS).
|
|
7644
|
+
* * **clb4**: Layer 4 Classic Load Balancer (CLB).
|
|
7645
|
+
* * **clb7**: Layer 7 CLB.
|
|
7646
|
+
* * **nlb**: Network Load Balancer (NLB).
|
|
7617
7647
|
*
|
|
7618
7648
|
* > Different cloud services are available in different regions. The specified cloud service must be available in the specified region.
|
|
7619
7649
|
*
|
|
@@ -15935,7 +15965,7 @@ export class DescribeSensitiveOutboundStatisticRequest extends $tea.Model {
|
|
|
15935
15965
|
* @remarks
|
|
15936
15966
|
* The type of the sensitive data. Separate multiple types with commas (,).
|
|
15937
15967
|
*
|
|
15938
|
-
* > You can call the [DescribeApisecRules](
|
|
15968
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported types of sensitive data. Only built-in types of sensitive data are supported for this operation.
|
|
15939
15969
|
*
|
|
15940
15970
|
* @example
|
|
15941
15971
|
* 1000,1001
|
|
@@ -16334,7 +16364,7 @@ export class DescribeSensitiveRequestLogRequest extends $tea.Model {
|
|
|
16334
16364
|
* @remarks
|
|
16335
16365
|
* The type of the sensitive data.
|
|
16336
16366
|
*
|
|
16337
|
-
* > You can call the [DescribeApisecRules](
|
|
16367
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported types of sensitive data.
|
|
16338
16368
|
*
|
|
16339
16369
|
* @example
|
|
16340
16370
|
* 1000,1001
|
|
@@ -16534,7 +16564,7 @@ export class DescribeSensitiveRequestsRequest extends $tea.Model {
|
|
|
16534
16564
|
* @remarks
|
|
16535
16565
|
* The type of the sensitive data.
|
|
16536
16566
|
*
|
|
16537
|
-
* > You can call the [DescribeApisecRules](
|
|
16567
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported types of sensitive data.
|
|
16538
16568
|
*
|
|
16539
16569
|
* @example
|
|
16540
16570
|
* 1001
|
|
@@ -17763,6 +17793,7 @@ export class DescribeUserApiRequestRequest extends $tea.Model {
|
|
|
17763
17793
|
/**
|
|
17764
17794
|
* @remarks
|
|
17765
17795
|
* The API.
|
|
17796
|
+
* >Notice: This parameter is deprecated, please use ApiId to query.
|
|
17766
17797
|
*
|
|
17767
17798
|
* @example
|
|
17768
17799
|
* /api/v1/know
|
|
@@ -17790,6 +17821,7 @@ export class DescribeUserApiRequestRequest extends $tea.Model {
|
|
|
17790
17821
|
/**
|
|
17791
17822
|
* @remarks
|
|
17792
17823
|
* The domain name or IP address of the API.
|
|
17824
|
+
* >Notice: This parameter is deprecated, please use ApiId to query.
|
|
17793
17825
|
*
|
|
17794
17826
|
* @example
|
|
17795
17827
|
* c.***.com
|
|
@@ -17966,6 +17998,7 @@ export class DescribeUserAssetRequest extends $tea.Model {
|
|
|
17966
17998
|
/**
|
|
17967
17999
|
* @remarks
|
|
17968
18000
|
* The time at which the API was called. The value is a UNIX timestamp displayed in UTC. Unit: seconds.
|
|
18001
|
+
* >Notice: The parameter has been deprecated.
|
|
17969
18002
|
*
|
|
17970
18003
|
* @example
|
|
17971
18004
|
* 1723435200
|
|
@@ -18488,7 +18521,7 @@ export class DescribeUserWafLogStatusRequest extends $tea.Model {
|
|
|
18488
18521
|
regionId?: string;
|
|
18489
18522
|
/**
|
|
18490
18523
|
* @remarks
|
|
18491
|
-
*
|
|
18524
|
+
* 阿里云资源组ID。
|
|
18492
18525
|
*
|
|
18493
18526
|
* @example
|
|
18494
18527
|
* rg-acfm***q
|
|
@@ -18524,7 +18557,6 @@ export class DescribeUserWafLogStatusResponseBody extends $tea.Model {
|
|
|
18524
18557
|
* * **cn-beijing**: China (Beijing).
|
|
18525
18558
|
* * **cn-hongkong**: China (Hong Kong).
|
|
18526
18559
|
* * **ap-southeast-1**: Singapore.
|
|
18527
|
-
* * **ap-southeast-2**: Australia (Sydney).
|
|
18528
18560
|
* * **ap-southeast-3**: Malaysia (Kuala Lumpur).
|
|
18529
18561
|
* * **ap-southeast-5**: Indonesia (Jakarta).
|
|
18530
18562
|
* * **ap-southeast-6**: Philippines (Manila).
|
|
@@ -18535,7 +18567,6 @@ export class DescribeUserWafLogStatusResponseBody extends $tea.Model {
|
|
|
18535
18567
|
* * **us-west-1**: US (Silicon Valley).
|
|
18536
18568
|
* * **ap-northeast-1**: Japan (Tokyo).
|
|
18537
18569
|
* * **ap-northeast-2**: South Korea (Seoul).
|
|
18538
|
-
* * **ap-south-1**: India (Mumbai) Closing Down.
|
|
18539
18570
|
* * **eu-west-1**: UK (London).
|
|
18540
18571
|
* * **cn-hangzhou-finance**: China East 1 Finance.
|
|
18541
18572
|
* * **cn-shanghai-finance-1**: China East 2 Finance.
|
|
@@ -19439,6 +19470,7 @@ export class ModifyApisecAbnormalsRequest extends $tea.Model {
|
|
|
19439
19470
|
/**
|
|
19440
19471
|
* @remarks
|
|
19441
19472
|
* The ID of the hybrid cloud cluster.
|
|
19473
|
+
* >For hybrid cloud scenarios only, you can call the [DescribeHybridCloudClusters](https://help.aliyun.com/document_detail/2849376.html) operation to query the hybrid cloud clusters.
|
|
19442
19474
|
*
|
|
19443
19475
|
* @example
|
|
19444
19476
|
* 428
|
|
@@ -19477,7 +19509,7 @@ export class ModifyApisecAbnormalsRequest extends $tea.Model {
|
|
|
19477
19509
|
regionId?: string;
|
|
19478
19510
|
/**
|
|
19479
19511
|
* @remarks
|
|
19480
|
-
*
|
|
19512
|
+
* 阿里云资源组ID。
|
|
19481
19513
|
*
|
|
19482
19514
|
* @example
|
|
19483
19515
|
* rg-acfm***q
|
|
@@ -19733,6 +19765,7 @@ export class ModifyApisecEventsRequest extends $tea.Model {
|
|
|
19733
19765
|
/**
|
|
19734
19766
|
* @remarks
|
|
19735
19767
|
* The ID of the hybrid cloud cluster.
|
|
19768
|
+
* >For hybrid cloud scenarios only, you can call the [DescribeHybridCloudClusters](https://help.aliyun.com/document_detail/2849376.html) operation to query the hybrid cloud clusters.
|
|
19736
19769
|
*
|
|
19737
19770
|
* @example
|
|
19738
19771
|
* 428
|
|
@@ -19778,7 +19811,7 @@ export class ModifyApisecEventsRequest extends $tea.Model {
|
|
|
19778
19811
|
regionId?: string;
|
|
19779
19812
|
/**
|
|
19780
19813
|
* @remarks
|
|
19781
|
-
*
|
|
19814
|
+
* 阿里云资源组ID。
|
|
19782
19815
|
*
|
|
19783
19816
|
* @example
|
|
19784
19817
|
* rg-acfm***q
|
|
@@ -24604,6 +24637,50 @@ export class CreateCloudResourceRequestRedirect extends $tea.Model {
|
|
|
24604
24637
|
}
|
|
24605
24638
|
}
|
|
24606
24639
|
|
|
24640
|
+
export class CreateCloudResourceRequestTag extends $tea.Model {
|
|
24641
|
+
key?: string;
|
|
24642
|
+
value?: string;
|
|
24643
|
+
static names(): { [key: string]: string } {
|
|
24644
|
+
return {
|
|
24645
|
+
key: 'Key',
|
|
24646
|
+
value: 'Value',
|
|
24647
|
+
};
|
|
24648
|
+
}
|
|
24649
|
+
|
|
24650
|
+
static types(): { [key: string]: any } {
|
|
24651
|
+
return {
|
|
24652
|
+
key: 'string',
|
|
24653
|
+
value: 'string',
|
|
24654
|
+
};
|
|
24655
|
+
}
|
|
24656
|
+
|
|
24657
|
+
constructor(map?: { [key: string]: any }) {
|
|
24658
|
+
super(map);
|
|
24659
|
+
}
|
|
24660
|
+
}
|
|
24661
|
+
|
|
24662
|
+
export class CreateCloudResourceShrinkRequestTag extends $tea.Model {
|
|
24663
|
+
key?: string;
|
|
24664
|
+
value?: string;
|
|
24665
|
+
static names(): { [key: string]: string } {
|
|
24666
|
+
return {
|
|
24667
|
+
key: 'Key',
|
|
24668
|
+
value: 'Value',
|
|
24669
|
+
};
|
|
24670
|
+
}
|
|
24671
|
+
|
|
24672
|
+
static types(): { [key: string]: any } {
|
|
24673
|
+
return {
|
|
24674
|
+
key: 'string',
|
|
24675
|
+
value: 'string',
|
|
24676
|
+
};
|
|
24677
|
+
}
|
|
24678
|
+
|
|
24679
|
+
constructor(map?: { [key: string]: any }) {
|
|
24680
|
+
super(map);
|
|
24681
|
+
}
|
|
24682
|
+
}
|
|
24683
|
+
|
|
24607
24684
|
export class CreateDomainRequestListen extends $tea.Model {
|
|
24608
24685
|
/**
|
|
24609
24686
|
* @remarks
|
|
@@ -24868,6 +24945,7 @@ export class CreateDomainRequestRedirect extends $tea.Model {
|
|
|
24868
24945
|
* The IP addresses or domain names of the origin server.
|
|
24869
24946
|
*/
|
|
24870
24947
|
backends?: string[];
|
|
24948
|
+
backupBackends?: string[];
|
|
24871
24949
|
/**
|
|
24872
24950
|
* @remarks
|
|
24873
24951
|
* Specifies whether to enable the public cloud disaster recovery feature. Valid values:
|
|
@@ -25032,6 +25110,7 @@ export class CreateDomainRequestRedirect extends $tea.Model {
|
|
|
25032
25110
|
static names(): { [key: string]: string } {
|
|
25033
25111
|
return {
|
|
25034
25112
|
backends: 'Backends',
|
|
25113
|
+
backupBackends: 'BackupBackends',
|
|
25035
25114
|
cnameEnabled: 'CnameEnabled',
|
|
25036
25115
|
connectTimeout: 'ConnectTimeout',
|
|
25037
25116
|
focusHttpBackend: 'FocusHttpBackend',
|
|
@@ -25053,6 +25132,7 @@ export class CreateDomainRequestRedirect extends $tea.Model {
|
|
|
25053
25132
|
static types(): { [key: string]: any } {
|
|
25054
25133
|
return {
|
|
25055
25134
|
backends: { 'type': 'array', 'itemType': 'string' },
|
|
25135
|
+
backupBackends: { 'type': 'array', 'itemType': 'string' },
|
|
25056
25136
|
cnameEnabled: 'boolean',
|
|
25057
25137
|
connectTimeout: 'number',
|
|
25058
25138
|
focusHttpBackend: 'boolean',
|
|
@@ -25076,6 +25156,50 @@ export class CreateDomainRequestRedirect extends $tea.Model {
|
|
|
25076
25156
|
}
|
|
25077
25157
|
}
|
|
25078
25158
|
|
|
25159
|
+
export class CreateDomainRequestTag extends $tea.Model {
|
|
25160
|
+
key?: string;
|
|
25161
|
+
value?: string;
|
|
25162
|
+
static names(): { [key: string]: string } {
|
|
25163
|
+
return {
|
|
25164
|
+
key: 'Key',
|
|
25165
|
+
value: 'Value',
|
|
25166
|
+
};
|
|
25167
|
+
}
|
|
25168
|
+
|
|
25169
|
+
static types(): { [key: string]: any } {
|
|
25170
|
+
return {
|
|
25171
|
+
key: 'string',
|
|
25172
|
+
value: 'string',
|
|
25173
|
+
};
|
|
25174
|
+
}
|
|
25175
|
+
|
|
25176
|
+
constructor(map?: { [key: string]: any }) {
|
|
25177
|
+
super(map);
|
|
25178
|
+
}
|
|
25179
|
+
}
|
|
25180
|
+
|
|
25181
|
+
export class CreateDomainShrinkRequestTag extends $tea.Model {
|
|
25182
|
+
key?: string;
|
|
25183
|
+
value?: string;
|
|
25184
|
+
static names(): { [key: string]: string } {
|
|
25185
|
+
return {
|
|
25186
|
+
key: 'Key',
|
|
25187
|
+
value: 'Value',
|
|
25188
|
+
};
|
|
25189
|
+
}
|
|
25190
|
+
|
|
25191
|
+
static types(): { [key: string]: any } {
|
|
25192
|
+
return {
|
|
25193
|
+
key: 'string',
|
|
25194
|
+
value: 'string',
|
|
25195
|
+
};
|
|
25196
|
+
}
|
|
25197
|
+
|
|
25198
|
+
constructor(map?: { [key: string]: any }) {
|
|
25199
|
+
super(map);
|
|
25200
|
+
}
|
|
25201
|
+
}
|
|
25202
|
+
|
|
25079
25203
|
export class CreateDomainResponseBodyDomainInfo extends $tea.Model {
|
|
25080
25204
|
/**
|
|
25081
25205
|
* @remarks
|
|
@@ -25093,10 +25217,12 @@ export class CreateDomainResponseBodyDomainInfo extends $tea.Model {
|
|
|
25093
25217
|
* www.aliyundoc.com
|
|
25094
25218
|
*/
|
|
25095
25219
|
domain?: string;
|
|
25220
|
+
domainId?: string;
|
|
25096
25221
|
static names(): { [key: string]: string } {
|
|
25097
25222
|
return {
|
|
25098
25223
|
cname: 'Cname',
|
|
25099
25224
|
domain: 'Domain',
|
|
25225
|
+
domainId: 'DomainId',
|
|
25100
25226
|
};
|
|
25101
25227
|
}
|
|
25102
25228
|
|
|
@@ -25104,6 +25230,7 @@ export class CreateDomainResponseBodyDomainInfo extends $tea.Model {
|
|
|
25104
25230
|
return {
|
|
25105
25231
|
cname: 'string',
|
|
25106
25232
|
domain: 'string',
|
|
25233
|
+
domainId: 'string',
|
|
25107
25234
|
};
|
|
25108
25235
|
}
|
|
25109
25236
|
|
|
@@ -25312,7 +25439,7 @@ export class DescribeApisecAbnormalsResponseBodyData extends $tea.Model {
|
|
|
25312
25439
|
* @remarks
|
|
25313
25440
|
* The type of the risk.
|
|
25314
25441
|
*
|
|
25315
|
-
* > You can call the [DescribeApisecRules](
|
|
25442
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported types of risks.
|
|
25316
25443
|
*
|
|
25317
25444
|
* @example
|
|
25318
25445
|
* LackOfSpeedLimit
|
|
@@ -25346,7 +25473,7 @@ export class DescribeApisecAbnormalsResponseBodyData extends $tea.Model {
|
|
|
25346
25473
|
* @remarks
|
|
25347
25474
|
* The business purpose of the API.
|
|
25348
25475
|
*
|
|
25349
|
-
* > You can call the [DescribeApisecRules](
|
|
25476
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the business purposes of APIs.
|
|
25350
25477
|
*
|
|
25351
25478
|
* @example
|
|
25352
25479
|
* SendMail
|
|
@@ -25608,7 +25735,7 @@ export class DescribeApisecApiResourcesResponseBodyData extends $tea.Model {
|
|
|
25608
25735
|
* @remarks
|
|
25609
25736
|
* The business purpose of the API.
|
|
25610
25737
|
*
|
|
25611
|
-
* > You can call the [DescribeApisecRules](
|
|
25738
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the business purpose of the API.
|
|
25612
25739
|
*
|
|
25613
25740
|
* @example
|
|
25614
25741
|
* SendMail
|
|
@@ -25795,7 +25922,7 @@ export class DescribeApisecAssetTrendResponseBodyData extends $tea.Model {
|
|
|
25795
25922
|
assetOffline?: number;
|
|
25796
25923
|
/**
|
|
25797
25924
|
* @remarks
|
|
25798
|
-
* The
|
|
25925
|
+
* The time for statistics. Specify a UNIX timestamp in UTC. Unit: seconds.
|
|
25799
25926
|
*
|
|
25800
25927
|
* @example
|
|
25801
25928
|
* 1683600042
|
|
@@ -25919,7 +26046,7 @@ export class DescribeApisecEventsResponseBodyData extends $tea.Model {
|
|
|
25919
26046
|
* @remarks
|
|
25920
26047
|
* The business purpose of the API.
|
|
25921
26048
|
*
|
|
25922
|
-
* > You can call the [DescribeApisecRules](
|
|
26049
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the business purpose of the API.
|
|
25923
26050
|
*
|
|
25924
26051
|
* @example
|
|
25925
26052
|
* SendMail
|
|
@@ -26006,7 +26133,7 @@ export class DescribeApisecEventsResponseBodyData extends $tea.Model {
|
|
|
26006
26133
|
* @remarks
|
|
26007
26134
|
* The type of the event.
|
|
26008
26135
|
*
|
|
26009
|
-
* > You can call the [DescribeApisecRules](
|
|
26136
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported event types.
|
|
26010
26137
|
*
|
|
26011
26138
|
* @example
|
|
26012
26139
|
* ObtainSensitiveUnauthorized
|
|
@@ -26490,6 +26617,7 @@ export class DescribeApisecSensitiveDomainStatisticResponseBodyData extends $tea
|
|
|
26490
26617
|
/**
|
|
26491
26618
|
* @remarks
|
|
26492
26619
|
* The code of the sensitive data.
|
|
26620
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported sensitive data types.
|
|
26493
26621
|
*
|
|
26494
26622
|
* @example
|
|
26495
26623
|
* 10
|
|
@@ -26497,7 +26625,11 @@ export class DescribeApisecSensitiveDomainStatisticResponseBodyData extends $tea
|
|
|
26497
26625
|
sensitiveCode?: string;
|
|
26498
26626
|
/**
|
|
26499
26627
|
* @remarks
|
|
26500
|
-
* The sensitivity level of the sensitive data.
|
|
26628
|
+
* The sensitivity level of the sensitive data.Valid values:
|
|
26629
|
+
*
|
|
26630
|
+
* * **S1**: low sensitivity.
|
|
26631
|
+
* * **S2**: moderate sensitivity.
|
|
26632
|
+
* * **S3**: high sensitivity.
|
|
26501
26633
|
*
|
|
26502
26634
|
* @example
|
|
26503
26635
|
* L3
|
|
@@ -27399,11 +27531,21 @@ export class DescribeCloudResourceAccessPortDetailsResponseBodyAccessPortDetails
|
|
|
27399
27531
|
|
|
27400
27532
|
export class DescribeCloudResourcesResponseBodyCloudResources extends $tea.Model {
|
|
27401
27533
|
/**
|
|
27534
|
+
* @remarks
|
|
27535
|
+
* The number of the HTTP ports that are added to WAF.
|
|
27536
|
+
*
|
|
27537
|
+
* > This parameter is returned only if the cloud service is ECS or CLB.
|
|
27538
|
+
*
|
|
27402
27539
|
* @example
|
|
27403
27540
|
* 1
|
|
27404
27541
|
*/
|
|
27405
27542
|
httpPortCount?: number;
|
|
27406
27543
|
/**
|
|
27544
|
+
* @remarks
|
|
27545
|
+
* The number of the HTTPS ports that are added to WAF.
|
|
27546
|
+
*
|
|
27547
|
+
* > This parameter is returned only if the cloud service is ECS or CLB.
|
|
27548
|
+
*
|
|
27407
27549
|
* @example
|
|
27408
27550
|
* 1
|
|
27409
27551
|
*/
|
|
@@ -27443,16 +27585,25 @@ export class DescribeCloudResourcesResponseBodyCloudResources extends $tea.Model
|
|
|
27443
27585
|
*/
|
|
27444
27586
|
resourceInstance?: string;
|
|
27445
27587
|
/**
|
|
27588
|
+
* @remarks
|
|
27589
|
+
* The ID of the instance that is added to WAF.
|
|
27590
|
+
*
|
|
27446
27591
|
* @example
|
|
27447
27592
|
* lb-uf60ub45fr9b***
|
|
27448
27593
|
*/
|
|
27449
27594
|
resourceInstanceId?: string;
|
|
27450
27595
|
/**
|
|
27596
|
+
* @remarks
|
|
27597
|
+
* The IP address of the instance that is added to WAF.
|
|
27598
|
+
*
|
|
27451
27599
|
* @example
|
|
27452
27600
|
* 1.1.1.1
|
|
27453
27601
|
*/
|
|
27454
27602
|
resourceInstanceIp?: string;
|
|
27455
27603
|
/**
|
|
27604
|
+
* @remarks
|
|
27605
|
+
* The name of the instance that is added to WAF.
|
|
27606
|
+
*
|
|
27456
27607
|
* @example
|
|
27457
27608
|
* test-name
|
|
27458
27609
|
*/
|
|
@@ -27475,6 +27626,9 @@ export class DescribeCloudResourcesResponseBodyCloudResources extends $tea.Model
|
|
|
27475
27626
|
* * **mse**: MSE.
|
|
27476
27627
|
* * **fc**: Function Compute.
|
|
27477
27628
|
* * **sae**: SAE.
|
|
27629
|
+
* * **ecs**: ECS.
|
|
27630
|
+
* * **clb4**: Layer 4 CLB.
|
|
27631
|
+
* * **clb7**: Layer 7 CLB.
|
|
27478
27632
|
*
|
|
27479
27633
|
* @example
|
|
27480
27634
|
* alb
|
|
@@ -29134,6 +29288,25 @@ export class DescribeDomainDetailResponseBodyRedirectBackends extends $tea.Model
|
|
|
29134
29288
|
}
|
|
29135
29289
|
}
|
|
29136
29290
|
|
|
29291
|
+
export class DescribeDomainDetailResponseBodyRedirectBackupBackends extends $tea.Model {
|
|
29292
|
+
backend?: string;
|
|
29293
|
+
static names(): { [key: string]: string } {
|
|
29294
|
+
return {
|
|
29295
|
+
backend: 'Backend',
|
|
29296
|
+
};
|
|
29297
|
+
}
|
|
29298
|
+
|
|
29299
|
+
static types(): { [key: string]: any } {
|
|
29300
|
+
return {
|
|
29301
|
+
backend: 'string',
|
|
29302
|
+
};
|
|
29303
|
+
}
|
|
29304
|
+
|
|
29305
|
+
constructor(map?: { [key: string]: any }) {
|
|
29306
|
+
super(map);
|
|
29307
|
+
}
|
|
29308
|
+
}
|
|
29309
|
+
|
|
29137
29310
|
export class DescribeDomainDetailResponseBodyRedirectRequestHeaders extends $tea.Model {
|
|
29138
29311
|
/**
|
|
29139
29312
|
* @remarks
|
|
@@ -29176,6 +29349,7 @@ export class DescribeDomainDetailResponseBodyRedirect extends $tea.Model {
|
|
|
29176
29349
|
* An array of addresses of origin servers.
|
|
29177
29350
|
*/
|
|
29178
29351
|
backends?: DescribeDomainDetailResponseBodyRedirectBackends[];
|
|
29352
|
+
backupBackends?: DescribeDomainDetailResponseBodyRedirectBackupBackends[];
|
|
29179
29353
|
/**
|
|
29180
29354
|
* @remarks
|
|
29181
29355
|
* The timeout period of the connection. Unit: seconds. Valid values: 5 to 120.
|
|
@@ -29303,6 +29477,7 @@ export class DescribeDomainDetailResponseBodyRedirect extends $tea.Model {
|
|
|
29303
29477
|
static names(): { [key: string]: string } {
|
|
29304
29478
|
return {
|
|
29305
29479
|
backends: 'Backends',
|
|
29480
|
+
backupBackends: 'BackupBackends',
|
|
29306
29481
|
connectTimeout: 'ConnectTimeout',
|
|
29307
29482
|
focusHttpBackend: 'FocusHttpBackend',
|
|
29308
29483
|
keepalive: 'Keepalive',
|
|
@@ -29322,6 +29497,7 @@ export class DescribeDomainDetailResponseBodyRedirect extends $tea.Model {
|
|
|
29322
29497
|
static types(): { [key: string]: any } {
|
|
29323
29498
|
return {
|
|
29324
29499
|
backends: { 'type': 'array', 'itemType': DescribeDomainDetailResponseBodyRedirectBackends },
|
|
29500
|
+
backupBackends: { 'type': 'array', 'itemType': DescribeDomainDetailResponseBodyRedirectBackupBackends },
|
|
29325
29501
|
connectTimeout: 'number',
|
|
29326
29502
|
focusHttpBackend: 'boolean',
|
|
29327
29503
|
keepalive: 'boolean',
|
|
@@ -30155,7 +30331,7 @@ export class DescribeFreeUserEventsResponseBodyEvent extends $tea.Model {
|
|
|
30155
30331
|
* @remarks
|
|
30156
30332
|
* The type of the security event.
|
|
30157
30333
|
*
|
|
30158
|
-
* > You can call the [DescribeApisecRules](
|
|
30334
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported types of security events.
|
|
30159
30335
|
*
|
|
30160
30336
|
* @example
|
|
30161
30337
|
* Event_DataTraverse
|
|
@@ -33089,7 +33265,7 @@ export class DescribeSensitiveOutboundStatisticResponseBodyData extends $tea.Mod
|
|
|
33089
33265
|
* @remarks
|
|
33090
33266
|
* The type of the sensitive data.
|
|
33091
33267
|
*
|
|
33092
|
-
* > You can call the [DescribeApisecRules](
|
|
33268
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported types of sensitive data.
|
|
33093
33269
|
*
|
|
33094
33270
|
* @example
|
|
33095
33271
|
* 1001
|
|
@@ -33242,6 +33418,14 @@ export class DescribeSensitiveRequestLogResponseBodyData extends $tea.Model {
|
|
|
33242
33418
|
* a.****.com
|
|
33243
33419
|
*/
|
|
33244
33420
|
matchedHost?: string;
|
|
33421
|
+
/**
|
|
33422
|
+
* @remarks
|
|
33423
|
+
* IP region, formatted as a region code.
|
|
33424
|
+
*
|
|
33425
|
+
* @example
|
|
33426
|
+
* CN
|
|
33427
|
+
*/
|
|
33428
|
+
remoteCountryId?: string;
|
|
33245
33429
|
/**
|
|
33246
33430
|
* @remarks
|
|
33247
33431
|
* The time when the request was initiated. The value is a UNIX timestamp displayed in UTC. Unit: seconds.
|
|
@@ -33273,6 +33457,7 @@ export class DescribeSensitiveRequestLogResponseBodyData extends $tea.Model {
|
|
|
33273
33457
|
clientIP: 'ClientIP',
|
|
33274
33458
|
count: 'Count',
|
|
33275
33459
|
matchedHost: 'MatchedHost',
|
|
33460
|
+
remoteCountryId: 'RemoteCountryId',
|
|
33276
33461
|
requestTime: 'RequestTime',
|
|
33277
33462
|
sensitiveList: 'SensitiveList',
|
|
33278
33463
|
traceId: 'TraceId',
|
|
@@ -33286,6 +33471,7 @@ export class DescribeSensitiveRequestLogResponseBodyData extends $tea.Model {
|
|
|
33286
33471
|
clientIP: 'string',
|
|
33287
33472
|
count: 'number',
|
|
33288
33473
|
matchedHost: 'string',
|
|
33474
|
+
remoteCountryId: 'string',
|
|
33289
33475
|
requestTime: 'number',
|
|
33290
33476
|
sensitiveList: 'string',
|
|
33291
33477
|
traceId: 'string',
|
|
@@ -33473,7 +33659,7 @@ export class DescribeSensitiveStatisticResponseBodyData extends $tea.Model {
|
|
|
33473
33659
|
* @remarks
|
|
33474
33660
|
* The type of the sensitive data.
|
|
33475
33661
|
*
|
|
33476
|
-
* > You can call the [DescribeApisecRules](
|
|
33662
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported types of sensitive data.
|
|
33477
33663
|
*
|
|
33478
33664
|
* @example
|
|
33479
33665
|
* 1003
|
|
@@ -33579,6 +33765,8 @@ export class DescribeUserAbnormalTrendResponseBodyTrend extends $tea.Model {
|
|
|
33579
33765
|
* @remarks
|
|
33580
33766
|
* The time at which the API was called. The value is a UNIX timestamp displayed in UTC. Unit: seconds.
|
|
33581
33767
|
*
|
|
33768
|
+
* >Notice: The parameter has been deprecated, it is recommended to use the Timestamp parameter.
|
|
33769
|
+
*
|
|
33582
33770
|
* @example
|
|
33583
33771
|
* 1722268800
|
|
33584
33772
|
*/
|
|
@@ -33645,7 +33833,7 @@ export class DescribeUserAbnormalTypeResponseBodyAbnormal extends $tea.Model {
|
|
|
33645
33833
|
* @remarks
|
|
33646
33834
|
* The type of the risk.
|
|
33647
33835
|
*
|
|
33648
|
-
* > You can call the [DescribeApisecRules](
|
|
33836
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported types of risks.
|
|
33649
33837
|
*
|
|
33650
33838
|
* @example
|
|
33651
33839
|
* LackOfSpeedLimit
|
|
@@ -33786,6 +33974,7 @@ export class DescribeUserEventTrendResponseBodyTrend extends $tea.Model {
|
|
|
33786
33974
|
/**
|
|
33787
33975
|
* @remarks
|
|
33788
33976
|
* The time at which the API was called. The value is a UNIX timestamp displayed in UTC. Unit: seconds.
|
|
33977
|
+
* >Notice: The parameter has been deprecated, it is recommended to use the Timestamp parameter.
|
|
33789
33978
|
*
|
|
33790
33979
|
* @example
|
|
33791
33980
|
* 1723435200
|
|
@@ -33853,7 +34042,7 @@ export class DescribeUserEventTypeResponseBodyEvent extends $tea.Model {
|
|
|
33853
34042
|
* @remarks
|
|
33854
34043
|
* The type of the security event.
|
|
33855
34044
|
*
|
|
33856
|
-
* > You can call the [DescribeApisecRules](
|
|
34045
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported types of security events.
|
|
33857
34046
|
*
|
|
33858
34047
|
* @example
|
|
33859
34048
|
* Event_AbnormalFrequency
|
|
@@ -34725,6 +34914,7 @@ export class ModifyDomainRequestRedirect extends $tea.Model {
|
|
|
34725
34914
|
* * If you use the domain name type, specify the value in the ["domain"] format. You can enter up to 20 domain names.
|
|
34726
34915
|
*/
|
|
34727
34916
|
backends?: string[];
|
|
34917
|
+
backupBackends?: string[];
|
|
34728
34918
|
/**
|
|
34729
34919
|
* @remarks
|
|
34730
34920
|
* Specifies whether to enable the public cloud disaster recovery feature. Valid values:
|
|
@@ -34889,6 +35079,7 @@ export class ModifyDomainRequestRedirect extends $tea.Model {
|
|
|
34889
35079
|
static names(): { [key: string]: string } {
|
|
34890
35080
|
return {
|
|
34891
35081
|
backends: 'Backends',
|
|
35082
|
+
backupBackends: 'BackupBackends',
|
|
34892
35083
|
cnameEnabled: 'CnameEnabled',
|
|
34893
35084
|
connectTimeout: 'ConnectTimeout',
|
|
34894
35085
|
focusHttpBackend: 'FocusHttpBackend',
|
|
@@ -34910,6 +35101,7 @@ export class ModifyDomainRequestRedirect extends $tea.Model {
|
|
|
34910
35101
|
static types(): { [key: string]: any } {
|
|
34911
35102
|
return {
|
|
34912
35103
|
backends: { 'type': 'array', 'itemType': 'string' },
|
|
35104
|
+
backupBackends: { 'type': 'array', 'itemType': 'string' },
|
|
34913
35105
|
cnameEnabled: 'boolean',
|
|
34914
35106
|
connectTimeout: 'number',
|
|
34915
35107
|
focusHttpBackend: 'boolean',
|
|
@@ -35348,6 +35540,10 @@ export default class Client extends OpenApi {
|
|
|
35348
35540
|
query["ResourceManagerResourceGroupId"] = request.resourceManagerResourceGroupId;
|
|
35349
35541
|
}
|
|
35350
35542
|
|
|
35543
|
+
if (!Util.isUnset(request.tag)) {
|
|
35544
|
+
query["Tag"] = request.tag;
|
|
35545
|
+
}
|
|
35546
|
+
|
|
35351
35547
|
let req = new $OpenApi.OpenApiRequest({
|
|
35352
35548
|
query: OpenApiUtil.query(query),
|
|
35353
35549
|
});
|
|
@@ -35624,6 +35820,10 @@ export default class Client extends OpenApi {
|
|
|
35624
35820
|
query["ResourceManagerResourceGroupId"] = request.resourceManagerResourceGroupId;
|
|
35625
35821
|
}
|
|
35626
35822
|
|
|
35823
|
+
if (!Util.isUnset(request.tag)) {
|
|
35824
|
+
query["Tag"] = request.tag;
|
|
35825
|
+
}
|
|
35826
|
+
|
|
35627
35827
|
let req = new $OpenApi.OpenApiRequest({
|
|
35628
35828
|
query: OpenApiUtil.query(query),
|
|
35629
35829
|
});
|