@alicloud/waf-openapi20211001 4.0.5 → 4.0.6
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 +248 -119
- package/dist/client.js +1066 -173
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1275 -279
package/src/client.ts
CHANGED
|
@@ -464,11 +464,11 @@ export class CreateDomainRequestListen extends $dara.Model {
|
|
|
464
464
|
certId?: string;
|
|
465
465
|
/**
|
|
466
466
|
* @remarks
|
|
467
|
-
* The type of cipher
|
|
467
|
+
* The type of the cipher suites that you want to add. This parameter is available only if you specify **HttpsPorts**. Valid values:
|
|
468
468
|
*
|
|
469
|
-
* * **1
|
|
470
|
-
* * **2
|
|
471
|
-
* * **99
|
|
469
|
+
* * **1**: all cipher suites.
|
|
470
|
+
* * **2**: strong cipher suites. This value is available only if you set **TLSVersion** to **tlsv1.2**.
|
|
471
|
+
* * **99**: custom cipher suites.
|
|
472
472
|
*
|
|
473
473
|
* @example
|
|
474
474
|
* 2
|
|
@@ -476,7 +476,7 @@ export class CreateDomainRequestListen extends $dara.Model {
|
|
|
476
476
|
cipherSuite?: number;
|
|
477
477
|
/**
|
|
478
478
|
* @remarks
|
|
479
|
-
* The custom cipher
|
|
479
|
+
* The custom cipher suites that you want to add.
|
|
480
480
|
*/
|
|
481
481
|
customCiphers?: string[];
|
|
482
482
|
/**
|
|
@@ -495,7 +495,7 @@ export class CreateDomainRequestListen extends $dara.Model {
|
|
|
495
495
|
enableTLSv3?: boolean;
|
|
496
496
|
/**
|
|
497
497
|
* @remarks
|
|
498
|
-
* Specifies whether to enable
|
|
498
|
+
* Specifies whether to enable the exclusive IP address feature. This parameter is available only if you set **IPv6Enabled** to **false** and **ProtectionResource** to **share**. Valid values:
|
|
499
499
|
*
|
|
500
500
|
* * **true**
|
|
501
501
|
* * **false** (default)
|
|
@@ -506,7 +506,7 @@ export class CreateDomainRequestListen extends $dara.Model {
|
|
|
506
506
|
exclusiveIp?: boolean;
|
|
507
507
|
/**
|
|
508
508
|
* @remarks
|
|
509
|
-
* Specifies whether to enable HTTP to HTTPS
|
|
509
|
+
* Specifies whether to enable force redirect from HTTP to HTTPS for received requests. This parameter is available only if you specify HttpsPorts and leave HttpPorts empty. Valid values:
|
|
510
510
|
*
|
|
511
511
|
* * **true**
|
|
512
512
|
* * **false**
|
|
@@ -528,17 +528,17 @@ export class CreateDomainRequestListen extends $dara.Model {
|
|
|
528
528
|
http2Enabled?: boolean;
|
|
529
529
|
/**
|
|
530
530
|
* @remarks
|
|
531
|
-
* The HTTP listener
|
|
531
|
+
* The HTTP listener ports.
|
|
532
532
|
*/
|
|
533
533
|
httpPorts?: number[];
|
|
534
534
|
/**
|
|
535
535
|
* @remarks
|
|
536
|
-
* The HTTPS listener
|
|
536
|
+
* The HTTPS listener ports.
|
|
537
537
|
*/
|
|
538
538
|
httpsPorts?: number[];
|
|
539
539
|
/**
|
|
540
540
|
* @remarks
|
|
541
|
-
* Specifies whether to enable IPv6. Valid values:
|
|
541
|
+
* Specifies whether to enable IPv6 protection. Valid values:
|
|
542
542
|
*
|
|
543
543
|
* * **true**
|
|
544
544
|
* * **false** (default)
|
|
@@ -551,8 +551,8 @@ export class CreateDomainRequestListen extends $dara.Model {
|
|
|
551
551
|
* @remarks
|
|
552
552
|
* The type of the protection resource. Valid values:
|
|
553
553
|
*
|
|
554
|
-
* * **share
|
|
555
|
-
* * **gslb
|
|
554
|
+
* * **share** (default): a shared cluster.
|
|
555
|
+
* * **gslb**: shared cluster-based intelligent load balancing.
|
|
556
556
|
*
|
|
557
557
|
* @example
|
|
558
558
|
* share
|
|
@@ -585,7 +585,7 @@ export class CreateDomainRequestListen extends $dara.Model {
|
|
|
585
585
|
SM2CertId?: string;
|
|
586
586
|
/**
|
|
587
587
|
* @remarks
|
|
588
|
-
* Specifies whether to
|
|
588
|
+
* Specifies whether to add an SM certificate.
|
|
589
589
|
*
|
|
590
590
|
* @example
|
|
591
591
|
* true
|
|
@@ -596,7 +596,7 @@ export class CreateDomainRequestListen extends $dara.Model {
|
|
|
596
596
|
SM2Enabled?: boolean;
|
|
597
597
|
/**
|
|
598
598
|
* @remarks
|
|
599
|
-
* The
|
|
599
|
+
* The Transport Layer Security (TLS) version that you want to add. This parameter is available only if you specify **HttpsPorts**. Valid values:
|
|
600
600
|
*
|
|
601
601
|
* * **tlsv1**
|
|
602
602
|
* * **tlsv1.1**
|
|
@@ -608,11 +608,11 @@ export class CreateDomainRequestListen extends $dara.Model {
|
|
|
608
608
|
TLSVersion?: string;
|
|
609
609
|
/**
|
|
610
610
|
* @remarks
|
|
611
|
-
* The method that
|
|
611
|
+
* The method that is used to obtain the originating IP address of a client. Valid values:
|
|
612
612
|
*
|
|
613
|
-
* * **0
|
|
614
|
-
* * **1
|
|
615
|
-
* * **2
|
|
613
|
+
* * **0** (default): Client traffic is not filtered by a Layer 7 proxy before the traffic reaches WAF.
|
|
614
|
+
* * **1**: WAF reads the first value of the X-Forwarded-For (XFF) header field as the originating IP address of the client.
|
|
615
|
+
* * **2**: WAF reads the value of a custom header field as the originating IP address of the client.
|
|
616
616
|
*
|
|
617
617
|
* @example
|
|
618
618
|
* 1
|
|
@@ -620,7 +620,7 @@ export class CreateDomainRequestListen extends $dara.Model {
|
|
|
620
620
|
xffHeaderMode?: number;
|
|
621
621
|
/**
|
|
622
622
|
* @remarks
|
|
623
|
-
* The custom header
|
|
623
|
+
* The custom header fields that are used to obtain the originating IP address of a client.
|
|
624
624
|
*/
|
|
625
625
|
xffHeaders?: string[];
|
|
626
626
|
static names(): { [key: string]: string } {
|
|
@@ -691,7 +691,7 @@ export class CreateDomainRequestListen extends $dara.Model {
|
|
|
691
691
|
export class CreateDomainRequestRedirectRequestHeaders extends $dara.Model {
|
|
692
692
|
/**
|
|
693
693
|
* @remarks
|
|
694
|
-
* The custom header field.
|
|
694
|
+
* The key of the custom header field.
|
|
695
695
|
*
|
|
696
696
|
* @example
|
|
697
697
|
* aaa
|
|
@@ -734,6 +734,10 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
734
734
|
* The IP addresses or domain names of the origin server.
|
|
735
735
|
*/
|
|
736
736
|
backends?: string[];
|
|
737
|
+
/**
|
|
738
|
+
* @remarks
|
|
739
|
+
* The secondary IP addresses or domain names of the origin server.
|
|
740
|
+
*/
|
|
737
741
|
backupBackends?: string[];
|
|
738
742
|
/**
|
|
739
743
|
* @remarks
|
|
@@ -748,7 +752,7 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
748
752
|
cnameEnabled?: boolean;
|
|
749
753
|
/**
|
|
750
754
|
* @remarks
|
|
751
|
-
* The timeout period
|
|
755
|
+
* The timeout period of connections. Unit: seconds. Valid values: 1 to 3600.
|
|
752
756
|
*
|
|
753
757
|
* @example
|
|
754
758
|
* 120
|
|
@@ -756,7 +760,7 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
756
760
|
connectTimeout?: number;
|
|
757
761
|
/**
|
|
758
762
|
* @remarks
|
|
759
|
-
* Specifies whether to enable HTTPS to HTTP
|
|
763
|
+
* Specifies whether to enable force redirect from HTTPS to HTTP for back-to-origin requests. This parameter is available only if you specify **HttpsPorts**. Valid values:
|
|
760
764
|
*
|
|
761
765
|
* * **true**
|
|
762
766
|
* * **false**
|
|
@@ -780,7 +784,7 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
780
784
|
* @remarks
|
|
781
785
|
* The number of reused persistent connections. Valid values: 60 to 1000.
|
|
782
786
|
*
|
|
783
|
-
* > This parameter specifies the number of
|
|
787
|
+
* > This parameter specifies the number of persistent connections that can be reused after you enable the persistent connection feature.
|
|
784
788
|
*
|
|
785
789
|
* @example
|
|
786
790
|
* 1000
|
|
@@ -788,9 +792,9 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
788
792
|
keepaliveRequests?: number;
|
|
789
793
|
/**
|
|
790
794
|
* @remarks
|
|
791
|
-
* The timeout period
|
|
795
|
+
* The timeout period of idle persistent connections. Valid values: 1 to 60. Default value: 15. Unit: seconds.
|
|
792
796
|
*
|
|
793
|
-
* > This parameter specifies the time
|
|
797
|
+
* > This parameter specifies the period of time after which an idle persistent connection is closed.
|
|
794
798
|
*
|
|
795
799
|
* @example
|
|
796
800
|
* 15
|
|
@@ -802,7 +806,7 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
802
806
|
*
|
|
803
807
|
* * **iphash**
|
|
804
808
|
* * **roundRobin**
|
|
805
|
-
* * **leastTime
|
|
809
|
+
* * **leastTime**: This value is available only if you set **ProtectionResource** to **gslb**.
|
|
806
810
|
*
|
|
807
811
|
* This parameter is required.
|
|
808
812
|
*
|
|
@@ -812,7 +816,7 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
812
816
|
loadbalance?: string;
|
|
813
817
|
/**
|
|
814
818
|
* @remarks
|
|
815
|
-
* The timeout period
|
|
819
|
+
* The timeout period of read connections. Unit: seconds. Valid values: 1 to 3600.
|
|
816
820
|
*
|
|
817
821
|
* @example
|
|
818
822
|
* 200
|
|
@@ -820,14 +824,14 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
820
824
|
readTimeout?: number;
|
|
821
825
|
/**
|
|
822
826
|
* @remarks
|
|
823
|
-
* The custom header
|
|
827
|
+
* The custom header fields, which are key-value pairs. The fields are used to mark requests that pass through WAF.
|
|
824
828
|
*
|
|
825
|
-
* When a request passes through WAF, the custom header
|
|
829
|
+
* When a request passes through WAF, WAF automatically adds the custom header fields to the request to mark the request. This way, the backend service can identify requests that are processed by WAF.
|
|
826
830
|
*/
|
|
827
831
|
requestHeaders?: CreateDomainRequestRedirectRequestHeaders[];
|
|
828
832
|
/**
|
|
829
833
|
* @remarks
|
|
830
|
-
* Specifies whether WAF retries
|
|
834
|
+
* Specifies whether WAF retries if WAF fails to forward requests to the origin server. Valid values:
|
|
831
835
|
*
|
|
832
836
|
* * **true** (default)
|
|
833
837
|
* * **false**
|
|
@@ -838,11 +842,11 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
838
842
|
retry?: boolean;
|
|
839
843
|
/**
|
|
840
844
|
* @remarks
|
|
841
|
-
* The forwarding rules
|
|
845
|
+
* The forwarding rules for the hybrid cloud mode. The value is a string that consists of JSON arrays. Each element in a JSON array is a JSON struct that contains the following fields:
|
|
842
846
|
*
|
|
843
|
-
* * **rs**: the back-to-origin IP addresses or CNAMEs.
|
|
844
|
-
* * **location**: the name of the protection node.
|
|
845
|
-
* * **locationId**: the ID of the protection node.
|
|
847
|
+
* * **rs**: the back-to-origin IP addresses or CNAMEs. Data type: array.
|
|
848
|
+
* * **location**: the name of the protection node. Data type: string.
|
|
849
|
+
* * **locationId**: the ID of the protection node. Data type: long.
|
|
846
850
|
*
|
|
847
851
|
* @example
|
|
848
852
|
* [
|
|
@@ -858,7 +862,7 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
858
862
|
routingRules?: string;
|
|
859
863
|
/**
|
|
860
864
|
* @remarks
|
|
861
|
-
* Specifies whether to enable
|
|
865
|
+
* Specifies whether to enable the Server Name Indication (SNI) feature for back-to-origin requests. This parameter is available only if you specify **HttpsPorts**. Valid values:
|
|
862
866
|
*
|
|
863
867
|
* * **true**
|
|
864
868
|
* * **false** (default)
|
|
@@ -869,7 +873,7 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
869
873
|
sniEnabled?: boolean;
|
|
870
874
|
/**
|
|
871
875
|
* @remarks
|
|
872
|
-
* The value of the SNI field. If you do not specify this parameter, the value of the **Host** field is automatically used.
|
|
876
|
+
* The custom value of the SNI field. If you do not specify this parameter, the value of the **Host** header field is automatically used. In most cases, you do not need to specify a custom value for the SNI field. However, if you want WAF to use an SNI field whose value is different from the value of the Host header field in back-to-origin requests, you can specify a custom value for the SNI field.
|
|
873
877
|
*
|
|
874
878
|
* > This parameter is required only if you set **SniEnabled** to **true**.
|
|
875
879
|
*
|
|
@@ -879,7 +883,7 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
879
883
|
sniHost?: string;
|
|
880
884
|
/**
|
|
881
885
|
* @remarks
|
|
882
|
-
* The timeout period
|
|
886
|
+
* The timeout period of write connections. Unit: seconds. Valid values: 1 to 3600.
|
|
883
887
|
*
|
|
884
888
|
* @example
|
|
885
889
|
* 200
|
|
@@ -887,7 +891,7 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
887
891
|
writeTimeout?: number;
|
|
888
892
|
/**
|
|
889
893
|
* @remarks
|
|
890
|
-
* Specifies whether to use X-Forward-For-Proto to pass the protocol used by WAF to forward requests to the origin server. Valid values:
|
|
894
|
+
* Specifies whether to use the X-Forward-For-Proto header field to pass the protocol used by WAF to forward requests to the origin server. Valid values:
|
|
891
895
|
*
|
|
892
896
|
* * **true** (default)
|
|
893
897
|
* * **false**
|
|
@@ -959,7 +963,21 @@ export class CreateDomainRequestRedirect extends $dara.Model {
|
|
|
959
963
|
}
|
|
960
964
|
|
|
961
965
|
export class CreateDomainRequestTag extends $dara.Model {
|
|
966
|
+
/**
|
|
967
|
+
* @remarks
|
|
968
|
+
* The key of the tag.
|
|
969
|
+
*
|
|
970
|
+
* @example
|
|
971
|
+
* Tagkey1
|
|
972
|
+
*/
|
|
962
973
|
key?: string;
|
|
974
|
+
/**
|
|
975
|
+
* @remarks
|
|
976
|
+
* The value of the tag.
|
|
977
|
+
*
|
|
978
|
+
* @example
|
|
979
|
+
* TagValue1
|
|
980
|
+
*/
|
|
963
981
|
value?: string;
|
|
964
982
|
static names(): { [key: string]: string } {
|
|
965
983
|
return {
|
|
@@ -985,7 +1003,21 @@ export class CreateDomainRequestTag extends $dara.Model {
|
|
|
985
1003
|
}
|
|
986
1004
|
|
|
987
1005
|
export class CreateDomainShrinkRequestTag extends $dara.Model {
|
|
1006
|
+
/**
|
|
1007
|
+
* @remarks
|
|
1008
|
+
* The key of the tag.
|
|
1009
|
+
*
|
|
1010
|
+
* @example
|
|
1011
|
+
* Tagkey1
|
|
1012
|
+
*/
|
|
988
1013
|
key?: string;
|
|
1014
|
+
/**
|
|
1015
|
+
* @remarks
|
|
1016
|
+
* The value of the tag.
|
|
1017
|
+
*
|
|
1018
|
+
* @example
|
|
1019
|
+
* TagValue1
|
|
1020
|
+
*/
|
|
989
1021
|
value?: string;
|
|
990
1022
|
static names(): { [key: string]: string } {
|
|
991
1023
|
return {
|
|
@@ -1027,6 +1059,13 @@ export class CreateDomainResponseBodyDomainInfo extends $dara.Model {
|
|
|
1027
1059
|
* www.aliyundoc.com
|
|
1028
1060
|
*/
|
|
1029
1061
|
domain?: string;
|
|
1062
|
+
/**
|
|
1063
|
+
* @remarks
|
|
1064
|
+
* The name of the protected object that is generated.
|
|
1065
|
+
*
|
|
1066
|
+
* @example
|
|
1067
|
+
* www.aliyundoc.com-waf
|
|
1068
|
+
*/
|
|
1030
1069
|
domainId?: string;
|
|
1031
1070
|
static names(): { [key: string]: string } {
|
|
1032
1071
|
return {
|
|
@@ -1349,6 +1388,10 @@ export class DescribeApisecAbnormalsResponseBodyData extends $dara.Model {
|
|
|
1349
1388
|
* 1684252800
|
|
1350
1389
|
*/
|
|
1351
1390
|
lastestTime?: number;
|
|
1391
|
+
/**
|
|
1392
|
+
* @example
|
|
1393
|
+
* 1684252800
|
|
1394
|
+
*/
|
|
1352
1395
|
latestDiscoverTime?: number;
|
|
1353
1396
|
/**
|
|
1354
1397
|
* @remarks
|
|
@@ -1668,6 +1711,11 @@ export class DescribeApisecApiResourcesResponseBodyData extends $dara.Model {
|
|
|
1668
1711
|
* Password changed
|
|
1669
1712
|
*/
|
|
1670
1713
|
note?: string;
|
|
1714
|
+
/**
|
|
1715
|
+
* @remarks
|
|
1716
|
+
* The list of protection objects corresponding to this asset.
|
|
1717
|
+
*/
|
|
1718
|
+
resources?: string[];
|
|
1671
1719
|
static names(): { [key: string]: string } {
|
|
1672
1720
|
return {
|
|
1673
1721
|
abnormalNum: 'AbnormalNum',
|
|
@@ -1692,6 +1740,7 @@ export class DescribeApisecApiResourcesResponseBodyData extends $dara.Model {
|
|
|
1692
1740
|
lastestTs: 'LastestTs',
|
|
1693
1741
|
matchedHost: 'MatchedHost',
|
|
1694
1742
|
note: 'Note',
|
|
1743
|
+
resources: 'Resources',
|
|
1695
1744
|
};
|
|
1696
1745
|
}
|
|
1697
1746
|
|
|
@@ -1719,6 +1768,7 @@ export class DescribeApisecApiResourcesResponseBodyData extends $dara.Model {
|
|
|
1719
1768
|
lastestTs: 'number',
|
|
1720
1769
|
matchedHost: 'string',
|
|
1721
1770
|
note: 'string',
|
|
1771
|
+
resources: { 'type': 'array', 'itemType': 'string' },
|
|
1722
1772
|
};
|
|
1723
1773
|
}
|
|
1724
1774
|
|
|
@@ -1726,6 +1776,9 @@ export class DescribeApisecApiResourcesResponseBodyData extends $dara.Model {
|
|
|
1726
1776
|
if(Array.isArray(this.examples)) {
|
|
1727
1777
|
$dara.Model.validateArray(this.examples);
|
|
1728
1778
|
}
|
|
1779
|
+
if(Array.isArray(this.resources)) {
|
|
1780
|
+
$dara.Model.validateArray(this.resources);
|
|
1781
|
+
}
|
|
1729
1782
|
super.validate();
|
|
1730
1783
|
}
|
|
1731
1784
|
|
|
@@ -1868,6 +1921,7 @@ export class DescribeApisecEventsResponseBodyData extends $dara.Model {
|
|
|
1868
1921
|
/**
|
|
1869
1922
|
* @remarks
|
|
1870
1923
|
* The number of attacks.
|
|
1924
|
+
* >Notice: The parameter has been deprecated, please use the Attackips parameter.
|
|
1871
1925
|
*
|
|
1872
1926
|
* @example
|
|
1873
1927
|
* 10
|
|
@@ -1936,6 +1990,11 @@ export class DescribeApisecEventsResponseBodyData extends $dara.Model {
|
|
|
1936
1990
|
* [{\\"ip\\":\\"72.*.*.119\\",\\"country_id\\":\\"US\\",\\"region_id\\":\\"\\",\\"cnt\\":\\"2100\\"}]
|
|
1937
1991
|
*/
|
|
1938
1992
|
attackIpInfo?: string;
|
|
1993
|
+
/**
|
|
1994
|
+
* @remarks
|
|
1995
|
+
* The source IP addresses of the attacks.
|
|
1996
|
+
*/
|
|
1997
|
+
attackIps?: string[];
|
|
1939
1998
|
/**
|
|
1940
1999
|
* @remarks
|
|
1941
2000
|
* The end of the time range to query. This value is a UNIX timestamp in UTC. Unit: seconds.
|
|
@@ -2086,6 +2145,7 @@ export class DescribeApisecEventsResponseBodyData extends $dara.Model {
|
|
|
2086
2145
|
attackCntInfo: 'AttackCntInfo',
|
|
2087
2146
|
attackIp: 'AttackIp',
|
|
2088
2147
|
attackIpInfo: 'AttackIpInfo',
|
|
2148
|
+
attackIps: 'AttackIps',
|
|
2089
2149
|
endTs: 'EndTs',
|
|
2090
2150
|
eventId: 'EventId',
|
|
2091
2151
|
eventInfo: 'EventInfo',
|
|
@@ -2114,6 +2174,7 @@ export class DescribeApisecEventsResponseBodyData extends $dara.Model {
|
|
|
2114
2174
|
attackCntInfo: 'string',
|
|
2115
2175
|
attackIp: 'string',
|
|
2116
2176
|
attackIpInfo: 'string',
|
|
2177
|
+
attackIps: { 'type': 'array', 'itemType': 'string' },
|
|
2117
2178
|
endTs: 'number',
|
|
2118
2179
|
eventId: 'string',
|
|
2119
2180
|
eventInfo: 'string',
|
|
@@ -2133,6 +2194,9 @@ export class DescribeApisecEventsResponseBodyData extends $dara.Model {
|
|
|
2133
2194
|
}
|
|
2134
2195
|
|
|
2135
2196
|
validate() {
|
|
2197
|
+
if(Array.isArray(this.attackIps)) {
|
|
2198
|
+
$dara.Model.validateArray(this.attackIps);
|
|
2199
|
+
}
|
|
2136
2200
|
super.validate();
|
|
2137
2201
|
}
|
|
2138
2202
|
|
|
@@ -2544,6 +2608,14 @@ export class DescribeApisecSensitiveDomainStatisticResponseBodyData extends $dar
|
|
|
2544
2608
|
}
|
|
2545
2609
|
|
|
2546
2610
|
export class DescribeApisecStatisticsResponseBodyData extends $dara.Model {
|
|
2611
|
+
/**
|
|
2612
|
+
* @remarks
|
|
2613
|
+
* The number of handled events.
|
|
2614
|
+
*
|
|
2615
|
+
* @example
|
|
2616
|
+
* 1
|
|
2617
|
+
*/
|
|
2618
|
+
actioned?: number;
|
|
2547
2619
|
/**
|
|
2548
2620
|
* @remarks
|
|
2549
2621
|
* The number of APIs.
|
|
@@ -2666,6 +2738,7 @@ export class DescribeApisecStatisticsResponseBodyData extends $dara.Model {
|
|
|
2666
2738
|
total?: number;
|
|
2667
2739
|
static names(): { [key: string]: string } {
|
|
2668
2740
|
return {
|
|
2741
|
+
actioned: 'Actioned',
|
|
2669
2742
|
api: 'Api',
|
|
2670
2743
|
confirmed: 'Confirmed',
|
|
2671
2744
|
domain: 'Domain',
|
|
@@ -2686,6 +2759,7 @@ export class DescribeApisecStatisticsResponseBodyData extends $dara.Model {
|
|
|
2686
2759
|
|
|
2687
2760
|
static types(): { [key: string]: any } {
|
|
2688
2761
|
return {
|
|
2762
|
+
actioned: 'number',
|
|
2689
2763
|
api: 'number',
|
|
2690
2764
|
confirmed: 'number',
|
|
2691
2765
|
domain: 'number',
|
|
@@ -3803,6 +3877,32 @@ export class DescribeDefaultHttpsResponseBodyDefaultHttps extends $dara.Model {
|
|
|
3803
3877
|
}
|
|
3804
3878
|
}
|
|
3805
3879
|
|
|
3880
|
+
export class DescribeDefenseResourceResponseBodyResourceResponseHeaders extends $dara.Model {
|
|
3881
|
+
key?: string;
|
|
3882
|
+
value?: string;
|
|
3883
|
+
static names(): { [key: string]: string } {
|
|
3884
|
+
return {
|
|
3885
|
+
key: 'Key',
|
|
3886
|
+
value: 'Value',
|
|
3887
|
+
};
|
|
3888
|
+
}
|
|
3889
|
+
|
|
3890
|
+
static types(): { [key: string]: any } {
|
|
3891
|
+
return {
|
|
3892
|
+
key: 'string',
|
|
3893
|
+
value: 'string',
|
|
3894
|
+
};
|
|
3895
|
+
}
|
|
3896
|
+
|
|
3897
|
+
validate() {
|
|
3898
|
+
super.validate();
|
|
3899
|
+
}
|
|
3900
|
+
|
|
3901
|
+
constructor(map?: { [key: string]: any }) {
|
|
3902
|
+
super(map);
|
|
3903
|
+
}
|
|
3904
|
+
}
|
|
3905
|
+
|
|
3806
3906
|
export class DescribeDefenseResourceResponseBodyResource extends $dara.Model {
|
|
3807
3907
|
/**
|
|
3808
3908
|
* @remarks
|
|
@@ -3938,6 +4038,7 @@ export class DescribeDefenseResourceResponseBodyResource extends $dara.Model {
|
|
|
3938
4038
|
* custom
|
|
3939
4039
|
*/
|
|
3940
4040
|
resourceOrigin?: string;
|
|
4041
|
+
responseHeaders?: DescribeDefenseResourceResponseBodyResourceResponseHeaders[];
|
|
3941
4042
|
/**
|
|
3942
4043
|
* @remarks
|
|
3943
4044
|
* Indicates whether a Layer 7 proxy is deployed in front of WAF, such as Anti-DDoS Proxy and Alibaba Cloud CDN. Valid values:
|
|
@@ -3966,6 +4067,7 @@ export class DescribeDefenseResourceResponseBodyResource extends $dara.Model {
|
|
|
3966
4067
|
resourceGroup: 'ResourceGroup',
|
|
3967
4068
|
resourceManagerResourceGroupId: 'ResourceManagerResourceGroupId',
|
|
3968
4069
|
resourceOrigin: 'ResourceOrigin',
|
|
4070
|
+
responseHeaders: 'ResponseHeaders',
|
|
3969
4071
|
xffStatus: 'XffStatus',
|
|
3970
4072
|
};
|
|
3971
4073
|
}
|
|
@@ -3987,6 +4089,7 @@ export class DescribeDefenseResourceResponseBodyResource extends $dara.Model {
|
|
|
3987
4089
|
resourceGroup: 'string',
|
|
3988
4090
|
resourceManagerResourceGroupId: 'string',
|
|
3989
4091
|
resourceOrigin: 'string',
|
|
4092
|
+
responseHeaders: { 'type': 'array', 'itemType': DescribeDefenseResourceResponseBodyResourceResponseHeaders },
|
|
3990
4093
|
xffStatus: 'number',
|
|
3991
4094
|
};
|
|
3992
4095
|
}
|
|
@@ -3998,6 +4101,9 @@ export class DescribeDefenseResourceResponseBodyResource extends $dara.Model {
|
|
|
3998
4101
|
if(this.detail) {
|
|
3999
4102
|
$dara.Model.validateMap(this.detail);
|
|
4000
4103
|
}
|
|
4104
|
+
if(Array.isArray(this.responseHeaders)) {
|
|
4105
|
+
$dara.Model.validateArray(this.responseHeaders);
|
|
4106
|
+
}
|
|
4001
4107
|
super.validate();
|
|
4002
4108
|
}
|
|
4003
4109
|
|
|
@@ -4317,6 +4423,32 @@ export class DescribeDefenseResourcesRequestTag extends $dara.Model {
|
|
|
4317
4423
|
}
|
|
4318
4424
|
}
|
|
4319
4425
|
|
|
4426
|
+
export class DescribeDefenseResourcesResponseBodyResourcesResponseHeaders extends $dara.Model {
|
|
4427
|
+
key?: string;
|
|
4428
|
+
value?: string;
|
|
4429
|
+
static names(): { [key: string]: string } {
|
|
4430
|
+
return {
|
|
4431
|
+
key: 'Key',
|
|
4432
|
+
value: 'Value',
|
|
4433
|
+
};
|
|
4434
|
+
}
|
|
4435
|
+
|
|
4436
|
+
static types(): { [key: string]: any } {
|
|
4437
|
+
return {
|
|
4438
|
+
key: 'string',
|
|
4439
|
+
value: 'string',
|
|
4440
|
+
};
|
|
4441
|
+
}
|
|
4442
|
+
|
|
4443
|
+
validate() {
|
|
4444
|
+
super.validate();
|
|
4445
|
+
}
|
|
4446
|
+
|
|
4447
|
+
constructor(map?: { [key: string]: any }) {
|
|
4448
|
+
super(map);
|
|
4449
|
+
}
|
|
4450
|
+
}
|
|
4451
|
+
|
|
4320
4452
|
export class DescribeDefenseResourcesResponseBodyResources extends $dara.Model {
|
|
4321
4453
|
/**
|
|
4322
4454
|
* @remarks
|
|
@@ -4441,6 +4573,7 @@ export class DescribeDefenseResourcesResponseBodyResources extends $dara.Model {
|
|
|
4441
4573
|
* custom
|
|
4442
4574
|
*/
|
|
4443
4575
|
resourceOrigin?: string;
|
|
4576
|
+
responseHeaders?: DescribeDefenseResourcesResponseBodyResourcesResponseHeaders[];
|
|
4444
4577
|
/**
|
|
4445
4578
|
* @remarks
|
|
4446
4579
|
* Indicates whether the X-Forwarded-For (XFF) header is used.
|
|
@@ -4466,6 +4599,7 @@ export class DescribeDefenseResourcesResponseBodyResources extends $dara.Model {
|
|
|
4466
4599
|
resourceGroup: 'ResourceGroup',
|
|
4467
4600
|
resourceManagerResourceGroupId: 'ResourceManagerResourceGroupId',
|
|
4468
4601
|
resourceOrigin: 'ResourceOrigin',
|
|
4602
|
+
responseHeaders: 'ResponseHeaders',
|
|
4469
4603
|
xffStatus: 'XffStatus',
|
|
4470
4604
|
};
|
|
4471
4605
|
}
|
|
@@ -4487,6 +4621,7 @@ export class DescribeDefenseResourcesResponseBodyResources extends $dara.Model {
|
|
|
4487
4621
|
resourceGroup: 'string',
|
|
4488
4622
|
resourceManagerResourceGroupId: 'string',
|
|
4489
4623
|
resourceOrigin: 'string',
|
|
4624
|
+
responseHeaders: { 'type': 'array', 'itemType': DescribeDefenseResourcesResponseBodyResourcesResponseHeaders },
|
|
4490
4625
|
xffStatus: 'number',
|
|
4491
4626
|
};
|
|
4492
4627
|
}
|
|
@@ -4498,6 +4633,9 @@ export class DescribeDefenseResourcesResponseBodyResources extends $dara.Model {
|
|
|
4498
4633
|
if(this.detail) {
|
|
4499
4634
|
$dara.Model.validateMap(this.detail);
|
|
4500
4635
|
}
|
|
4636
|
+
if(Array.isArray(this.responseHeaders)) {
|
|
4637
|
+
$dara.Model.validateArray(this.responseHeaders);
|
|
4638
|
+
}
|
|
4501
4639
|
super.validate();
|
|
4502
4640
|
}
|
|
4503
4641
|
|
|
@@ -9760,10 +9898,19 @@ export class DescribeSensitiveRequestLogResponseBodyData extends $dara.Model {
|
|
|
9760
9898
|
requestTime?: number;
|
|
9761
9899
|
/**
|
|
9762
9900
|
* @remarks
|
|
9763
|
-
* The sensitive data.
|
|
9901
|
+
* The sensitive data. The value of this parameter is a JSON string that contains multiple parameters. The Key of JSON is the sensitive information type identifier (including default and custom types), and the Value is the sensitive information data list.
|
|
9902
|
+
* > You can call the [DescribeApisecRules](https://help.aliyun.com/document_detail/2859155.html) operation to query the supported types of sensitive data.
|
|
9764
9903
|
*
|
|
9765
9904
|
* @example
|
|
9766
|
-
*
|
|
9905
|
+
* {
|
|
9906
|
+
* "1000":[
|
|
9907
|
+
* "90.88.49.19",
|
|
9908
|
+
* "90.88.49.19"
|
|
9909
|
+
* ],
|
|
9910
|
+
* "835436":[
|
|
9911
|
+
* "www.abc.com"
|
|
9912
|
+
* ]
|
|
9913
|
+
* }
|
|
9767
9914
|
*/
|
|
9768
9915
|
sensitiveList?: string;
|
|
9769
9916
|
/**
|
|
@@ -11089,6 +11236,32 @@ export class ModifyCloudResourceRequestRedirect extends $dara.Model {
|
|
|
11089
11236
|
}
|
|
11090
11237
|
}
|
|
11091
11238
|
|
|
11239
|
+
export class ModifyDefenseResourceXffRequestResponseHeaders extends $dara.Model {
|
|
11240
|
+
key?: string;
|
|
11241
|
+
value?: string;
|
|
11242
|
+
static names(): { [key: string]: string } {
|
|
11243
|
+
return {
|
|
11244
|
+
key: 'Key',
|
|
11245
|
+
value: 'Value',
|
|
11246
|
+
};
|
|
11247
|
+
}
|
|
11248
|
+
|
|
11249
|
+
static types(): { [key: string]: any } {
|
|
11250
|
+
return {
|
|
11251
|
+
key: 'string',
|
|
11252
|
+
value: 'string',
|
|
11253
|
+
};
|
|
11254
|
+
}
|
|
11255
|
+
|
|
11256
|
+
validate() {
|
|
11257
|
+
super.validate();
|
|
11258
|
+
}
|
|
11259
|
+
|
|
11260
|
+
constructor(map?: { [key: string]: any }) {
|
|
11261
|
+
super(map);
|
|
11262
|
+
}
|
|
11263
|
+
}
|
|
11264
|
+
|
|
11092
11265
|
export class ModifyDomainRequestListen extends $dara.Model {
|
|
11093
11266
|
/**
|
|
11094
11267
|
* @remarks
|
|
@@ -11100,11 +11273,11 @@ export class ModifyDomainRequestListen extends $dara.Model {
|
|
|
11100
11273
|
certId?: string;
|
|
11101
11274
|
/**
|
|
11102
11275
|
* @remarks
|
|
11103
|
-
* The type of cipher
|
|
11276
|
+
* The type of the cipher suites that you want to add. This parameter is available only if you specify **HttpsPorts**. Valid values:
|
|
11104
11277
|
*
|
|
11105
|
-
* * **1
|
|
11106
|
-
* * **2
|
|
11107
|
-
* * **99
|
|
11278
|
+
* * **1**: all cipher suites.
|
|
11279
|
+
* * **2**: strong cipher suites. This value is available only if you set **TLSVersion** to **tlsv1.2**.
|
|
11280
|
+
* * **99**: custom cipher suites.
|
|
11108
11281
|
*
|
|
11109
11282
|
* @example
|
|
11110
11283
|
* 2
|
|
@@ -11112,15 +11285,15 @@ export class ModifyDomainRequestListen extends $dara.Model {
|
|
|
11112
11285
|
cipherSuite?: number;
|
|
11113
11286
|
/**
|
|
11114
11287
|
* @remarks
|
|
11115
|
-
* The custom cipher suites that you want to add. This parameter is available only
|
|
11288
|
+
* The custom cipher suites that you want to add. This parameter is available only if you set **CipherSuite** to **99**.
|
|
11116
11289
|
*/
|
|
11117
11290
|
customCiphers?: string[];
|
|
11118
11291
|
/**
|
|
11119
11292
|
* @remarks
|
|
11120
|
-
* Specifies whether to support TLS 1.3. This parameter is available only
|
|
11293
|
+
* Specifies whether to support TLS 1.3. This parameter is available only if you specify **HttpsPorts**. Valid values:
|
|
11121
11294
|
*
|
|
11122
|
-
* * **true
|
|
11123
|
-
* * **false
|
|
11295
|
+
* * **true**
|
|
11296
|
+
* * **false**
|
|
11124
11297
|
*
|
|
11125
11298
|
* @example
|
|
11126
11299
|
* true
|
|
@@ -11128,10 +11301,10 @@ export class ModifyDomainRequestListen extends $dara.Model {
|
|
|
11128
11301
|
enableTLSv3?: boolean;
|
|
11129
11302
|
/**
|
|
11130
11303
|
* @remarks
|
|
11131
|
-
* Specifies whether to enable
|
|
11304
|
+
* Specifies whether to enable the exclusive IP address feature. This parameter is available only if you set **IPv6Enabled** to false and **ProtectionResource** to **share**. Valid values:
|
|
11132
11305
|
*
|
|
11133
|
-
* * **true
|
|
11134
|
-
* * **false
|
|
11306
|
+
* * **true**
|
|
11307
|
+
* * **false** (default)
|
|
11135
11308
|
*
|
|
11136
11309
|
* @example
|
|
11137
11310
|
* true
|
|
@@ -11139,10 +11312,10 @@ export class ModifyDomainRequestListen extends $dara.Model {
|
|
|
11139
11312
|
exclusiveIp?: boolean;
|
|
11140
11313
|
/**
|
|
11141
11314
|
* @remarks
|
|
11142
|
-
* Specifies whether to enable HTTP to HTTPS
|
|
11315
|
+
* Specifies whether to enable force redirect from HTTP to HTTPS for received requests. This parameter is available only if you specify **HttpsPorts** and leave **HttpPorts** empty. Valid values:
|
|
11143
11316
|
*
|
|
11144
|
-
* * **true
|
|
11145
|
-
* * **false
|
|
11317
|
+
* * **true**
|
|
11318
|
+
* * **false**
|
|
11146
11319
|
*
|
|
11147
11320
|
* @example
|
|
11148
11321
|
* true
|
|
@@ -11150,10 +11323,10 @@ export class ModifyDomainRequestListen extends $dara.Model {
|
|
|
11150
11323
|
focusHttps?: boolean;
|
|
11151
11324
|
/**
|
|
11152
11325
|
* @remarks
|
|
11153
|
-
* Specifies whether to enable HTTP/2. This parameter is available only
|
|
11326
|
+
* Specifies whether to enable HTTP/2. This parameter is available only if you specify **HttpsPorts**. Valid values:
|
|
11154
11327
|
*
|
|
11155
|
-
* * **true
|
|
11156
|
-
* * **false
|
|
11328
|
+
* * **true**
|
|
11329
|
+
* * **false** (default)
|
|
11157
11330
|
*
|
|
11158
11331
|
* @example
|
|
11159
11332
|
* true
|
|
@@ -11161,20 +11334,20 @@ export class ModifyDomainRequestListen extends $dara.Model {
|
|
|
11161
11334
|
http2Enabled?: boolean;
|
|
11162
11335
|
/**
|
|
11163
11336
|
* @remarks
|
|
11164
|
-
*
|
|
11337
|
+
* The HTTP listener ports. Specify the value in the [**port1,port2,...**] format.
|
|
11165
11338
|
*/
|
|
11166
11339
|
httpPorts?: number[];
|
|
11167
11340
|
/**
|
|
11168
11341
|
* @remarks
|
|
11169
|
-
*
|
|
11342
|
+
* The HTTPS listener ports. Specify the value in the [**port1,port2,...**] format.
|
|
11170
11343
|
*/
|
|
11171
11344
|
httpsPorts?: number[];
|
|
11172
11345
|
/**
|
|
11173
11346
|
* @remarks
|
|
11174
|
-
* Specifies whether to enable IPv6. Valid values:
|
|
11347
|
+
* Specifies whether to enable IPv6 protection. Valid values:
|
|
11175
11348
|
*
|
|
11176
|
-
* * **true
|
|
11177
|
-
* * **false
|
|
11349
|
+
* * **true**
|
|
11350
|
+
* * **false** (default)
|
|
11178
11351
|
*
|
|
11179
11352
|
* @example
|
|
11180
11353
|
* true
|
|
@@ -11182,10 +11355,10 @@ export class ModifyDomainRequestListen extends $dara.Model {
|
|
|
11182
11355
|
IPv6Enabled?: boolean;
|
|
11183
11356
|
/**
|
|
11184
11357
|
* @remarks
|
|
11185
|
-
* The type of the protection resource
|
|
11358
|
+
* The type of the protection resource. Valid values:
|
|
11186
11359
|
*
|
|
11187
|
-
* * **share
|
|
11188
|
-
* * **gslb
|
|
11360
|
+
* * **share** (default): a shared cluster.
|
|
11361
|
+
* * **gslb**: shared cluster-based intelligent load balancing.
|
|
11189
11362
|
*
|
|
11190
11363
|
* @example
|
|
11191
11364
|
* share
|
|
@@ -11212,10 +11385,7 @@ export class ModifyDomainRequestListen extends $dara.Model {
|
|
|
11212
11385
|
SM2CertId?: string;
|
|
11213
11386
|
/**
|
|
11214
11387
|
* @remarks
|
|
11215
|
-
*
|
|
11216
|
-
*
|
|
11217
|
-
* * **true**
|
|
11218
|
-
* * **false**
|
|
11388
|
+
* Specifies whether to add an SM certificate.
|
|
11219
11389
|
*
|
|
11220
11390
|
* @example
|
|
11221
11391
|
* true
|
|
@@ -11223,7 +11393,7 @@ export class ModifyDomainRequestListen extends $dara.Model {
|
|
|
11223
11393
|
SM2Enabled?: boolean;
|
|
11224
11394
|
/**
|
|
11225
11395
|
* @remarks
|
|
11226
|
-
* The
|
|
11396
|
+
* The Transport Layer Security (TLS) version that you want to add. This parameter is available only if you specify **HttpsPorts**. Valid values:
|
|
11227
11397
|
*
|
|
11228
11398
|
* * **tlsv1**
|
|
11229
11399
|
* * **tlsv1.1**
|
|
@@ -11235,11 +11405,11 @@ export class ModifyDomainRequestListen extends $dara.Model {
|
|
|
11235
11405
|
TLSVersion?: string;
|
|
11236
11406
|
/**
|
|
11237
11407
|
* @remarks
|
|
11238
|
-
* The method that
|
|
11408
|
+
* The method that is used to obtain the originating IP address of a client. Valid values:
|
|
11239
11409
|
*
|
|
11240
|
-
* * **0
|
|
11241
|
-
* * **1
|
|
11242
|
-
* * **2
|
|
11410
|
+
* * **0** (default): Client traffic is not filtered by a Layer 7 proxy before the traffic reaches WAF.
|
|
11411
|
+
* * **1**: WAF reads the first value of the X-Forwarded-For (XFF) header field as the originating IP address of the client.
|
|
11412
|
+
* * **2**: WAF reads the value of a custom header field as the originating IP address of the client.
|
|
11243
11413
|
*
|
|
11244
11414
|
* @example
|
|
11245
11415
|
* 2
|
|
@@ -11247,9 +11417,9 @@ export class ModifyDomainRequestListen extends $dara.Model {
|
|
|
11247
11417
|
xffHeaderMode?: number;
|
|
11248
11418
|
/**
|
|
11249
11419
|
* @remarks
|
|
11250
|
-
* The custom header fields that
|
|
11420
|
+
* The custom header fields that are used to obtain the originating IP address of a client. Specify the value in the **["header1","header2",...]** format.
|
|
11251
11421
|
*
|
|
11252
|
-
* >
|
|
11422
|
+
* > This parameter is required only if you set **XffHeaderMode** to 2.
|
|
11253
11423
|
*/
|
|
11254
11424
|
xffHeaders?: string[];
|
|
11255
11425
|
static names(): { [key: string]: string } {
|
|
@@ -11360,12 +11530,16 @@ export class ModifyDomainRequestRedirectRequestHeaders extends $dara.Model {
|
|
|
11360
11530
|
export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
11361
11531
|
/**
|
|
11362
11532
|
* @remarks
|
|
11363
|
-
* The IP addresses or domain names of the origin server. You
|
|
11533
|
+
* The IP addresses or domain names of the origin server. You cannot specify both IP addresses and domain names. If you specify domain names, the domain names can be resolved only to IPv4 addresses.
|
|
11364
11534
|
*
|
|
11365
|
-
* * If you
|
|
11366
|
-
* * If you
|
|
11535
|
+
* * If you specify IP addresses, specify the value in the **["ip1","ip2",...]** format. You can enter up to 20 IP addresses.
|
|
11536
|
+
* * If you specify domain names, specify the value in the **["domain"]** format. You can enter up to 20 domain names.
|
|
11367
11537
|
*/
|
|
11368
11538
|
backends?: string[];
|
|
11539
|
+
/**
|
|
11540
|
+
* @remarks
|
|
11541
|
+
* The secondary IP addresses or domain names of the origin server.
|
|
11542
|
+
*/
|
|
11369
11543
|
backupBackends?: string[];
|
|
11370
11544
|
/**
|
|
11371
11545
|
* @remarks
|
|
@@ -11380,7 +11554,7 @@ export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
|
11380
11554
|
cnameEnabled?: boolean;
|
|
11381
11555
|
/**
|
|
11382
11556
|
* @remarks
|
|
11383
|
-
* The timeout period
|
|
11557
|
+
* The timeout period of connections. Unit: seconds. Valid values: 1 to 3600.
|
|
11384
11558
|
*
|
|
11385
11559
|
* @example
|
|
11386
11560
|
* 120
|
|
@@ -11388,7 +11562,7 @@ export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
|
11388
11562
|
connectTimeout?: number;
|
|
11389
11563
|
/**
|
|
11390
11564
|
* @remarks
|
|
11391
|
-
* Specifies whether to enable HTTPS to HTTP
|
|
11565
|
+
* Specifies whether to enable force redirect from HTTPS to HTTP for back-to-origin requests. This parameter is available only if you specify **HttpsPorts**. Valid values:
|
|
11392
11566
|
*
|
|
11393
11567
|
* * **true**
|
|
11394
11568
|
* * **false**
|
|
@@ -11412,7 +11586,7 @@ export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
|
11412
11586
|
* @remarks
|
|
11413
11587
|
* The number of reused persistent connections. Valid values: 60 to 1000.
|
|
11414
11588
|
*
|
|
11415
|
-
* > This parameter specifies the number of
|
|
11589
|
+
* > This parameter specifies the number of persistent connections that can be reused after you enable the persistent connection feature.
|
|
11416
11590
|
*
|
|
11417
11591
|
* @example
|
|
11418
11592
|
* 1000
|
|
@@ -11420,9 +11594,9 @@ export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
|
11420
11594
|
keepaliveRequests?: number;
|
|
11421
11595
|
/**
|
|
11422
11596
|
* @remarks
|
|
11423
|
-
* The timeout period
|
|
11597
|
+
* The timeout period of idle persistent connections. Valid values: 1 to 60. Default value: 15. Unit: seconds.
|
|
11424
11598
|
*
|
|
11425
|
-
* > This parameter specifies the time
|
|
11599
|
+
* > This parameter specifies the period of time after which an idle persistent connection is closed.
|
|
11426
11600
|
*
|
|
11427
11601
|
* @example
|
|
11428
11602
|
* 15
|
|
@@ -11432,9 +11606,9 @@ export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
|
11432
11606
|
* @remarks
|
|
11433
11607
|
* The load balancing algorithm that you want to use to forward requests to the origin server. Valid values:
|
|
11434
11608
|
*
|
|
11435
|
-
* * **
|
|
11609
|
+
* * **iphash**
|
|
11436
11610
|
* * **roundRobin**
|
|
11437
|
-
* * **leastTime
|
|
11611
|
+
* * **leastTime**: This value is available only if you set **ProtectionResource** to **gslb**.
|
|
11438
11612
|
*
|
|
11439
11613
|
* This parameter is required.
|
|
11440
11614
|
*
|
|
@@ -11444,7 +11618,7 @@ export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
|
11444
11618
|
loadbalance?: string;
|
|
11445
11619
|
/**
|
|
11446
11620
|
* @remarks
|
|
11447
|
-
* The timeout period
|
|
11621
|
+
* The timeout period of read connections. Unit: seconds. Valid values: 1 to 3600.
|
|
11448
11622
|
*
|
|
11449
11623
|
* @example
|
|
11450
11624
|
* 200
|
|
@@ -11452,14 +11626,14 @@ export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
|
11452
11626
|
readTimeout?: number;
|
|
11453
11627
|
/**
|
|
11454
11628
|
* @remarks
|
|
11455
|
-
* The custom header
|
|
11629
|
+
* The custom header fields, which are key-value pairs. The fields are used to mark requests that pass through WAF.
|
|
11456
11630
|
*
|
|
11457
|
-
* When a request passes through WAF, the custom header
|
|
11631
|
+
* When a request passes through WAF, WAF automatically adds the custom header fields to the request to mark the request. This way, the backend service can identify requests that are processed by WAF.
|
|
11458
11632
|
*/
|
|
11459
11633
|
requestHeaders?: ModifyDomainRequestRedirectRequestHeaders[];
|
|
11460
11634
|
/**
|
|
11461
11635
|
* @remarks
|
|
11462
|
-
* Specifies whether WAF retries
|
|
11636
|
+
* Specifies whether WAF retries if WAF fails to forward requests to the origin server. Valid values:
|
|
11463
11637
|
*
|
|
11464
11638
|
* * **true** (default)
|
|
11465
11639
|
* * **false**
|
|
@@ -11470,11 +11644,11 @@ export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
|
11470
11644
|
retry?: boolean;
|
|
11471
11645
|
/**
|
|
11472
11646
|
* @remarks
|
|
11473
|
-
* The forwarding rules
|
|
11647
|
+
* The forwarding rules for the hybrid cloud mode. The value is a string that consists of JSON arrays. Each element in a JSON array is a JSON struct that contains the following fields:
|
|
11474
11648
|
*
|
|
11475
|
-
* * **rs**: the back-to-origin IP addresses or CNAMEs.
|
|
11476
|
-
* * **location**: the name of the protection node.
|
|
11477
|
-
* * **locationId**: the ID of the protection node.
|
|
11649
|
+
* * **rs**: the back-to-origin IP addresses or CNAMEs. Data type: array.
|
|
11650
|
+
* * **location**: the name of the protection node. Data type: string.
|
|
11651
|
+
* * **locationId**: the ID of the protection node. Data type: long.
|
|
11478
11652
|
*
|
|
11479
11653
|
* @example
|
|
11480
11654
|
* [
|
|
@@ -11490,7 +11664,7 @@ export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
|
11490
11664
|
routingRules?: string;
|
|
11491
11665
|
/**
|
|
11492
11666
|
* @remarks
|
|
11493
|
-
* Specifies whether to enable
|
|
11667
|
+
* Specifies whether to enable the Server Name Indication (SNI) feature for back-to-origin requests. This parameter is available only if you specify **HttpsPorts**. Valid values:
|
|
11494
11668
|
*
|
|
11495
11669
|
* * **true**
|
|
11496
11670
|
* * **false** (default)
|
|
@@ -11501,9 +11675,9 @@ export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
|
11501
11675
|
sniEnabled?: boolean;
|
|
11502
11676
|
/**
|
|
11503
11677
|
* @remarks
|
|
11504
|
-
* The value of the SNI field. If you do not specify this parameter, the value of the **Host** field is automatically used.
|
|
11678
|
+
* The custom value of the SNI field. If you do not specify this parameter, the value of the **Host** header field is automatically used. In most cases, you do not need to specify a custom value for the SNI field. However, if you want WAF to use an SNI field whose value is different from the value of the Host header field in back-to-origin requests, you can specify a custom value for the SNI field.
|
|
11505
11679
|
*
|
|
11506
|
-
* > This parameter is required only if you set **
|
|
11680
|
+
* > This parameter is required only if you set **SniEnabled** to true.
|
|
11507
11681
|
*
|
|
11508
11682
|
* @example
|
|
11509
11683
|
* www.aliyundoc.com
|
|
@@ -11511,7 +11685,7 @@ export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
|
11511
11685
|
sniHost?: string;
|
|
11512
11686
|
/**
|
|
11513
11687
|
* @remarks
|
|
11514
|
-
* The timeout period
|
|
11688
|
+
* The timeout period of write connections. Unit: seconds. Valid values: 1 to 3600.
|
|
11515
11689
|
*
|
|
11516
11690
|
* @example
|
|
11517
11691
|
* 200
|
|
@@ -11519,7 +11693,7 @@ export class ModifyDomainRequestRedirect extends $dara.Model {
|
|
|
11519
11693
|
writeTimeout?: number;
|
|
11520
11694
|
/**
|
|
11521
11695
|
* @remarks
|
|
11522
|
-
* Specifies whether to use the X-Forward-For-Proto header to
|
|
11696
|
+
* Specifies whether to use the X-Forward-For-Proto header field to pass the protocol used by WAF to forward requests to the origin server. Valid values:
|
|
11523
11697
|
*
|
|
11524
11698
|
* * **true** (default)
|
|
11525
11699
|
* * **false**
|
|
@@ -13145,14 +13319,14 @@ export class CreateDomainRequest extends $dara.Model {
|
|
|
13145
13319
|
instanceId?: string;
|
|
13146
13320
|
/**
|
|
13147
13321
|
* @remarks
|
|
13148
|
-
* The configurations
|
|
13322
|
+
* The listener configurations.
|
|
13149
13323
|
*
|
|
13150
13324
|
* This parameter is required.
|
|
13151
13325
|
*/
|
|
13152
13326
|
listen?: CreateDomainRequestListen;
|
|
13153
13327
|
/**
|
|
13154
13328
|
* @remarks
|
|
13155
|
-
* The
|
|
13329
|
+
* The forwarding configurations.
|
|
13156
13330
|
*
|
|
13157
13331
|
* This parameter is required.
|
|
13158
13332
|
*/
|
|
@@ -13178,6 +13352,10 @@ export class CreateDomainRequest extends $dara.Model {
|
|
|
13178
13352
|
* rg-acfm***q
|
|
13179
13353
|
*/
|
|
13180
13354
|
resourceManagerResourceGroupId?: string;
|
|
13355
|
+
/**
|
|
13356
|
+
* @remarks
|
|
13357
|
+
* The tags. You can specify up to 20 tags.
|
|
13358
|
+
*/
|
|
13181
13359
|
tag?: CreateDomainRequestTag[];
|
|
13182
13360
|
static names(): { [key: string]: string } {
|
|
13183
13361
|
return {
|
|
@@ -13259,14 +13437,14 @@ export class CreateDomainShrinkRequest extends $dara.Model {
|
|
|
13259
13437
|
instanceId?: string;
|
|
13260
13438
|
/**
|
|
13261
13439
|
* @remarks
|
|
13262
|
-
* The configurations
|
|
13440
|
+
* The listener configurations.
|
|
13263
13441
|
*
|
|
13264
13442
|
* This parameter is required.
|
|
13265
13443
|
*/
|
|
13266
13444
|
listenShrink?: string;
|
|
13267
13445
|
/**
|
|
13268
13446
|
* @remarks
|
|
13269
|
-
* The
|
|
13447
|
+
* The forwarding configurations.
|
|
13270
13448
|
*
|
|
13271
13449
|
* This parameter is required.
|
|
13272
13450
|
*/
|
|
@@ -13292,6 +13470,10 @@ export class CreateDomainShrinkRequest extends $dara.Model {
|
|
|
13292
13470
|
* rg-acfm***q
|
|
13293
13471
|
*/
|
|
13294
13472
|
resourceManagerResourceGroupId?: string;
|
|
13473
|
+
/**
|
|
13474
|
+
* @remarks
|
|
13475
|
+
* The tags. You can specify up to 20 tags.
|
|
13476
|
+
*/
|
|
13295
13477
|
tag?: CreateDomainShrinkRequestTag[];
|
|
13296
13478
|
static names(): { [key: string]: string } {
|
|
13297
13479
|
return {
|
|
@@ -13334,7 +13516,7 @@ export class CreateDomainShrinkRequest extends $dara.Model {
|
|
|
13334
13516
|
export class CreateDomainResponseBody extends $dara.Model {
|
|
13335
13517
|
/**
|
|
13336
13518
|
* @remarks
|
|
13337
|
-
* The information about the domain name.
|
|
13519
|
+
* The information about the domain name that is added.
|
|
13338
13520
|
*/
|
|
13339
13521
|
domainInfo?: CreateDomainResponseBodyDomainInfo;
|
|
13340
13522
|
/**
|
|
@@ -16172,7 +16354,8 @@ export class DescribeApisecAbnormalsRequest extends $dara.Model {
|
|
|
16172
16354
|
/**
|
|
16173
16355
|
* @remarks
|
|
16174
16356
|
* The ID of the hybrid cloud cluster.
|
|
16175
|
-
*
|
|
16357
|
+
*
|
|
16358
|
+
* > This parameter is available only in hybrid cloud scenarios. You can call the [DescribeHybridCloudClusters](https://help.aliyun.com/document_detail/2849376.html) operation to query hybrid cloud clusters.
|
|
16176
16359
|
*
|
|
16177
16360
|
* @example
|
|
16178
16361
|
* 546
|
|
@@ -16188,7 +16371,7 @@ export class DescribeApisecAbnormalsRequest extends $dara.Model {
|
|
|
16188
16371
|
endTime?: string;
|
|
16189
16372
|
/**
|
|
16190
16373
|
* @remarks
|
|
16191
|
-
* The ID of the
|
|
16374
|
+
* The ID of the WAF instance.
|
|
16192
16375
|
*
|
|
16193
16376
|
* > You can call the [DescribeInstance](https://help.aliyun.com/document_detail/433756.html) operation to query the ID of the WAF instance.
|
|
16194
16377
|
*
|
|
@@ -16257,11 +16440,10 @@ export class DescribeApisecAbnormalsRequest extends $dara.Model {
|
|
|
16257
16440
|
pageSize?: number;
|
|
16258
16441
|
/**
|
|
16259
16442
|
* @remarks
|
|
16260
|
-
* The region
|
|
16261
|
-
*
|
|
16262
|
-
* * **cn-hangzhou**: Chinese mainland
|
|
16443
|
+
* The region ID of the WAF instance. Valid value:
|
|
16263
16444
|
*
|
|
16264
|
-
* *
|
|
16445
|
+
* * **cn-hangzhou**: Chinese mainland.
|
|
16446
|
+
* * **ap-southeast-1**: outside the Chinese mainland.
|
|
16265
16447
|
*
|
|
16266
16448
|
* @example
|
|
16267
16449
|
* cn-qingdao
|
|
@@ -26885,7 +27067,7 @@ export class DescribeProductInstancesResponse extends $dara.Model {
|
|
|
26885
27067
|
export class DescribePunishedDomainsRequest extends $dara.Model {
|
|
26886
27068
|
/**
|
|
26887
27069
|
* @remarks
|
|
26888
|
-
* The domain names.
|
|
27070
|
+
* The domain names that are added to WAF.
|
|
26889
27071
|
*/
|
|
26890
27072
|
domains?: string[];
|
|
26891
27073
|
/**
|
|
@@ -26900,6 +27082,10 @@ export class DescribePunishedDomainsRequest extends $dara.Model {
|
|
|
26900
27082
|
* waf_v3prepaid_public_cn-uqm****qa07
|
|
26901
27083
|
*/
|
|
26902
27084
|
instanceId?: string;
|
|
27085
|
+
/**
|
|
27086
|
+
* @example
|
|
27087
|
+
* beian
|
|
27088
|
+
*/
|
|
26903
27089
|
punishType?: string;
|
|
26904
27090
|
/**
|
|
26905
27091
|
* @remarks
|
|
@@ -30255,10 +30441,10 @@ export class DescribeSensitiveRequestLogRequest extends $dara.Model {
|
|
|
30255
30441
|
pageSize?: number;
|
|
30256
30442
|
/**
|
|
30257
30443
|
* @remarks
|
|
30258
|
-
* The region
|
|
30444
|
+
* The region ID of the WAF instance. Valid value:
|
|
30259
30445
|
*
|
|
30260
|
-
* * **cn-hangzhou**: Chinese mainland
|
|
30261
|
-
* * **ap-southeast-1**: outside the Chinese mainland
|
|
30446
|
+
* * **cn-hangzhou**: Chinese mainland.
|
|
30447
|
+
* * **ap-southeast-1**: outside the Chinese mainland.
|
|
30262
30448
|
*
|
|
30263
30449
|
* @example
|
|
30264
30450
|
* cn-hangzhou
|
|
@@ -35682,6 +35868,7 @@ export class ModifyDefenseResourceXffRequest extends $dara.Model {
|
|
|
35682
35868
|
* rg-acfm2kie2****wq
|
|
35683
35869
|
*/
|
|
35684
35870
|
resourceManagerResourceGroupId?: string;
|
|
35871
|
+
responseHeaders?: ModifyDefenseResourceXffRequestResponseHeaders[];
|
|
35685
35872
|
/**
|
|
35686
35873
|
* @remarks
|
|
35687
35874
|
* Specifies whether a Layer 7 proxy is deployed in front of WAF. Layer 7 proxies include Anti-DDoS Proxy and Alibaba Cloud CDN. Valid values:
|
|
@@ -35705,6 +35892,7 @@ export class ModifyDefenseResourceXffRequest extends $dara.Model {
|
|
|
35705
35892
|
regionId: 'RegionId',
|
|
35706
35893
|
resource: 'Resource',
|
|
35707
35894
|
resourceManagerResourceGroupId: 'ResourceManagerResourceGroupId',
|
|
35895
|
+
responseHeaders: 'ResponseHeaders',
|
|
35708
35896
|
xffStatus: 'XffStatus',
|
|
35709
35897
|
};
|
|
35710
35898
|
}
|
|
@@ -35719,6 +35907,7 @@ export class ModifyDefenseResourceXffRequest extends $dara.Model {
|
|
|
35719
35907
|
regionId: 'string',
|
|
35720
35908
|
resource: 'string',
|
|
35721
35909
|
resourceManagerResourceGroupId: 'string',
|
|
35910
|
+
responseHeaders: { 'type': 'array', 'itemType': ModifyDefenseResourceXffRequestResponseHeaders },
|
|
35722
35911
|
xffStatus: 'number',
|
|
35723
35912
|
};
|
|
35724
35913
|
}
|
|
@@ -35727,6 +35916,9 @@ export class ModifyDefenseResourceXffRequest extends $dara.Model {
|
|
|
35727
35916
|
if(Array.isArray(this.customHeaders)) {
|
|
35728
35917
|
$dara.Model.validateArray(this.customHeaders);
|
|
35729
35918
|
}
|
|
35919
|
+
if(Array.isArray(this.responseHeaders)) {
|
|
35920
|
+
$dara.Model.validateArray(this.responseHeaders);
|
|
35921
|
+
}
|
|
35730
35922
|
super.validate();
|
|
35731
35923
|
}
|
|
35732
35924
|
|
|
@@ -36600,14 +36792,14 @@ export class ModifyDomainRequest extends $dara.Model {
|
|
|
36600
36792
|
instanceId?: string;
|
|
36601
36793
|
/**
|
|
36602
36794
|
* @remarks
|
|
36603
|
-
* The configurations
|
|
36795
|
+
* The listener configurations.
|
|
36604
36796
|
*
|
|
36605
36797
|
* This parameter is required.
|
|
36606
36798
|
*/
|
|
36607
36799
|
listen?: ModifyDomainRequestListen;
|
|
36608
36800
|
/**
|
|
36609
36801
|
* @remarks
|
|
36610
|
-
* The
|
|
36802
|
+
* The forwarding configurations.
|
|
36611
36803
|
*
|
|
36612
36804
|
* This parameter is required.
|
|
36613
36805
|
*/
|
|
@@ -36697,14 +36889,14 @@ export class ModifyDomainShrinkRequest extends $dara.Model {
|
|
|
36697
36889
|
instanceId?: string;
|
|
36698
36890
|
/**
|
|
36699
36891
|
* @remarks
|
|
36700
|
-
* The configurations
|
|
36892
|
+
* The listener configurations.
|
|
36701
36893
|
*
|
|
36702
36894
|
* This parameter is required.
|
|
36703
36895
|
*/
|
|
36704
36896
|
listenShrink?: string;
|
|
36705
36897
|
/**
|
|
36706
36898
|
* @remarks
|
|
36707
|
-
* The
|
|
36899
|
+
* The forwarding configurations.
|
|
36708
36900
|
*
|
|
36709
36901
|
* This parameter is required.
|
|
36710
36902
|
*/
|
|
@@ -36761,7 +36953,7 @@ export class ModifyDomainResponseBody extends $dara.Model {
|
|
|
36761
36953
|
domainInfo?: ModifyDomainResponseBodyDomainInfo;
|
|
36762
36954
|
/**
|
|
36763
36955
|
* @remarks
|
|
36764
|
-
* The ID
|
|
36956
|
+
* The request ID.
|
|
36765
36957
|
*
|
|
36766
36958
|
* @example
|
|
36767
36959
|
* D7861F61-5B61-46CE-A47C-6B19160D5EB0
|
|
@@ -39511,7 +39703,12 @@ export default class Client extends OpenApi {
|
|
|
39511
39703
|
reqBodyType: "formData",
|
|
39512
39704
|
bodyType: "json",
|
|
39513
39705
|
});
|
|
39514
|
-
|
|
39706
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39707
|
+
return $dara.cast<ChangeResourceGroupResponse>(await this.callApi(params, req, runtime), new ChangeResourceGroupResponse({}));
|
|
39708
|
+
} else {
|
|
39709
|
+
return $dara.cast<ChangeResourceGroupResponse>(await this.execute(params, req, runtime), new ChangeResourceGroupResponse({}));
|
|
39710
|
+
}
|
|
39711
|
+
|
|
39515
39712
|
}
|
|
39516
39713
|
|
|
39517
39714
|
/**
|
|
@@ -39569,7 +39766,12 @@ export default class Client extends OpenApi {
|
|
|
39569
39766
|
reqBodyType: "formData",
|
|
39570
39767
|
bodyType: "json",
|
|
39571
39768
|
});
|
|
39572
|
-
|
|
39769
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39770
|
+
return $dara.cast<ClearMajorProtectionBlackIpResponse>(await this.callApi(params, req, runtime), new ClearMajorProtectionBlackIpResponse({}));
|
|
39771
|
+
} else {
|
|
39772
|
+
return $dara.cast<ClearMajorProtectionBlackIpResponse>(await this.execute(params, req, runtime), new ClearMajorProtectionBlackIpResponse({}));
|
|
39773
|
+
}
|
|
39774
|
+
|
|
39573
39775
|
}
|
|
39574
39776
|
|
|
39575
39777
|
/**
|
|
@@ -39623,7 +39825,12 @@ export default class Client extends OpenApi {
|
|
|
39623
39825
|
reqBodyType: "formData",
|
|
39624
39826
|
bodyType: "json",
|
|
39625
39827
|
});
|
|
39626
|
-
|
|
39828
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39829
|
+
return $dara.cast<CopyDefenseTemplateResponse>(await this.callApi(params, req, runtime), new CopyDefenseTemplateResponse({}));
|
|
39830
|
+
} else {
|
|
39831
|
+
return $dara.cast<CopyDefenseTemplateResponse>(await this.execute(params, req, runtime), new CopyDefenseTemplateResponse({}));
|
|
39832
|
+
}
|
|
39833
|
+
|
|
39627
39834
|
}
|
|
39628
39835
|
|
|
39629
39836
|
/**
|
|
@@ -39693,7 +39900,12 @@ export default class Client extends OpenApi {
|
|
|
39693
39900
|
reqBodyType: "formData",
|
|
39694
39901
|
bodyType: "json",
|
|
39695
39902
|
});
|
|
39696
|
-
|
|
39903
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39904
|
+
return $dara.cast<CreateApiExportResponse>(await this.callApi(params, req, runtime), new CreateApiExportResponse({}));
|
|
39905
|
+
} else {
|
|
39906
|
+
return $dara.cast<CreateApiExportResponse>(await this.execute(params, req, runtime), new CreateApiExportResponse({}));
|
|
39907
|
+
}
|
|
39908
|
+
|
|
39697
39909
|
}
|
|
39698
39910
|
|
|
39699
39911
|
/**
|
|
@@ -39769,7 +39981,12 @@ export default class Client extends OpenApi {
|
|
|
39769
39981
|
reqBodyType: "formData",
|
|
39770
39982
|
bodyType: "json",
|
|
39771
39983
|
});
|
|
39772
|
-
|
|
39984
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
39985
|
+
return $dara.cast<CreateCloudResourceResponse>(await this.callApi(params, req, runtime), new CreateCloudResourceResponse({}));
|
|
39986
|
+
} else {
|
|
39987
|
+
return $dara.cast<CreateCloudResourceResponse>(await this.execute(params, req, runtime), new CreateCloudResourceResponse({}));
|
|
39988
|
+
}
|
|
39989
|
+
|
|
39773
39990
|
}
|
|
39774
39991
|
|
|
39775
39992
|
/**
|
|
@@ -39831,7 +40048,12 @@ export default class Client extends OpenApi {
|
|
|
39831
40048
|
reqBodyType: "formData",
|
|
39832
40049
|
bodyType: "json",
|
|
39833
40050
|
});
|
|
39834
|
-
|
|
40051
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40052
|
+
return $dara.cast<CreateDefenseResourceGroupResponse>(await this.callApi(params, req, runtime), new CreateDefenseResourceGroupResponse({}));
|
|
40053
|
+
} else {
|
|
40054
|
+
return $dara.cast<CreateDefenseResourceGroupResponse>(await this.execute(params, req, runtime), new CreateDefenseResourceGroupResponse({}));
|
|
40055
|
+
}
|
|
40056
|
+
|
|
39835
40057
|
}
|
|
39836
40058
|
|
|
39837
40059
|
/**
|
|
@@ -39895,7 +40117,12 @@ export default class Client extends OpenApi {
|
|
|
39895
40117
|
reqBodyType: "formData",
|
|
39896
40118
|
bodyType: "json",
|
|
39897
40119
|
});
|
|
39898
|
-
|
|
40120
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40121
|
+
return $dara.cast<CreateDefenseRuleResponse>(await this.callApi(params, req, runtime), new CreateDefenseRuleResponse({}));
|
|
40122
|
+
} else {
|
|
40123
|
+
return $dara.cast<CreateDefenseRuleResponse>(await this.execute(params, req, runtime), new CreateDefenseRuleResponse({}));
|
|
40124
|
+
}
|
|
40125
|
+
|
|
39899
40126
|
}
|
|
39900
40127
|
|
|
39901
40128
|
/**
|
|
@@ -39969,7 +40196,12 @@ export default class Client extends OpenApi {
|
|
|
39969
40196
|
reqBodyType: "formData",
|
|
39970
40197
|
bodyType: "json",
|
|
39971
40198
|
});
|
|
39972
|
-
|
|
40199
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40200
|
+
return $dara.cast<CreateDefenseTemplateResponse>(await this.callApi(params, req, runtime), new CreateDefenseTemplateResponse({}));
|
|
40201
|
+
} else {
|
|
40202
|
+
return $dara.cast<CreateDefenseTemplateResponse>(await this.execute(params, req, runtime), new CreateDefenseTemplateResponse({}));
|
|
40203
|
+
}
|
|
40204
|
+
|
|
39973
40205
|
}
|
|
39974
40206
|
|
|
39975
40207
|
/**
|
|
@@ -40049,7 +40281,12 @@ export default class Client extends OpenApi {
|
|
|
40049
40281
|
reqBodyType: "formData",
|
|
40050
40282
|
bodyType: "json",
|
|
40051
40283
|
});
|
|
40052
|
-
|
|
40284
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40285
|
+
return $dara.cast<CreateDomainResponse>(await this.callApi(params, req, runtime), new CreateDomainResponse({}));
|
|
40286
|
+
} else {
|
|
40287
|
+
return $dara.cast<CreateDomainResponse>(await this.execute(params, req, runtime), new CreateDomainResponse({}));
|
|
40288
|
+
}
|
|
40289
|
+
|
|
40053
40290
|
}
|
|
40054
40291
|
|
|
40055
40292
|
/**
|
|
@@ -40127,7 +40364,12 @@ export default class Client extends OpenApi {
|
|
|
40127
40364
|
reqBodyType: "formData",
|
|
40128
40365
|
bodyType: "json",
|
|
40129
40366
|
});
|
|
40130
|
-
|
|
40367
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40368
|
+
return $dara.cast<CreateHybridCloudGroupResponse>(await this.callApi(params, req, runtime), new CreateHybridCloudGroupResponse({}));
|
|
40369
|
+
} else {
|
|
40370
|
+
return $dara.cast<CreateHybridCloudGroupResponse>(await this.execute(params, req, runtime), new CreateHybridCloudGroupResponse({}));
|
|
40371
|
+
}
|
|
40372
|
+
|
|
40131
40373
|
}
|
|
40132
40374
|
|
|
40133
40375
|
/**
|
|
@@ -40200,7 +40442,12 @@ export default class Client extends OpenApi {
|
|
|
40200
40442
|
reqBodyType: "formData",
|
|
40201
40443
|
bodyType: "json",
|
|
40202
40444
|
});
|
|
40203
|
-
|
|
40445
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40446
|
+
return $dara.cast<CreateMajorProtectionBlackIpResponse>(await this.callApi(params, req, runtime), new CreateMajorProtectionBlackIpResponse({}));
|
|
40447
|
+
} else {
|
|
40448
|
+
return $dara.cast<CreateMajorProtectionBlackIpResponse>(await this.execute(params, req, runtime), new CreateMajorProtectionBlackIpResponse({}));
|
|
40449
|
+
}
|
|
40450
|
+
|
|
40204
40451
|
}
|
|
40205
40452
|
|
|
40206
40453
|
/**
|
|
@@ -40261,7 +40508,12 @@ export default class Client extends OpenApi {
|
|
|
40261
40508
|
reqBodyType: "formData",
|
|
40262
40509
|
bodyType: "json",
|
|
40263
40510
|
});
|
|
40264
|
-
|
|
40511
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40512
|
+
return $dara.cast<CreateMemberAccountsResponse>(await this.callApi(params, req, runtime), new CreateMemberAccountsResponse({}));
|
|
40513
|
+
} else {
|
|
40514
|
+
return $dara.cast<CreateMemberAccountsResponse>(await this.execute(params, req, runtime), new CreateMemberAccountsResponse({}));
|
|
40515
|
+
}
|
|
40516
|
+
|
|
40265
40517
|
}
|
|
40266
40518
|
|
|
40267
40519
|
/**
|
|
@@ -40307,7 +40559,12 @@ export default class Client extends OpenApi {
|
|
|
40307
40559
|
reqBodyType: "formData",
|
|
40308
40560
|
bodyType: "json",
|
|
40309
40561
|
});
|
|
40310
|
-
|
|
40562
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40563
|
+
return $dara.cast<CreatePostpaidInstanceResponse>(await this.callApi(params, req, runtime), new CreatePostpaidInstanceResponse({}));
|
|
40564
|
+
} else {
|
|
40565
|
+
return $dara.cast<CreatePostpaidInstanceResponse>(await this.execute(params, req, runtime), new CreatePostpaidInstanceResponse({}));
|
|
40566
|
+
}
|
|
40567
|
+
|
|
40311
40568
|
}
|
|
40312
40569
|
|
|
40313
40570
|
/**
|
|
@@ -40377,7 +40634,12 @@ export default class Client extends OpenApi {
|
|
|
40377
40634
|
reqBodyType: "formData",
|
|
40378
40635
|
bodyType: "json",
|
|
40379
40636
|
});
|
|
40380
|
-
|
|
40637
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40638
|
+
return $dara.cast<CreateSM2CertResponse>(await this.callApi(params, req, runtime), new CreateSM2CertResponse({}));
|
|
40639
|
+
} else {
|
|
40640
|
+
return $dara.cast<CreateSM2CertResponse>(await this.execute(params, req, runtime), new CreateSM2CertResponse({}));
|
|
40641
|
+
}
|
|
40642
|
+
|
|
40381
40643
|
}
|
|
40382
40644
|
|
|
40383
40645
|
/**
|
|
@@ -40435,7 +40697,12 @@ export default class Client extends OpenApi {
|
|
|
40435
40697
|
reqBodyType: "formData",
|
|
40436
40698
|
bodyType: "json",
|
|
40437
40699
|
});
|
|
40438
|
-
|
|
40700
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40701
|
+
return $dara.cast<DeleteApisecAbnormalsResponse>(await this.callApi(params, req, runtime), new DeleteApisecAbnormalsResponse({}));
|
|
40702
|
+
} else {
|
|
40703
|
+
return $dara.cast<DeleteApisecAbnormalsResponse>(await this.execute(params, req, runtime), new DeleteApisecAbnormalsResponse({}));
|
|
40704
|
+
}
|
|
40705
|
+
|
|
40439
40706
|
}
|
|
40440
40707
|
|
|
40441
40708
|
/**
|
|
@@ -40493,7 +40760,12 @@ export default class Client extends OpenApi {
|
|
|
40493
40760
|
reqBodyType: "formData",
|
|
40494
40761
|
bodyType: "json",
|
|
40495
40762
|
});
|
|
40496
|
-
|
|
40763
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40764
|
+
return $dara.cast<DeleteApisecEventsResponse>(await this.callApi(params, req, runtime), new DeleteApisecEventsResponse({}));
|
|
40765
|
+
} else {
|
|
40766
|
+
return $dara.cast<DeleteApisecEventsResponse>(await this.execute(params, req, runtime), new DeleteApisecEventsResponse({}));
|
|
40767
|
+
}
|
|
40768
|
+
|
|
40497
40769
|
}
|
|
40498
40770
|
|
|
40499
40771
|
/**
|
|
@@ -40555,7 +40827,12 @@ export default class Client extends OpenApi {
|
|
|
40555
40827
|
reqBodyType: "formData",
|
|
40556
40828
|
bodyType: "json",
|
|
40557
40829
|
});
|
|
40558
|
-
|
|
40830
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40831
|
+
return $dara.cast<DeleteCloudResourceResponse>(await this.callApi(params, req, runtime), new DeleteCloudResourceResponse({}));
|
|
40832
|
+
} else {
|
|
40833
|
+
return $dara.cast<DeleteCloudResourceResponse>(await this.execute(params, req, runtime), new DeleteCloudResourceResponse({}));
|
|
40834
|
+
}
|
|
40835
|
+
|
|
40559
40836
|
}
|
|
40560
40837
|
|
|
40561
40838
|
/**
|
|
@@ -40609,7 +40886,12 @@ export default class Client extends OpenApi {
|
|
|
40609
40886
|
reqBodyType: "formData",
|
|
40610
40887
|
bodyType: "json",
|
|
40611
40888
|
});
|
|
40612
|
-
|
|
40889
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40890
|
+
return $dara.cast<DeleteDefenseResourceGroupResponse>(await this.callApi(params, req, runtime), new DeleteDefenseResourceGroupResponse({}));
|
|
40891
|
+
} else {
|
|
40892
|
+
return $dara.cast<DeleteDefenseResourceGroupResponse>(await this.execute(params, req, runtime), new DeleteDefenseResourceGroupResponse({}));
|
|
40893
|
+
}
|
|
40894
|
+
|
|
40613
40895
|
}
|
|
40614
40896
|
|
|
40615
40897
|
/**
|
|
@@ -40667,7 +40949,12 @@ export default class Client extends OpenApi {
|
|
|
40667
40949
|
reqBodyType: "formData",
|
|
40668
40950
|
bodyType: "json",
|
|
40669
40951
|
});
|
|
40670
|
-
|
|
40952
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
40953
|
+
return $dara.cast<DeleteDefenseRuleResponse>(await this.callApi(params, req, runtime), new DeleteDefenseRuleResponse({}));
|
|
40954
|
+
} else {
|
|
40955
|
+
return $dara.cast<DeleteDefenseRuleResponse>(await this.execute(params, req, runtime), new DeleteDefenseRuleResponse({}));
|
|
40956
|
+
}
|
|
40957
|
+
|
|
40671
40958
|
}
|
|
40672
40959
|
|
|
40673
40960
|
/**
|
|
@@ -40721,7 +41008,12 @@ export default class Client extends OpenApi {
|
|
|
40721
41008
|
reqBodyType: "formData",
|
|
40722
41009
|
bodyType: "json",
|
|
40723
41010
|
});
|
|
40724
|
-
|
|
41011
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41012
|
+
return $dara.cast<DeleteDefenseTemplateResponse>(await this.callApi(params, req, runtime), new DeleteDefenseTemplateResponse({}));
|
|
41013
|
+
} else {
|
|
41014
|
+
return $dara.cast<DeleteDefenseTemplateResponse>(await this.execute(params, req, runtime), new DeleteDefenseTemplateResponse({}));
|
|
41015
|
+
}
|
|
41016
|
+
|
|
40725
41017
|
}
|
|
40726
41018
|
|
|
40727
41019
|
/**
|
|
@@ -40779,7 +41071,12 @@ export default class Client extends OpenApi {
|
|
|
40779
41071
|
reqBodyType: "formData",
|
|
40780
41072
|
bodyType: "json",
|
|
40781
41073
|
});
|
|
40782
|
-
|
|
41074
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41075
|
+
return $dara.cast<DeleteDomainResponse>(await this.callApi(params, req, runtime), new DeleteDomainResponse({}));
|
|
41076
|
+
} else {
|
|
41077
|
+
return $dara.cast<DeleteDomainResponse>(await this.execute(params, req, runtime), new DeleteDomainResponse({}));
|
|
41078
|
+
}
|
|
41079
|
+
|
|
40783
41080
|
}
|
|
40784
41081
|
|
|
40785
41082
|
/**
|
|
@@ -40841,7 +41138,12 @@ export default class Client extends OpenApi {
|
|
|
40841
41138
|
reqBodyType: "formData",
|
|
40842
41139
|
bodyType: "json",
|
|
40843
41140
|
});
|
|
40844
|
-
|
|
41141
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41142
|
+
return $dara.cast<DeleteMajorProtectionBlackIpResponse>(await this.callApi(params, req, runtime), new DeleteMajorProtectionBlackIpResponse({}));
|
|
41143
|
+
} else {
|
|
41144
|
+
return $dara.cast<DeleteMajorProtectionBlackIpResponse>(await this.execute(params, req, runtime), new DeleteMajorProtectionBlackIpResponse({}));
|
|
41145
|
+
}
|
|
41146
|
+
|
|
40845
41147
|
}
|
|
40846
41148
|
|
|
40847
41149
|
/**
|
|
@@ -40899,7 +41201,12 @@ export default class Client extends OpenApi {
|
|
|
40899
41201
|
reqBodyType: "formData",
|
|
40900
41202
|
bodyType: "json",
|
|
40901
41203
|
});
|
|
40902
|
-
|
|
41204
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41205
|
+
return $dara.cast<DeleteMemberAccountResponse>(await this.callApi(params, req, runtime), new DeleteMemberAccountResponse({}));
|
|
41206
|
+
} else {
|
|
41207
|
+
return $dara.cast<DeleteMemberAccountResponse>(await this.execute(params, req, runtime), new DeleteMemberAccountResponse({}));
|
|
41208
|
+
}
|
|
41209
|
+
|
|
40903
41210
|
}
|
|
40904
41211
|
|
|
40905
41212
|
/**
|
|
@@ -40949,7 +41256,12 @@ export default class Client extends OpenApi {
|
|
|
40949
41256
|
reqBodyType: "formData",
|
|
40950
41257
|
bodyType: "json",
|
|
40951
41258
|
});
|
|
40952
|
-
|
|
41259
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41260
|
+
return $dara.cast<DescribeAccountDelegatedStatusResponse>(await this.callApi(params, req, runtime), new DescribeAccountDelegatedStatusResponse({}));
|
|
41261
|
+
} else {
|
|
41262
|
+
return $dara.cast<DescribeAccountDelegatedStatusResponse>(await this.execute(params, req, runtime), new DescribeAccountDelegatedStatusResponse({}));
|
|
41263
|
+
}
|
|
41264
|
+
|
|
40953
41265
|
}
|
|
40954
41266
|
|
|
40955
41267
|
/**
|
|
@@ -41011,7 +41323,12 @@ export default class Client extends OpenApi {
|
|
|
41011
41323
|
reqBodyType: "formData",
|
|
41012
41324
|
bodyType: "json",
|
|
41013
41325
|
});
|
|
41014
|
-
|
|
41326
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41327
|
+
return $dara.cast<DescribeApiExportsResponse>(await this.callApi(params, req, runtime), new DescribeApiExportsResponse({}));
|
|
41328
|
+
} else {
|
|
41329
|
+
return $dara.cast<DescribeApiExportsResponse>(await this.execute(params, req, runtime), new DescribeApiExportsResponse({}));
|
|
41330
|
+
}
|
|
41331
|
+
|
|
41015
41332
|
}
|
|
41016
41333
|
|
|
41017
41334
|
/**
|
|
@@ -41085,7 +41402,12 @@ export default class Client extends OpenApi {
|
|
|
41085
41402
|
reqBodyType: "formData",
|
|
41086
41403
|
bodyType: "json",
|
|
41087
41404
|
});
|
|
41088
|
-
|
|
41405
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41406
|
+
return $dara.cast<DescribeApisecAbnormalDomainStatisticResponse>(await this.callApi(params, req, runtime), new DescribeApisecAbnormalDomainStatisticResponse({}));
|
|
41407
|
+
} else {
|
|
41408
|
+
return $dara.cast<DescribeApisecAbnormalDomainStatisticResponse>(await this.execute(params, req, runtime), new DescribeApisecAbnormalDomainStatisticResponse({}));
|
|
41409
|
+
}
|
|
41410
|
+
|
|
41089
41411
|
}
|
|
41090
41412
|
|
|
41091
41413
|
/**
|
|
@@ -41199,7 +41521,12 @@ export default class Client extends OpenApi {
|
|
|
41199
41521
|
reqBodyType: "formData",
|
|
41200
41522
|
bodyType: "json",
|
|
41201
41523
|
});
|
|
41202
|
-
|
|
41524
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41525
|
+
return $dara.cast<DescribeApisecAbnormalsResponse>(await this.callApi(params, req, runtime), new DescribeApisecAbnormalsResponse({}));
|
|
41526
|
+
} else {
|
|
41527
|
+
return $dara.cast<DescribeApisecAbnormalsResponse>(await this.execute(params, req, runtime), new DescribeApisecAbnormalsResponse({}));
|
|
41528
|
+
}
|
|
41529
|
+
|
|
41203
41530
|
}
|
|
41204
41531
|
|
|
41205
41532
|
/**
|
|
@@ -41329,7 +41656,12 @@ export default class Client extends OpenApi {
|
|
|
41329
41656
|
reqBodyType: "formData",
|
|
41330
41657
|
bodyType: "json",
|
|
41331
41658
|
});
|
|
41332
|
-
|
|
41659
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41660
|
+
return $dara.cast<DescribeApisecApiResourcesResponse>(await this.callApi(params, req, runtime), new DescribeApisecApiResourcesResponse({}));
|
|
41661
|
+
} else {
|
|
41662
|
+
return $dara.cast<DescribeApisecApiResourcesResponse>(await this.execute(params, req, runtime), new DescribeApisecApiResourcesResponse({}));
|
|
41663
|
+
}
|
|
41664
|
+
|
|
41333
41665
|
}
|
|
41334
41666
|
|
|
41335
41667
|
/**
|
|
@@ -41391,7 +41723,12 @@ export default class Client extends OpenApi {
|
|
|
41391
41723
|
reqBodyType: "formData",
|
|
41392
41724
|
bodyType: "json",
|
|
41393
41725
|
});
|
|
41394
|
-
|
|
41726
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41727
|
+
return $dara.cast<DescribeApisecAssetTrendResponse>(await this.callApi(params, req, runtime), new DescribeApisecAssetTrendResponse({}));
|
|
41728
|
+
} else {
|
|
41729
|
+
return $dara.cast<DescribeApisecAssetTrendResponse>(await this.execute(params, req, runtime), new DescribeApisecAssetTrendResponse({}));
|
|
41730
|
+
}
|
|
41731
|
+
|
|
41395
41732
|
}
|
|
41396
41733
|
|
|
41397
41734
|
/**
|
|
@@ -41465,7 +41802,12 @@ export default class Client extends OpenApi {
|
|
|
41465
41802
|
reqBodyType: "formData",
|
|
41466
41803
|
bodyType: "json",
|
|
41467
41804
|
});
|
|
41468
|
-
|
|
41805
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41806
|
+
return $dara.cast<DescribeApisecEventDomainStatisticResponse>(await this.callApi(params, req, runtime), new DescribeApisecEventDomainStatisticResponse({}));
|
|
41807
|
+
} else {
|
|
41808
|
+
return $dara.cast<DescribeApisecEventDomainStatisticResponse>(await this.execute(params, req, runtime), new DescribeApisecEventDomainStatisticResponse({}));
|
|
41809
|
+
}
|
|
41810
|
+
|
|
41469
41811
|
}
|
|
41470
41812
|
|
|
41471
41813
|
/**
|
|
@@ -41583,7 +41925,12 @@ export default class Client extends OpenApi {
|
|
|
41583
41925
|
reqBodyType: "formData",
|
|
41584
41926
|
bodyType: "json",
|
|
41585
41927
|
});
|
|
41586
|
-
|
|
41928
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41929
|
+
return $dara.cast<DescribeApisecEventsResponse>(await this.callApi(params, req, runtime), new DescribeApisecEventsResponse({}));
|
|
41930
|
+
} else {
|
|
41931
|
+
return $dara.cast<DescribeApisecEventsResponse>(await this.execute(params, req, runtime), new DescribeApisecEventsResponse({}));
|
|
41932
|
+
}
|
|
41933
|
+
|
|
41587
41934
|
}
|
|
41588
41935
|
|
|
41589
41936
|
/**
|
|
@@ -41633,7 +41980,12 @@ export default class Client extends OpenApi {
|
|
|
41633
41980
|
reqBodyType: "formData",
|
|
41634
41981
|
bodyType: "json",
|
|
41635
41982
|
});
|
|
41636
|
-
|
|
41983
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
41984
|
+
return $dara.cast<DescribeApisecLogDeliveriesResponse>(await this.callApi(params, req, runtime), new DescribeApisecLogDeliveriesResponse({}));
|
|
41985
|
+
} else {
|
|
41986
|
+
return $dara.cast<DescribeApisecLogDeliveriesResponse>(await this.execute(params, req, runtime), new DescribeApisecLogDeliveriesResponse({}));
|
|
41987
|
+
}
|
|
41988
|
+
|
|
41637
41989
|
}
|
|
41638
41990
|
|
|
41639
41991
|
/**
|
|
@@ -41703,7 +42055,12 @@ export default class Client extends OpenApi {
|
|
|
41703
42055
|
reqBodyType: "formData",
|
|
41704
42056
|
bodyType: "json",
|
|
41705
42057
|
});
|
|
41706
|
-
|
|
42058
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42059
|
+
return $dara.cast<DescribeApisecMatchedHostsResponse>(await this.callApi(params, req, runtime), new DescribeApisecMatchedHostsResponse({}));
|
|
42060
|
+
} else {
|
|
42061
|
+
return $dara.cast<DescribeApisecMatchedHostsResponse>(await this.execute(params, req, runtime), new DescribeApisecMatchedHostsResponse({}));
|
|
42062
|
+
}
|
|
42063
|
+
|
|
41707
42064
|
}
|
|
41708
42065
|
|
|
41709
42066
|
/**
|
|
@@ -41769,7 +42126,12 @@ export default class Client extends OpenApi {
|
|
|
41769
42126
|
reqBodyType: "formData",
|
|
41770
42127
|
bodyType: "json",
|
|
41771
42128
|
});
|
|
41772
|
-
|
|
42129
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42130
|
+
return $dara.cast<DescribeApisecProtectionGroupsResponse>(await this.callApi(params, req, runtime), new DescribeApisecProtectionGroupsResponse({}));
|
|
42131
|
+
} else {
|
|
42132
|
+
return $dara.cast<DescribeApisecProtectionGroupsResponse>(await this.execute(params, req, runtime), new DescribeApisecProtectionGroupsResponse({}));
|
|
42133
|
+
}
|
|
42134
|
+
|
|
41773
42135
|
}
|
|
41774
42136
|
|
|
41775
42137
|
/**
|
|
@@ -41835,7 +42197,12 @@ export default class Client extends OpenApi {
|
|
|
41835
42197
|
reqBodyType: "formData",
|
|
41836
42198
|
bodyType: "json",
|
|
41837
42199
|
});
|
|
41838
|
-
|
|
42200
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42201
|
+
return $dara.cast<DescribeApisecProtectionResourcesResponse>(await this.callApi(params, req, runtime), new DescribeApisecProtectionResourcesResponse({}));
|
|
42202
|
+
} else {
|
|
42203
|
+
return $dara.cast<DescribeApisecProtectionResourcesResponse>(await this.execute(params, req, runtime), new DescribeApisecProtectionResourcesResponse({}));
|
|
42204
|
+
}
|
|
42205
|
+
|
|
41839
42206
|
}
|
|
41840
42207
|
|
|
41841
42208
|
/**
|
|
@@ -41913,7 +42280,12 @@ export default class Client extends OpenApi {
|
|
|
41913
42280
|
reqBodyType: "formData",
|
|
41914
42281
|
bodyType: "json",
|
|
41915
42282
|
});
|
|
41916
|
-
|
|
42283
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42284
|
+
return $dara.cast<DescribeApisecRulesResponse>(await this.callApi(params, req, runtime), new DescribeApisecRulesResponse({}));
|
|
42285
|
+
} else {
|
|
42286
|
+
return $dara.cast<DescribeApisecRulesResponse>(await this.execute(params, req, runtime), new DescribeApisecRulesResponse({}));
|
|
42287
|
+
}
|
|
42288
|
+
|
|
41917
42289
|
}
|
|
41918
42290
|
|
|
41919
42291
|
/**
|
|
@@ -41991,7 +42363,12 @@ export default class Client extends OpenApi {
|
|
|
41991
42363
|
reqBodyType: "formData",
|
|
41992
42364
|
bodyType: "json",
|
|
41993
42365
|
});
|
|
41994
|
-
|
|
42366
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42367
|
+
return $dara.cast<DescribeApisecSensitiveDomainStatisticResponse>(await this.callApi(params, req, runtime), new DescribeApisecSensitiveDomainStatisticResponse({}));
|
|
42368
|
+
} else {
|
|
42369
|
+
return $dara.cast<DescribeApisecSensitiveDomainStatisticResponse>(await this.execute(params, req, runtime), new DescribeApisecSensitiveDomainStatisticResponse({}));
|
|
42370
|
+
}
|
|
42371
|
+
|
|
41995
42372
|
}
|
|
41996
42373
|
|
|
41997
42374
|
/**
|
|
@@ -42049,7 +42426,12 @@ export default class Client extends OpenApi {
|
|
|
42049
42426
|
reqBodyType: "formData",
|
|
42050
42427
|
bodyType: "json",
|
|
42051
42428
|
});
|
|
42052
|
-
|
|
42429
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42430
|
+
return $dara.cast<DescribeApisecSlsLogStoresResponse>(await this.callApi(params, req, runtime), new DescribeApisecSlsLogStoresResponse({}));
|
|
42431
|
+
} else {
|
|
42432
|
+
return $dara.cast<DescribeApisecSlsLogStoresResponse>(await this.execute(params, req, runtime), new DescribeApisecSlsLogStoresResponse({}));
|
|
42433
|
+
}
|
|
42434
|
+
|
|
42053
42435
|
}
|
|
42054
42436
|
|
|
42055
42437
|
/**
|
|
@@ -42103,7 +42485,12 @@ export default class Client extends OpenApi {
|
|
|
42103
42485
|
reqBodyType: "formData",
|
|
42104
42486
|
bodyType: "json",
|
|
42105
42487
|
});
|
|
42106
|
-
|
|
42488
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42489
|
+
return $dara.cast<DescribeApisecSlsProjectsResponse>(await this.callApi(params, req, runtime), new DescribeApisecSlsProjectsResponse({}));
|
|
42490
|
+
} else {
|
|
42491
|
+
return $dara.cast<DescribeApisecSlsProjectsResponse>(await this.execute(params, req, runtime), new DescribeApisecSlsProjectsResponse({}));
|
|
42492
|
+
}
|
|
42493
|
+
|
|
42107
42494
|
}
|
|
42108
42495
|
|
|
42109
42496
|
/**
|
|
@@ -42161,7 +42548,12 @@ export default class Client extends OpenApi {
|
|
|
42161
42548
|
reqBodyType: "formData",
|
|
42162
42549
|
bodyType: "json",
|
|
42163
42550
|
});
|
|
42164
|
-
|
|
42551
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42552
|
+
return $dara.cast<DescribeApisecStatisticsResponse>(await this.callApi(params, req, runtime), new DescribeApisecStatisticsResponse({}));
|
|
42553
|
+
} else {
|
|
42554
|
+
return $dara.cast<DescribeApisecStatisticsResponse>(await this.execute(params, req, runtime), new DescribeApisecStatisticsResponse({}));
|
|
42555
|
+
}
|
|
42556
|
+
|
|
42165
42557
|
}
|
|
42166
42558
|
|
|
42167
42559
|
/**
|
|
@@ -42219,7 +42611,12 @@ export default class Client extends OpenApi {
|
|
|
42219
42611
|
reqBodyType: "formData",
|
|
42220
42612
|
bodyType: "json",
|
|
42221
42613
|
});
|
|
42222
|
-
|
|
42614
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42615
|
+
return $dara.cast<DescribeApisecSuggestionsResponse>(await this.callApi(params, req, runtime), new DescribeApisecSuggestionsResponse({}));
|
|
42616
|
+
} else {
|
|
42617
|
+
return $dara.cast<DescribeApisecSuggestionsResponse>(await this.execute(params, req, runtime), new DescribeApisecSuggestionsResponse({}));
|
|
42618
|
+
}
|
|
42619
|
+
|
|
42223
42620
|
}
|
|
42224
42621
|
|
|
42225
42622
|
/**
|
|
@@ -42281,7 +42678,12 @@ export default class Client extends OpenApi {
|
|
|
42281
42678
|
reqBodyType: "formData",
|
|
42282
42679
|
bodyType: "json",
|
|
42283
42680
|
});
|
|
42284
|
-
|
|
42681
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42682
|
+
return $dara.cast<DescribeApisecUserOperationsResponse>(await this.callApi(params, req, runtime), new DescribeApisecUserOperationsResponse({}));
|
|
42683
|
+
} else {
|
|
42684
|
+
return $dara.cast<DescribeApisecUserOperationsResponse>(await this.execute(params, req, runtime), new DescribeApisecUserOperationsResponse({}));
|
|
42685
|
+
}
|
|
42686
|
+
|
|
42285
42687
|
}
|
|
42286
42688
|
|
|
42287
42689
|
/**
|
|
@@ -42335,7 +42737,12 @@ export default class Client extends OpenApi {
|
|
|
42335
42737
|
reqBodyType: "formData",
|
|
42336
42738
|
bodyType: "json",
|
|
42337
42739
|
});
|
|
42338
|
-
|
|
42740
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42741
|
+
return $dara.cast<DescribeCertDetailResponse>(await this.callApi(params, req, runtime), new DescribeCertDetailResponse({}));
|
|
42742
|
+
} else {
|
|
42743
|
+
return $dara.cast<DescribeCertDetailResponse>(await this.execute(params, req, runtime), new DescribeCertDetailResponse({}));
|
|
42744
|
+
}
|
|
42745
|
+
|
|
42339
42746
|
}
|
|
42340
42747
|
|
|
42341
42748
|
/**
|
|
@@ -42401,7 +42808,12 @@ export default class Client extends OpenApi {
|
|
|
42401
42808
|
reqBodyType: "formData",
|
|
42402
42809
|
bodyType: "json",
|
|
42403
42810
|
});
|
|
42404
|
-
|
|
42811
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42812
|
+
return $dara.cast<DescribeCertsResponse>(await this.callApi(params, req, runtime), new DescribeCertsResponse({}));
|
|
42813
|
+
} else {
|
|
42814
|
+
return $dara.cast<DescribeCertsResponse>(await this.execute(params, req, runtime), new DescribeCertsResponse({}));
|
|
42815
|
+
}
|
|
42816
|
+
|
|
42405
42817
|
}
|
|
42406
42818
|
|
|
42407
42819
|
/**
|
|
@@ -42475,7 +42887,12 @@ export default class Client extends OpenApi {
|
|
|
42475
42887
|
reqBodyType: "formData",
|
|
42476
42888
|
bodyType: "json",
|
|
42477
42889
|
});
|
|
42478
|
-
|
|
42890
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42891
|
+
return $dara.cast<DescribeCloudResourceAccessPortDetailsResponse>(await this.callApi(params, req, runtime), new DescribeCloudResourceAccessPortDetailsResponse({}));
|
|
42892
|
+
} else {
|
|
42893
|
+
return $dara.cast<DescribeCloudResourceAccessPortDetailsResponse>(await this.execute(params, req, runtime), new DescribeCloudResourceAccessPortDetailsResponse({}));
|
|
42894
|
+
}
|
|
42895
|
+
|
|
42479
42896
|
}
|
|
42480
42897
|
|
|
42481
42898
|
/**
|
|
@@ -42529,7 +42946,12 @@ export default class Client extends OpenApi {
|
|
|
42529
42946
|
reqBodyType: "formData",
|
|
42530
42947
|
bodyType: "json",
|
|
42531
42948
|
});
|
|
42532
|
-
|
|
42949
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
42950
|
+
return $dara.cast<DescribeCloudResourceAccessedPortsResponse>(await this.callApi(params, req, runtime), new DescribeCloudResourceAccessedPortsResponse({}));
|
|
42951
|
+
} else {
|
|
42952
|
+
return $dara.cast<DescribeCloudResourceAccessedPortsResponse>(await this.execute(params, req, runtime), new DescribeCloudResourceAccessedPortsResponse({}));
|
|
42953
|
+
}
|
|
42954
|
+
|
|
42533
42955
|
}
|
|
42534
42956
|
|
|
42535
42957
|
/**
|
|
@@ -42623,7 +43045,12 @@ export default class Client extends OpenApi {
|
|
|
42623
43045
|
reqBodyType: "formData",
|
|
42624
43046
|
bodyType: "json",
|
|
42625
43047
|
});
|
|
42626
|
-
|
|
43048
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43049
|
+
return $dara.cast<DescribeCloudResourcesResponse>(await this.callApi(params, req, runtime), new DescribeCloudResourcesResponse({}));
|
|
43050
|
+
} else {
|
|
43051
|
+
return $dara.cast<DescribeCloudResourcesResponse>(await this.execute(params, req, runtime), new DescribeCloudResourcesResponse({}));
|
|
43052
|
+
}
|
|
43053
|
+
|
|
42627
43054
|
}
|
|
42628
43055
|
|
|
42629
43056
|
/**
|
|
@@ -42673,7 +43100,12 @@ export default class Client extends OpenApi {
|
|
|
42673
43100
|
reqBodyType: "formData",
|
|
42674
43101
|
bodyType: "json",
|
|
42675
43102
|
});
|
|
42676
|
-
|
|
43103
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43104
|
+
return $dara.cast<DescribeCnameCountResponse>(await this.callApi(params, req, runtime), new DescribeCnameCountResponse({}));
|
|
43105
|
+
} else {
|
|
43106
|
+
return $dara.cast<DescribeCnameCountResponse>(await this.execute(params, req, runtime), new DescribeCnameCountResponse({}));
|
|
43107
|
+
}
|
|
43108
|
+
|
|
42677
43109
|
}
|
|
42678
43110
|
|
|
42679
43111
|
/**
|
|
@@ -42723,7 +43155,12 @@ export default class Client extends OpenApi {
|
|
|
42723
43155
|
reqBodyType: "formData",
|
|
42724
43156
|
bodyType: "json",
|
|
42725
43157
|
});
|
|
42726
|
-
|
|
43158
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43159
|
+
return $dara.cast<DescribeDDoSStatusResponse>(await this.callApi(params, req, runtime), new DescribeDDoSStatusResponse({}));
|
|
43160
|
+
} else {
|
|
43161
|
+
return $dara.cast<DescribeDDoSStatusResponse>(await this.execute(params, req, runtime), new DescribeDDoSStatusResponse({}));
|
|
43162
|
+
}
|
|
43163
|
+
|
|
42727
43164
|
}
|
|
42728
43165
|
|
|
42729
43166
|
/**
|
|
@@ -42773,7 +43210,12 @@ export default class Client extends OpenApi {
|
|
|
42773
43210
|
reqBodyType: "formData",
|
|
42774
43211
|
bodyType: "json",
|
|
42775
43212
|
});
|
|
42776
|
-
|
|
43213
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43214
|
+
return $dara.cast<DescribeDefaultHttpsResponse>(await this.callApi(params, req, runtime), new DescribeDefaultHttpsResponse({}));
|
|
43215
|
+
} else {
|
|
43216
|
+
return $dara.cast<DescribeDefaultHttpsResponse>(await this.execute(params, req, runtime), new DescribeDefaultHttpsResponse({}));
|
|
43217
|
+
}
|
|
43218
|
+
|
|
42777
43219
|
}
|
|
42778
43220
|
|
|
42779
43221
|
/**
|
|
@@ -42827,7 +43269,12 @@ export default class Client extends OpenApi {
|
|
|
42827
43269
|
reqBodyType: "formData",
|
|
42828
43270
|
bodyType: "json",
|
|
42829
43271
|
});
|
|
42830
|
-
|
|
43272
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43273
|
+
return $dara.cast<DescribeDefenseResourceResponse>(await this.callApi(params, req, runtime), new DescribeDefenseResourceResponse({}));
|
|
43274
|
+
} else {
|
|
43275
|
+
return $dara.cast<DescribeDefenseResourceResponse>(await this.execute(params, req, runtime), new DescribeDefenseResourceResponse({}));
|
|
43276
|
+
}
|
|
43277
|
+
|
|
42831
43278
|
}
|
|
42832
43279
|
|
|
42833
43280
|
/**
|
|
@@ -42881,7 +43328,12 @@ export default class Client extends OpenApi {
|
|
|
42881
43328
|
reqBodyType: "formData",
|
|
42882
43329
|
bodyType: "json",
|
|
42883
43330
|
});
|
|
42884
|
-
|
|
43331
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43332
|
+
return $dara.cast<DescribeDefenseResourceGroupResponse>(await this.callApi(params, req, runtime), new DescribeDefenseResourceGroupResponse({}));
|
|
43333
|
+
} else {
|
|
43334
|
+
return $dara.cast<DescribeDefenseResourceGroupResponse>(await this.execute(params, req, runtime), new DescribeDefenseResourceGroupResponse({}));
|
|
43335
|
+
}
|
|
43336
|
+
|
|
42885
43337
|
}
|
|
42886
43338
|
|
|
42887
43339
|
/**
|
|
@@ -42943,7 +43395,12 @@ export default class Client extends OpenApi {
|
|
|
42943
43395
|
reqBodyType: "formData",
|
|
42944
43396
|
bodyType: "json",
|
|
42945
43397
|
});
|
|
42946
|
-
|
|
43398
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43399
|
+
return $dara.cast<DescribeDefenseResourceGroupNamesResponse>(await this.callApi(params, req, runtime), new DescribeDefenseResourceGroupNamesResponse({}));
|
|
43400
|
+
} else {
|
|
43401
|
+
return $dara.cast<DescribeDefenseResourceGroupNamesResponse>(await this.execute(params, req, runtime), new DescribeDefenseResourceGroupNamesResponse({}));
|
|
43402
|
+
}
|
|
43403
|
+
|
|
42947
43404
|
}
|
|
42948
43405
|
|
|
42949
43406
|
/**
|
|
@@ -43009,7 +43466,12 @@ export default class Client extends OpenApi {
|
|
|
43009
43466
|
reqBodyType: "formData",
|
|
43010
43467
|
bodyType: "json",
|
|
43011
43468
|
});
|
|
43012
|
-
|
|
43469
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43470
|
+
return $dara.cast<DescribeDefenseResourceGroupsResponse>(await this.callApi(params, req, runtime), new DescribeDefenseResourceGroupsResponse({}));
|
|
43471
|
+
} else {
|
|
43472
|
+
return $dara.cast<DescribeDefenseResourceGroupsResponse>(await this.execute(params, req, runtime), new DescribeDefenseResourceGroupsResponse({}));
|
|
43473
|
+
}
|
|
43474
|
+
|
|
43013
43475
|
}
|
|
43014
43476
|
|
|
43015
43477
|
/**
|
|
@@ -43071,7 +43533,12 @@ export default class Client extends OpenApi {
|
|
|
43071
43533
|
reqBodyType: "formData",
|
|
43072
43534
|
bodyType: "json",
|
|
43073
43535
|
});
|
|
43074
|
-
|
|
43536
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43537
|
+
return $dara.cast<DescribeDefenseResourceNamesResponse>(await this.callApi(params, req, runtime), new DescribeDefenseResourceNamesResponse({}));
|
|
43538
|
+
} else {
|
|
43539
|
+
return $dara.cast<DescribeDefenseResourceNamesResponse>(await this.execute(params, req, runtime), new DescribeDefenseResourceNamesResponse({}));
|
|
43540
|
+
}
|
|
43541
|
+
|
|
43075
43542
|
}
|
|
43076
43543
|
|
|
43077
43544
|
/**
|
|
@@ -43145,7 +43612,12 @@ export default class Client extends OpenApi {
|
|
|
43145
43612
|
reqBodyType: "formData",
|
|
43146
43613
|
bodyType: "json",
|
|
43147
43614
|
});
|
|
43148
|
-
|
|
43615
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43616
|
+
return $dara.cast<DescribeDefenseResourceTemplatesResponse>(await this.callApi(params, req, runtime), new DescribeDefenseResourceTemplatesResponse({}));
|
|
43617
|
+
} else {
|
|
43618
|
+
return $dara.cast<DescribeDefenseResourceTemplatesResponse>(await this.execute(params, req, runtime), new DescribeDefenseResourceTemplatesResponse({}));
|
|
43619
|
+
}
|
|
43620
|
+
|
|
43149
43621
|
}
|
|
43150
43622
|
|
|
43151
43623
|
/**
|
|
@@ -43211,7 +43683,12 @@ export default class Client extends OpenApi {
|
|
|
43211
43683
|
reqBodyType: "formData",
|
|
43212
43684
|
bodyType: "json",
|
|
43213
43685
|
});
|
|
43214
|
-
|
|
43686
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43687
|
+
return $dara.cast<DescribeDefenseResourcesResponse>(await this.callApi(params, req, runtime), new DescribeDefenseResourcesResponse({}));
|
|
43688
|
+
} else {
|
|
43689
|
+
return $dara.cast<DescribeDefenseResourcesResponse>(await this.execute(params, req, runtime), new DescribeDefenseResourcesResponse({}));
|
|
43690
|
+
}
|
|
43691
|
+
|
|
43215
43692
|
}
|
|
43216
43693
|
|
|
43217
43694
|
/**
|
|
@@ -43269,7 +43746,12 @@ export default class Client extends OpenApi {
|
|
|
43269
43746
|
reqBodyType: "formData",
|
|
43270
43747
|
bodyType: "json",
|
|
43271
43748
|
});
|
|
43272
|
-
|
|
43749
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43750
|
+
return $dara.cast<DescribeDefenseRuleResponse>(await this.callApi(params, req, runtime), new DescribeDefenseRuleResponse({}));
|
|
43751
|
+
} else {
|
|
43752
|
+
return $dara.cast<DescribeDefenseRuleResponse>(await this.execute(params, req, runtime), new DescribeDefenseRuleResponse({}));
|
|
43753
|
+
}
|
|
43754
|
+
|
|
43273
43755
|
}
|
|
43274
43756
|
|
|
43275
43757
|
/**
|
|
@@ -43335,7 +43817,12 @@ export default class Client extends OpenApi {
|
|
|
43335
43817
|
reqBodyType: "formData",
|
|
43336
43818
|
bodyType: "json",
|
|
43337
43819
|
});
|
|
43338
|
-
|
|
43820
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43821
|
+
return $dara.cast<DescribeDefenseRulesResponse>(await this.callApi(params, req, runtime), new DescribeDefenseRulesResponse({}));
|
|
43822
|
+
} else {
|
|
43823
|
+
return $dara.cast<DescribeDefenseRulesResponse>(await this.execute(params, req, runtime), new DescribeDefenseRulesResponse({}));
|
|
43824
|
+
}
|
|
43825
|
+
|
|
43339
43826
|
}
|
|
43340
43827
|
|
|
43341
43828
|
/**
|
|
@@ -43389,7 +43876,12 @@ export default class Client extends OpenApi {
|
|
|
43389
43876
|
reqBodyType: "formData",
|
|
43390
43877
|
bodyType: "json",
|
|
43391
43878
|
});
|
|
43392
|
-
|
|
43879
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43880
|
+
return $dara.cast<DescribeDefenseTemplateResponse>(await this.callApi(params, req, runtime), new DescribeDefenseTemplateResponse({}));
|
|
43881
|
+
} else {
|
|
43882
|
+
return $dara.cast<DescribeDefenseTemplateResponse>(await this.execute(params, req, runtime), new DescribeDefenseTemplateResponse({}));
|
|
43883
|
+
}
|
|
43884
|
+
|
|
43393
43885
|
}
|
|
43394
43886
|
|
|
43395
43887
|
/**
|
|
@@ -43459,7 +43951,12 @@ export default class Client extends OpenApi {
|
|
|
43459
43951
|
reqBodyType: "formData",
|
|
43460
43952
|
bodyType: "json",
|
|
43461
43953
|
});
|
|
43462
|
-
|
|
43954
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
43955
|
+
return $dara.cast<DescribeDefenseTemplateValidGroupsResponse>(await this.callApi(params, req, runtime), new DescribeDefenseTemplateValidGroupsResponse({}));
|
|
43956
|
+
} else {
|
|
43957
|
+
return $dara.cast<DescribeDefenseTemplateValidGroupsResponse>(await this.execute(params, req, runtime), new DescribeDefenseTemplateValidGroupsResponse({}));
|
|
43958
|
+
}
|
|
43959
|
+
|
|
43463
43960
|
}
|
|
43464
43961
|
|
|
43465
43962
|
/**
|
|
@@ -43549,7 +44046,12 @@ export default class Client extends OpenApi {
|
|
|
43549
44046
|
reqBodyType: "formData",
|
|
43550
44047
|
bodyType: "json",
|
|
43551
44048
|
});
|
|
43552
|
-
|
|
44049
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44050
|
+
return $dara.cast<DescribeDefenseTemplatesResponse>(await this.callApi(params, req, runtime), new DescribeDefenseTemplatesResponse({}));
|
|
44051
|
+
} else {
|
|
44052
|
+
return $dara.cast<DescribeDefenseTemplatesResponse>(await this.execute(params, req, runtime), new DescribeDefenseTemplatesResponse({}));
|
|
44053
|
+
}
|
|
44054
|
+
|
|
43553
44055
|
}
|
|
43554
44056
|
|
|
43555
44057
|
/**
|
|
@@ -43603,7 +44105,12 @@ export default class Client extends OpenApi {
|
|
|
43603
44105
|
reqBodyType: "formData",
|
|
43604
44106
|
bodyType: "json",
|
|
43605
44107
|
});
|
|
43606
|
-
|
|
44108
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44109
|
+
return $dara.cast<DescribeDomainDNSRecordResponse>(await this.callApi(params, req, runtime), new DescribeDomainDNSRecordResponse({}));
|
|
44110
|
+
} else {
|
|
44111
|
+
return $dara.cast<DescribeDomainDNSRecordResponse>(await this.execute(params, req, runtime), new DescribeDomainDNSRecordResponse({}));
|
|
44112
|
+
}
|
|
44113
|
+
|
|
43607
44114
|
}
|
|
43608
44115
|
|
|
43609
44116
|
/**
|
|
@@ -43653,7 +44160,12 @@ export default class Client extends OpenApi {
|
|
|
43653
44160
|
reqBodyType: "formData",
|
|
43654
44161
|
bodyType: "json",
|
|
43655
44162
|
});
|
|
43656
|
-
|
|
44163
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44164
|
+
return $dara.cast<DescribeDomainDetailResponse>(await this.callApi(params, req, runtime), new DescribeDomainDetailResponse({}));
|
|
44165
|
+
} else {
|
|
44166
|
+
return $dara.cast<DescribeDomainDetailResponse>(await this.execute(params, req, runtime), new DescribeDomainDetailResponse({}));
|
|
44167
|
+
}
|
|
44168
|
+
|
|
43657
44169
|
}
|
|
43658
44170
|
|
|
43659
44171
|
/**
|
|
@@ -43723,7 +44235,12 @@ export default class Client extends OpenApi {
|
|
|
43723
44235
|
reqBodyType: "formData",
|
|
43724
44236
|
bodyType: "json",
|
|
43725
44237
|
});
|
|
43726
|
-
|
|
44238
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44239
|
+
return $dara.cast<DescribeDomainsResponse>(await this.callApi(params, req, runtime), new DescribeDomainsResponse({}));
|
|
44240
|
+
} else {
|
|
44241
|
+
return $dara.cast<DescribeDomainsResponse>(await this.execute(params, req, runtime), new DescribeDomainsResponse({}));
|
|
44242
|
+
}
|
|
44243
|
+
|
|
43727
44244
|
}
|
|
43728
44245
|
|
|
43729
44246
|
/**
|
|
@@ -43789,7 +44306,12 @@ export default class Client extends OpenApi {
|
|
|
43789
44306
|
reqBodyType: "formData",
|
|
43790
44307
|
bodyType: "json",
|
|
43791
44308
|
});
|
|
43792
|
-
|
|
44309
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44310
|
+
return $dara.cast<DescribeFlowChartResponse>(await this.callApi(params, req, runtime), new DescribeFlowChartResponse({}));
|
|
44311
|
+
} else {
|
|
44312
|
+
return $dara.cast<DescribeFlowChartResponse>(await this.execute(params, req, runtime), new DescribeFlowChartResponse({}));
|
|
44313
|
+
}
|
|
44314
|
+
|
|
43793
44315
|
}
|
|
43794
44316
|
|
|
43795
44317
|
/**
|
|
@@ -43847,7 +44369,12 @@ export default class Client extends OpenApi {
|
|
|
43847
44369
|
reqBodyType: "formData",
|
|
43848
44370
|
bodyType: "json",
|
|
43849
44371
|
});
|
|
43850
|
-
|
|
44372
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44373
|
+
return $dara.cast<DescribeFlowTopResourceResponse>(await this.callApi(params, req, runtime), new DescribeFlowTopResourceResponse({}));
|
|
44374
|
+
} else {
|
|
44375
|
+
return $dara.cast<DescribeFlowTopResourceResponse>(await this.execute(params, req, runtime), new DescribeFlowTopResourceResponse({}));
|
|
44376
|
+
}
|
|
44377
|
+
|
|
43851
44378
|
}
|
|
43852
44379
|
|
|
43853
44380
|
/**
|
|
@@ -43909,7 +44436,12 @@ export default class Client extends OpenApi {
|
|
|
43909
44436
|
reqBodyType: "formData",
|
|
43910
44437
|
bodyType: "json",
|
|
43911
44438
|
});
|
|
43912
|
-
|
|
44439
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44440
|
+
return $dara.cast<DescribeFlowTopUrlResponse>(await this.callApi(params, req, runtime), new DescribeFlowTopUrlResponse({}));
|
|
44441
|
+
} else {
|
|
44442
|
+
return $dara.cast<DescribeFlowTopUrlResponse>(await this.execute(params, req, runtime), new DescribeFlowTopUrlResponse({}));
|
|
44443
|
+
}
|
|
44444
|
+
|
|
43913
44445
|
}
|
|
43914
44446
|
|
|
43915
44447
|
/**
|
|
@@ -43959,7 +44491,12 @@ export default class Client extends OpenApi {
|
|
|
43959
44491
|
reqBodyType: "formData",
|
|
43960
44492
|
bodyType: "json",
|
|
43961
44493
|
});
|
|
43962
|
-
|
|
44494
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44495
|
+
return $dara.cast<DescribeFreeUserAssetCountResponse>(await this.callApi(params, req, runtime), new DescribeFreeUserAssetCountResponse({}));
|
|
44496
|
+
} else {
|
|
44497
|
+
return $dara.cast<DescribeFreeUserAssetCountResponse>(await this.execute(params, req, runtime), new DescribeFreeUserAssetCountResponse({}));
|
|
44498
|
+
}
|
|
44499
|
+
|
|
43963
44500
|
}
|
|
43964
44501
|
|
|
43965
44502
|
/**
|
|
@@ -44009,7 +44546,12 @@ export default class Client extends OpenApi {
|
|
|
44009
44546
|
reqBodyType: "formData",
|
|
44010
44547
|
bodyType: "json",
|
|
44011
44548
|
});
|
|
44012
|
-
|
|
44549
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44550
|
+
return $dara.cast<DescribeFreeUserEventCountResponse>(await this.callApi(params, req, runtime), new DescribeFreeUserEventCountResponse({}));
|
|
44551
|
+
} else {
|
|
44552
|
+
return $dara.cast<DescribeFreeUserEventCountResponse>(await this.execute(params, req, runtime), new DescribeFreeUserEventCountResponse({}));
|
|
44553
|
+
}
|
|
44554
|
+
|
|
44013
44555
|
}
|
|
44014
44556
|
|
|
44015
44557
|
/**
|
|
@@ -44059,7 +44601,12 @@ export default class Client extends OpenApi {
|
|
|
44059
44601
|
reqBodyType: "formData",
|
|
44060
44602
|
bodyType: "json",
|
|
44061
44603
|
});
|
|
44062
|
-
|
|
44604
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44605
|
+
return $dara.cast<DescribeFreeUserEventTypesResponse>(await this.callApi(params, req, runtime), new DescribeFreeUserEventTypesResponse({}));
|
|
44606
|
+
} else {
|
|
44607
|
+
return $dara.cast<DescribeFreeUserEventTypesResponse>(await this.execute(params, req, runtime), new DescribeFreeUserEventTypesResponse({}));
|
|
44608
|
+
}
|
|
44609
|
+
|
|
44063
44610
|
}
|
|
44064
44611
|
|
|
44065
44612
|
/**
|
|
@@ -44109,7 +44656,12 @@ export default class Client extends OpenApi {
|
|
|
44109
44656
|
reqBodyType: "formData",
|
|
44110
44657
|
bodyType: "json",
|
|
44111
44658
|
});
|
|
44112
|
-
|
|
44659
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44660
|
+
return $dara.cast<DescribeFreeUserEventsResponse>(await this.callApi(params, req, runtime), new DescribeFreeUserEventsResponse({}));
|
|
44661
|
+
} else {
|
|
44662
|
+
return $dara.cast<DescribeFreeUserEventsResponse>(await this.execute(params, req, runtime), new DescribeFreeUserEventsResponse({}));
|
|
44663
|
+
}
|
|
44664
|
+
|
|
44113
44665
|
}
|
|
44114
44666
|
|
|
44115
44667
|
/**
|
|
@@ -44147,7 +44699,12 @@ export default class Client extends OpenApi {
|
|
|
44147
44699
|
reqBodyType: "formData",
|
|
44148
44700
|
bodyType: "json",
|
|
44149
44701
|
});
|
|
44150
|
-
|
|
44702
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44703
|
+
return $dara.cast<DescribeHybridCloudClusterRuleResponse>(await this.callApi(params, req, runtime), new DescribeHybridCloudClusterRuleResponse({}));
|
|
44704
|
+
} else {
|
|
44705
|
+
return $dara.cast<DescribeHybridCloudClusterRuleResponse>(await this.execute(params, req, runtime), new DescribeHybridCloudClusterRuleResponse({}));
|
|
44706
|
+
}
|
|
44707
|
+
|
|
44151
44708
|
}
|
|
44152
44709
|
|
|
44153
44710
|
/**
|
|
@@ -44197,7 +44754,12 @@ export default class Client extends OpenApi {
|
|
|
44197
44754
|
reqBodyType: "formData",
|
|
44198
44755
|
bodyType: "json",
|
|
44199
44756
|
});
|
|
44200
|
-
|
|
44757
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44758
|
+
return $dara.cast<DescribeHybridCloudClustersResponse>(await this.callApi(params, req, runtime), new DescribeHybridCloudClustersResponse({}));
|
|
44759
|
+
} else {
|
|
44760
|
+
return $dara.cast<DescribeHybridCloudClustersResponse>(await this.execute(params, req, runtime), new DescribeHybridCloudClustersResponse({}));
|
|
44761
|
+
}
|
|
44762
|
+
|
|
44201
44763
|
}
|
|
44202
44764
|
|
|
44203
44765
|
/**
|
|
@@ -44271,7 +44833,12 @@ export default class Client extends OpenApi {
|
|
|
44271
44833
|
reqBodyType: "formData",
|
|
44272
44834
|
bodyType: "json",
|
|
44273
44835
|
});
|
|
44274
|
-
|
|
44836
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44837
|
+
return $dara.cast<DescribeHybridCloudGroupsResponse>(await this.callApi(params, req, runtime), new DescribeHybridCloudGroupsResponse({}));
|
|
44838
|
+
} else {
|
|
44839
|
+
return $dara.cast<DescribeHybridCloudGroupsResponse>(await this.execute(params, req, runtime), new DescribeHybridCloudGroupsResponse({}));
|
|
44840
|
+
}
|
|
44841
|
+
|
|
44275
44842
|
}
|
|
44276
44843
|
|
|
44277
44844
|
/**
|
|
@@ -44341,7 +44908,12 @@ export default class Client extends OpenApi {
|
|
|
44341
44908
|
reqBodyType: "formData",
|
|
44342
44909
|
bodyType: "json",
|
|
44343
44910
|
});
|
|
44344
|
-
|
|
44911
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44912
|
+
return $dara.cast<DescribeHybridCloudResourcesResponse>(await this.callApi(params, req, runtime), new DescribeHybridCloudResourcesResponse({}));
|
|
44913
|
+
} else {
|
|
44914
|
+
return $dara.cast<DescribeHybridCloudResourcesResponse>(await this.execute(params, req, runtime), new DescribeHybridCloudResourcesResponse({}));
|
|
44915
|
+
}
|
|
44916
|
+
|
|
44345
44917
|
}
|
|
44346
44918
|
|
|
44347
44919
|
/**
|
|
@@ -44399,7 +44971,12 @@ export default class Client extends OpenApi {
|
|
|
44399
44971
|
reqBodyType: "formData",
|
|
44400
44972
|
bodyType: "json",
|
|
44401
44973
|
});
|
|
44402
|
-
|
|
44974
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
44975
|
+
return $dara.cast<DescribeHybridCloudServerRegionsResponse>(await this.callApi(params, req, runtime), new DescribeHybridCloudServerRegionsResponse({}));
|
|
44976
|
+
} else {
|
|
44977
|
+
return $dara.cast<DescribeHybridCloudServerRegionsResponse>(await this.execute(params, req, runtime), new DescribeHybridCloudServerRegionsResponse({}));
|
|
44978
|
+
}
|
|
44979
|
+
|
|
44403
44980
|
}
|
|
44404
44981
|
|
|
44405
44982
|
/**
|
|
@@ -44469,7 +45046,12 @@ export default class Client extends OpenApi {
|
|
|
44469
45046
|
reqBodyType: "formData",
|
|
44470
45047
|
bodyType: "json",
|
|
44471
45048
|
});
|
|
44472
|
-
|
|
45049
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45050
|
+
return $dara.cast<DescribeHybridCloudUnassignedMachinesResponse>(await this.callApi(params, req, runtime), new DescribeHybridCloudUnassignedMachinesResponse({}));
|
|
45051
|
+
} else {
|
|
45052
|
+
return $dara.cast<DescribeHybridCloudUnassignedMachinesResponse>(await this.execute(params, req, runtime), new DescribeHybridCloudUnassignedMachinesResponse({}));
|
|
45053
|
+
}
|
|
45054
|
+
|
|
44473
45055
|
}
|
|
44474
45056
|
|
|
44475
45057
|
/**
|
|
@@ -44519,7 +45101,12 @@ export default class Client extends OpenApi {
|
|
|
44519
45101
|
reqBodyType: "formData",
|
|
44520
45102
|
bodyType: "json",
|
|
44521
45103
|
});
|
|
44522
|
-
|
|
45104
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45105
|
+
return $dara.cast<DescribeHybridCloudUserResponse>(await this.callApi(params, req, runtime), new DescribeHybridCloudUserResponse({}));
|
|
45106
|
+
} else {
|
|
45107
|
+
return $dara.cast<DescribeHybridCloudUserResponse>(await this.execute(params, req, runtime), new DescribeHybridCloudUserResponse({}));
|
|
45108
|
+
}
|
|
45109
|
+
|
|
44523
45110
|
}
|
|
44524
45111
|
|
|
44525
45112
|
/**
|
|
@@ -44565,7 +45152,12 @@ export default class Client extends OpenApi {
|
|
|
44565
45152
|
reqBodyType: "formData",
|
|
44566
45153
|
bodyType: "json",
|
|
44567
45154
|
});
|
|
44568
|
-
|
|
45155
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45156
|
+
return $dara.cast<DescribeInstanceResponse>(await this.callApi(params, req, runtime), new DescribeInstanceResponse({}));
|
|
45157
|
+
} else {
|
|
45158
|
+
return $dara.cast<DescribeInstanceResponse>(await this.execute(params, req, runtime), new DescribeInstanceResponse({}));
|
|
45159
|
+
}
|
|
45160
|
+
|
|
44569
45161
|
}
|
|
44570
45162
|
|
|
44571
45163
|
/**
|
|
@@ -44639,7 +45231,12 @@ export default class Client extends OpenApi {
|
|
|
44639
45231
|
reqBodyType: "formData",
|
|
44640
45232
|
bodyType: "json",
|
|
44641
45233
|
});
|
|
44642
|
-
|
|
45234
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45235
|
+
return $dara.cast<DescribeMajorProtectionBlackIpsResponse>(await this.callApi(params, req, runtime), new DescribeMajorProtectionBlackIpsResponse({}));
|
|
45236
|
+
} else {
|
|
45237
|
+
return $dara.cast<DescribeMajorProtectionBlackIpsResponse>(await this.execute(params, req, runtime), new DescribeMajorProtectionBlackIpsResponse({}));
|
|
45238
|
+
}
|
|
45239
|
+
|
|
44643
45240
|
}
|
|
44644
45241
|
|
|
44645
45242
|
/**
|
|
@@ -44697,7 +45294,12 @@ export default class Client extends OpenApi {
|
|
|
44697
45294
|
reqBodyType: "formData",
|
|
44698
45295
|
bodyType: "json",
|
|
44699
45296
|
});
|
|
44700
|
-
|
|
45297
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45298
|
+
return $dara.cast<DescribeMemberAccountsResponse>(await this.callApi(params, req, runtime), new DescribeMemberAccountsResponse({}));
|
|
45299
|
+
} else {
|
|
45300
|
+
return $dara.cast<DescribeMemberAccountsResponse>(await this.execute(params, req, runtime), new DescribeMemberAccountsResponse({}));
|
|
45301
|
+
}
|
|
45302
|
+
|
|
44701
45303
|
}
|
|
44702
45304
|
|
|
44703
45305
|
/**
|
|
@@ -44747,7 +45349,12 @@ export default class Client extends OpenApi {
|
|
|
44747
45349
|
reqBodyType: "formData",
|
|
44748
45350
|
bodyType: "json",
|
|
44749
45351
|
});
|
|
44750
|
-
|
|
45352
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45353
|
+
return $dara.cast<DescribePauseProtectionStatusResponse>(await this.callApi(params, req, runtime), new DescribePauseProtectionStatusResponse({}));
|
|
45354
|
+
} else {
|
|
45355
|
+
return $dara.cast<DescribePauseProtectionStatusResponse>(await this.execute(params, req, runtime), new DescribePauseProtectionStatusResponse({}));
|
|
45356
|
+
}
|
|
45357
|
+
|
|
44751
45358
|
}
|
|
44752
45359
|
|
|
44753
45360
|
/**
|
|
@@ -44813,7 +45420,12 @@ export default class Client extends OpenApi {
|
|
|
44813
45420
|
reqBodyType: "formData",
|
|
44814
45421
|
bodyType: "json",
|
|
44815
45422
|
});
|
|
44816
|
-
|
|
45423
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45424
|
+
return $dara.cast<DescribePeakTrendResponse>(await this.callApi(params, req, runtime), new DescribePeakTrendResponse({}));
|
|
45425
|
+
} else {
|
|
45426
|
+
return $dara.cast<DescribePeakTrendResponse>(await this.execute(params, req, runtime), new DescribePeakTrendResponse({}));
|
|
45427
|
+
}
|
|
45428
|
+
|
|
44817
45429
|
}
|
|
44818
45430
|
|
|
44819
45431
|
/**
|
|
@@ -44903,7 +45515,12 @@ export default class Client extends OpenApi {
|
|
|
44903
45515
|
reqBodyType: "formData",
|
|
44904
45516
|
bodyType: "json",
|
|
44905
45517
|
});
|
|
44906
|
-
|
|
45518
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45519
|
+
return $dara.cast<DescribeProductInstancesResponse>(await this.callApi(params, req, runtime), new DescribeProductInstancesResponse({}));
|
|
45520
|
+
} else {
|
|
45521
|
+
return $dara.cast<DescribeProductInstancesResponse>(await this.execute(params, req, runtime), new DescribeProductInstancesResponse({}));
|
|
45522
|
+
}
|
|
45523
|
+
|
|
44907
45524
|
}
|
|
44908
45525
|
|
|
44909
45526
|
/**
|
|
@@ -44961,7 +45578,12 @@ export default class Client extends OpenApi {
|
|
|
44961
45578
|
reqBodyType: "formData",
|
|
44962
45579
|
bodyType: "json",
|
|
44963
45580
|
});
|
|
44964
|
-
|
|
45581
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45582
|
+
return $dara.cast<DescribePunishedDomainsResponse>(await this.callApi(params, req, runtime), new DescribePunishedDomainsResponse({}));
|
|
45583
|
+
} else {
|
|
45584
|
+
return $dara.cast<DescribePunishedDomainsResponse>(await this.execute(params, req, runtime), new DescribePunishedDomainsResponse({}));
|
|
45585
|
+
}
|
|
45586
|
+
|
|
44965
45587
|
}
|
|
44966
45588
|
|
|
44967
45589
|
/**
|
|
@@ -45023,7 +45645,12 @@ export default class Client extends OpenApi {
|
|
|
45023
45645
|
reqBodyType: "formData",
|
|
45024
45646
|
bodyType: "json",
|
|
45025
45647
|
});
|
|
45026
|
-
|
|
45648
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45649
|
+
return $dara.cast<DescribeResourceInstanceCertsResponse>(await this.callApi(params, req, runtime), new DescribeResourceInstanceCertsResponse({}));
|
|
45650
|
+
} else {
|
|
45651
|
+
return $dara.cast<DescribeResourceInstanceCertsResponse>(await this.execute(params, req, runtime), new DescribeResourceInstanceCertsResponse({}));
|
|
45652
|
+
}
|
|
45653
|
+
|
|
45027
45654
|
}
|
|
45028
45655
|
|
|
45029
45656
|
/**
|
|
@@ -45077,7 +45704,12 @@ export default class Client extends OpenApi {
|
|
|
45077
45704
|
reqBodyType: "formData",
|
|
45078
45705
|
bodyType: "json",
|
|
45079
45706
|
});
|
|
45080
|
-
|
|
45707
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45708
|
+
return $dara.cast<DescribeResourceLogStatusResponse>(await this.callApi(params, req, runtime), new DescribeResourceLogStatusResponse({}));
|
|
45709
|
+
} else {
|
|
45710
|
+
return $dara.cast<DescribeResourceLogStatusResponse>(await this.execute(params, req, runtime), new DescribeResourceLogStatusResponse({}));
|
|
45711
|
+
}
|
|
45712
|
+
|
|
45081
45713
|
}
|
|
45082
45714
|
|
|
45083
45715
|
/**
|
|
@@ -45131,7 +45763,12 @@ export default class Client extends OpenApi {
|
|
|
45131
45763
|
reqBodyType: "formData",
|
|
45132
45764
|
bodyType: "json",
|
|
45133
45765
|
});
|
|
45134
|
-
|
|
45766
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45767
|
+
return $dara.cast<DescribeResourcePortResponse>(await this.callApi(params, req, runtime), new DescribeResourcePortResponse({}));
|
|
45768
|
+
} else {
|
|
45769
|
+
return $dara.cast<DescribeResourcePortResponse>(await this.execute(params, req, runtime), new DescribeResourcePortResponse({}));
|
|
45770
|
+
}
|
|
45771
|
+
|
|
45135
45772
|
}
|
|
45136
45773
|
|
|
45137
45774
|
/**
|
|
@@ -45181,7 +45818,12 @@ export default class Client extends OpenApi {
|
|
|
45181
45818
|
reqBodyType: "formData",
|
|
45182
45819
|
bodyType: "json",
|
|
45183
45820
|
});
|
|
45184
|
-
|
|
45821
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45822
|
+
return $dara.cast<DescribeResourceRegionIdResponse>(await this.callApi(params, req, runtime), new DescribeResourceRegionIdResponse({}));
|
|
45823
|
+
} else {
|
|
45824
|
+
return $dara.cast<DescribeResourceRegionIdResponse>(await this.execute(params, req, runtime), new DescribeResourceRegionIdResponse({}));
|
|
45825
|
+
}
|
|
45826
|
+
|
|
45185
45827
|
}
|
|
45186
45828
|
|
|
45187
45829
|
/**
|
|
@@ -45235,7 +45877,12 @@ export default class Client extends OpenApi {
|
|
|
45235
45877
|
reqBodyType: "formData",
|
|
45236
45878
|
bodyType: "json",
|
|
45237
45879
|
});
|
|
45238
|
-
|
|
45880
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45881
|
+
return $dara.cast<DescribeResourceSupportRegionsResponse>(await this.callApi(params, req, runtime), new DescribeResourceSupportRegionsResponse({}));
|
|
45882
|
+
} else {
|
|
45883
|
+
return $dara.cast<DescribeResourceSupportRegionsResponse>(await this.execute(params, req, runtime), new DescribeResourceSupportRegionsResponse({}));
|
|
45884
|
+
}
|
|
45885
|
+
|
|
45239
45886
|
}
|
|
45240
45887
|
|
|
45241
45888
|
/**
|
|
@@ -45305,7 +45952,12 @@ export default class Client extends OpenApi {
|
|
|
45305
45952
|
reqBodyType: "formData",
|
|
45306
45953
|
bodyType: "json",
|
|
45307
45954
|
});
|
|
45308
|
-
|
|
45955
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
45956
|
+
return $dara.cast<DescribeResponseCodeTrendGraphResponse>(await this.callApi(params, req, runtime), new DescribeResponseCodeTrendGraphResponse({}));
|
|
45957
|
+
} else {
|
|
45958
|
+
return $dara.cast<DescribeResponseCodeTrendGraphResponse>(await this.execute(params, req, runtime), new DescribeResponseCodeTrendGraphResponse({}));
|
|
45959
|
+
}
|
|
45960
|
+
|
|
45309
45961
|
}
|
|
45310
45962
|
|
|
45311
45963
|
/**
|
|
@@ -45371,7 +46023,12 @@ export default class Client extends OpenApi {
|
|
|
45371
46023
|
reqBodyType: "formData",
|
|
45372
46024
|
bodyType: "json",
|
|
45373
46025
|
});
|
|
45374
|
-
|
|
46026
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46027
|
+
return $dara.cast<DescribeRuleGroupsResponse>(await this.callApi(params, req, runtime), new DescribeRuleGroupsResponse({}));
|
|
46028
|
+
} else {
|
|
46029
|
+
return $dara.cast<DescribeRuleGroupsResponse>(await this.execute(params, req, runtime), new DescribeRuleGroupsResponse({}));
|
|
46030
|
+
}
|
|
46031
|
+
|
|
45375
46032
|
}
|
|
45376
46033
|
|
|
45377
46034
|
/**
|
|
@@ -45437,7 +46094,12 @@ export default class Client extends OpenApi {
|
|
|
45437
46094
|
reqBodyType: "formData",
|
|
45438
46095
|
bodyType: "json",
|
|
45439
46096
|
});
|
|
45440
|
-
|
|
46097
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46098
|
+
return $dara.cast<DescribeRuleHitsTopClientIpResponse>(await this.callApi(params, req, runtime), new DescribeRuleHitsTopClientIpResponse({}));
|
|
46099
|
+
} else {
|
|
46100
|
+
return $dara.cast<DescribeRuleHitsTopClientIpResponse>(await this.execute(params, req, runtime), new DescribeRuleHitsTopClientIpResponse({}));
|
|
46101
|
+
}
|
|
46102
|
+
|
|
45441
46103
|
}
|
|
45442
46104
|
|
|
45443
46105
|
/**
|
|
@@ -45499,7 +46161,12 @@ export default class Client extends OpenApi {
|
|
|
45499
46161
|
reqBodyType: "formData",
|
|
45500
46162
|
bodyType: "json",
|
|
45501
46163
|
});
|
|
45502
|
-
|
|
46164
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46165
|
+
return $dara.cast<DescribeRuleHitsTopResourceResponse>(await this.callApi(params, req, runtime), new DescribeRuleHitsTopResourceResponse({}));
|
|
46166
|
+
} else {
|
|
46167
|
+
return $dara.cast<DescribeRuleHitsTopResourceResponse>(await this.execute(params, req, runtime), new DescribeRuleHitsTopResourceResponse({}));
|
|
46168
|
+
}
|
|
46169
|
+
|
|
45503
46170
|
}
|
|
45504
46171
|
|
|
45505
46172
|
/**
|
|
@@ -45569,7 +46236,12 @@ export default class Client extends OpenApi {
|
|
|
45569
46236
|
reqBodyType: "formData",
|
|
45570
46237
|
bodyType: "json",
|
|
45571
46238
|
});
|
|
45572
|
-
|
|
46239
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46240
|
+
return $dara.cast<DescribeRuleHitsTopRuleIdResponse>(await this.callApi(params, req, runtime), new DescribeRuleHitsTopRuleIdResponse({}));
|
|
46241
|
+
} else {
|
|
46242
|
+
return $dara.cast<DescribeRuleHitsTopRuleIdResponse>(await this.execute(params, req, runtime), new DescribeRuleHitsTopRuleIdResponse({}));
|
|
46243
|
+
}
|
|
46244
|
+
|
|
45573
46245
|
}
|
|
45574
46246
|
|
|
45575
46247
|
/**
|
|
@@ -45631,7 +46303,12 @@ export default class Client extends OpenApi {
|
|
|
45631
46303
|
reqBodyType: "formData",
|
|
45632
46304
|
bodyType: "json",
|
|
45633
46305
|
});
|
|
45634
|
-
|
|
46306
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46307
|
+
return $dara.cast<DescribeRuleHitsTopTuleTypeResponse>(await this.callApi(params, req, runtime), new DescribeRuleHitsTopTuleTypeResponse({}));
|
|
46308
|
+
} else {
|
|
46309
|
+
return $dara.cast<DescribeRuleHitsTopTuleTypeResponse>(await this.execute(params, req, runtime), new DescribeRuleHitsTopTuleTypeResponse({}));
|
|
46310
|
+
}
|
|
46311
|
+
|
|
45635
46312
|
}
|
|
45636
46313
|
|
|
45637
46314
|
/**
|
|
@@ -45693,7 +46370,12 @@ export default class Client extends OpenApi {
|
|
|
45693
46370
|
reqBodyType: "formData",
|
|
45694
46371
|
bodyType: "json",
|
|
45695
46372
|
});
|
|
45696
|
-
|
|
46373
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46374
|
+
return $dara.cast<DescribeRuleHitsTopUaResponse>(await this.callApi(params, req, runtime), new DescribeRuleHitsTopUaResponse({}));
|
|
46375
|
+
} else {
|
|
46376
|
+
return $dara.cast<DescribeRuleHitsTopUaResponse>(await this.execute(params, req, runtime), new DescribeRuleHitsTopUaResponse({}));
|
|
46377
|
+
}
|
|
46378
|
+
|
|
45697
46379
|
}
|
|
45698
46380
|
|
|
45699
46381
|
/**
|
|
@@ -45759,7 +46441,12 @@ export default class Client extends OpenApi {
|
|
|
45759
46441
|
reqBodyType: "formData",
|
|
45760
46442
|
bodyType: "json",
|
|
45761
46443
|
});
|
|
45762
|
-
|
|
46444
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46445
|
+
return $dara.cast<DescribeRuleHitsTopUrlResponse>(await this.callApi(params, req, runtime), new DescribeRuleHitsTopUrlResponse({}));
|
|
46446
|
+
} else {
|
|
46447
|
+
return $dara.cast<DescribeRuleHitsTopUrlResponse>(await this.execute(params, req, runtime), new DescribeRuleHitsTopUrlResponse({}));
|
|
46448
|
+
}
|
|
46449
|
+
|
|
45763
46450
|
}
|
|
45764
46451
|
|
|
45765
46452
|
/**
|
|
@@ -45833,7 +46520,12 @@ export default class Client extends OpenApi {
|
|
|
45833
46520
|
reqBodyType: "formData",
|
|
45834
46521
|
bodyType: "json",
|
|
45835
46522
|
});
|
|
45836
|
-
|
|
46523
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46524
|
+
return $dara.cast<DescribeSensitiveApiStatisticResponse>(await this.callApi(params, req, runtime), new DescribeSensitiveApiStatisticResponse({}));
|
|
46525
|
+
} else {
|
|
46526
|
+
return $dara.cast<DescribeSensitiveApiStatisticResponse>(await this.execute(params, req, runtime), new DescribeSensitiveApiStatisticResponse({}));
|
|
46527
|
+
}
|
|
46528
|
+
|
|
45837
46529
|
}
|
|
45838
46530
|
|
|
45839
46531
|
/**
|
|
@@ -45895,7 +46587,12 @@ export default class Client extends OpenApi {
|
|
|
45895
46587
|
reqBodyType: "formData",
|
|
45896
46588
|
bodyType: "json",
|
|
45897
46589
|
});
|
|
45898
|
-
|
|
46590
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46591
|
+
return $dara.cast<DescribeSensitiveDetectionResultResponse>(await this.callApi(params, req, runtime), new DescribeSensitiveDetectionResultResponse({}));
|
|
46592
|
+
} else {
|
|
46593
|
+
return $dara.cast<DescribeSensitiveDetectionResultResponse>(await this.execute(params, req, runtime), new DescribeSensitiveDetectionResultResponse({}));
|
|
46594
|
+
}
|
|
46595
|
+
|
|
45899
46596
|
}
|
|
45900
46597
|
|
|
45901
46598
|
/**
|
|
@@ -45957,7 +46654,12 @@ export default class Client extends OpenApi {
|
|
|
45957
46654
|
reqBodyType: "formData",
|
|
45958
46655
|
bodyType: "json",
|
|
45959
46656
|
});
|
|
45960
|
-
|
|
46657
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46658
|
+
return $dara.cast<DescribeSensitiveOutboundDistributionResponse>(await this.callApi(params, req, runtime), new DescribeSensitiveOutboundDistributionResponse({}));
|
|
46659
|
+
} else {
|
|
46660
|
+
return $dara.cast<DescribeSensitiveOutboundDistributionResponse>(await this.execute(params, req, runtime), new DescribeSensitiveOutboundDistributionResponse({}));
|
|
46661
|
+
}
|
|
46662
|
+
|
|
45961
46663
|
}
|
|
45962
46664
|
|
|
45963
46665
|
/**
|
|
@@ -46051,7 +46753,12 @@ export default class Client extends OpenApi {
|
|
|
46051
46753
|
reqBodyType: "formData",
|
|
46052
46754
|
bodyType: "json",
|
|
46053
46755
|
});
|
|
46054
|
-
|
|
46756
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46757
|
+
return $dara.cast<DescribeSensitiveOutboundStatisticResponse>(await this.callApi(params, req, runtime), new DescribeSensitiveOutboundStatisticResponse({}));
|
|
46758
|
+
} else {
|
|
46759
|
+
return $dara.cast<DescribeSensitiveOutboundStatisticResponse>(await this.execute(params, req, runtime), new DescribeSensitiveOutboundStatisticResponse({}));
|
|
46760
|
+
}
|
|
46761
|
+
|
|
46055
46762
|
}
|
|
46056
46763
|
|
|
46057
46764
|
/**
|
|
@@ -46113,7 +46820,12 @@ export default class Client extends OpenApi {
|
|
|
46113
46820
|
reqBodyType: "formData",
|
|
46114
46821
|
bodyType: "json",
|
|
46115
46822
|
});
|
|
46116
|
-
|
|
46823
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46824
|
+
return $dara.cast<DescribeSensitiveOutboundTrendResponse>(await this.callApi(params, req, runtime), new DescribeSensitiveOutboundTrendResponse({}));
|
|
46825
|
+
} else {
|
|
46826
|
+
return $dara.cast<DescribeSensitiveOutboundTrendResponse>(await this.execute(params, req, runtime), new DescribeSensitiveOutboundTrendResponse({}));
|
|
46827
|
+
}
|
|
46828
|
+
|
|
46117
46829
|
}
|
|
46118
46830
|
|
|
46119
46831
|
/**
|
|
@@ -46203,7 +46915,12 @@ export default class Client extends OpenApi {
|
|
|
46203
46915
|
reqBodyType: "formData",
|
|
46204
46916
|
bodyType: "json",
|
|
46205
46917
|
});
|
|
46206
|
-
|
|
46918
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
46919
|
+
return $dara.cast<DescribeSensitiveRequestLogResponse>(await this.callApi(params, req, runtime), new DescribeSensitiveRequestLogResponse({}));
|
|
46920
|
+
} else {
|
|
46921
|
+
return $dara.cast<DescribeSensitiveRequestLogResponse>(await this.execute(params, req, runtime), new DescribeSensitiveRequestLogResponse({}));
|
|
46922
|
+
}
|
|
46923
|
+
|
|
46207
46924
|
}
|
|
46208
46925
|
|
|
46209
46926
|
/**
|
|
@@ -46281,7 +46998,12 @@ export default class Client extends OpenApi {
|
|
|
46281
46998
|
reqBodyType: "formData",
|
|
46282
46999
|
bodyType: "json",
|
|
46283
47000
|
});
|
|
46284
|
-
|
|
47001
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47002
|
+
return $dara.cast<DescribeSensitiveRequestsResponse>(await this.callApi(params, req, runtime), new DescribeSensitiveRequestsResponse({}));
|
|
47003
|
+
} else {
|
|
47004
|
+
return $dara.cast<DescribeSensitiveRequestsResponse>(await this.execute(params, req, runtime), new DescribeSensitiveRequestsResponse({}));
|
|
47005
|
+
}
|
|
47006
|
+
|
|
46285
47007
|
}
|
|
46286
47008
|
|
|
46287
47009
|
/**
|
|
@@ -46355,7 +47077,12 @@ export default class Client extends OpenApi {
|
|
|
46355
47077
|
reqBodyType: "formData",
|
|
46356
47078
|
bodyType: "json",
|
|
46357
47079
|
});
|
|
46358
|
-
|
|
47080
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47081
|
+
return $dara.cast<DescribeSensitiveStatisticResponse>(await this.callApi(params, req, runtime), new DescribeSensitiveStatisticResponse({}));
|
|
47082
|
+
} else {
|
|
47083
|
+
return $dara.cast<DescribeSensitiveStatisticResponse>(await this.execute(params, req, runtime), new DescribeSensitiveStatisticResponse({}));
|
|
47084
|
+
}
|
|
47085
|
+
|
|
46359
47086
|
}
|
|
46360
47087
|
|
|
46361
47088
|
/**
|
|
@@ -46405,7 +47132,12 @@ export default class Client extends OpenApi {
|
|
|
46405
47132
|
reqBodyType: "formData",
|
|
46406
47133
|
bodyType: "json",
|
|
46407
47134
|
});
|
|
46408
|
-
|
|
47135
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47136
|
+
return $dara.cast<DescribeSlsAuthStatusResponse>(await this.callApi(params, req, runtime), new DescribeSlsAuthStatusResponse({}));
|
|
47137
|
+
} else {
|
|
47138
|
+
return $dara.cast<DescribeSlsAuthStatusResponse>(await this.execute(params, req, runtime), new DescribeSlsAuthStatusResponse({}));
|
|
47139
|
+
}
|
|
47140
|
+
|
|
46409
47141
|
}
|
|
46410
47142
|
|
|
46411
47143
|
/**
|
|
@@ -46455,7 +47187,12 @@ export default class Client extends OpenApi {
|
|
|
46455
47187
|
reqBodyType: "formData",
|
|
46456
47188
|
bodyType: "json",
|
|
46457
47189
|
});
|
|
46458
|
-
|
|
47190
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47191
|
+
return $dara.cast<DescribeSlsLogStoreResponse>(await this.callApi(params, req, runtime), new DescribeSlsLogStoreResponse({}));
|
|
47192
|
+
} else {
|
|
47193
|
+
return $dara.cast<DescribeSlsLogStoreResponse>(await this.execute(params, req, runtime), new DescribeSlsLogStoreResponse({}));
|
|
47194
|
+
}
|
|
47195
|
+
|
|
46459
47196
|
}
|
|
46460
47197
|
|
|
46461
47198
|
/**
|
|
@@ -46505,7 +47242,12 @@ export default class Client extends OpenApi {
|
|
|
46505
47242
|
reqBodyType: "formData",
|
|
46506
47243
|
bodyType: "json",
|
|
46507
47244
|
});
|
|
46508
|
-
|
|
47245
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47246
|
+
return $dara.cast<DescribeSlsLogStoreStatusResponse>(await this.callApi(params, req, runtime), new DescribeSlsLogStoreStatusResponse({}));
|
|
47247
|
+
} else {
|
|
47248
|
+
return $dara.cast<DescribeSlsLogStoreStatusResponse>(await this.execute(params, req, runtime), new DescribeSlsLogStoreStatusResponse({}));
|
|
47249
|
+
}
|
|
47250
|
+
|
|
46509
47251
|
}
|
|
46510
47252
|
|
|
46511
47253
|
/**
|
|
@@ -46559,7 +47301,12 @@ export default class Client extends OpenApi {
|
|
|
46559
47301
|
reqBodyType: "formData",
|
|
46560
47302
|
bodyType: "json",
|
|
46561
47303
|
});
|
|
46562
|
-
|
|
47304
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47305
|
+
return $dara.cast<DescribeTemplateResourceCountResponse>(await this.callApi(params, req, runtime), new DescribeTemplateResourceCountResponse({}));
|
|
47306
|
+
} else {
|
|
47307
|
+
return $dara.cast<DescribeTemplateResourceCountResponse>(await this.execute(params, req, runtime), new DescribeTemplateResourceCountResponse({}));
|
|
47308
|
+
}
|
|
47309
|
+
|
|
46563
47310
|
}
|
|
46564
47311
|
|
|
46565
47312
|
/**
|
|
@@ -46617,7 +47364,12 @@ export default class Client extends OpenApi {
|
|
|
46617
47364
|
reqBodyType: "formData",
|
|
46618
47365
|
bodyType: "json",
|
|
46619
47366
|
});
|
|
46620
|
-
|
|
47367
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47368
|
+
return $dara.cast<DescribeTemplateResourcesResponse>(await this.callApi(params, req, runtime), new DescribeTemplateResourcesResponse({}));
|
|
47369
|
+
} else {
|
|
47370
|
+
return $dara.cast<DescribeTemplateResourcesResponse>(await this.execute(params, req, runtime), new DescribeTemplateResourcesResponse({}));
|
|
47371
|
+
}
|
|
47372
|
+
|
|
46621
47373
|
}
|
|
46622
47374
|
|
|
46623
47375
|
/**
|
|
@@ -46671,7 +47423,12 @@ export default class Client extends OpenApi {
|
|
|
46671
47423
|
reqBodyType: "formData",
|
|
46672
47424
|
bodyType: "json",
|
|
46673
47425
|
});
|
|
46674
|
-
|
|
47426
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47427
|
+
return $dara.cast<DescribeUserAbnormalTrendResponse>(await this.callApi(params, req, runtime), new DescribeUserAbnormalTrendResponse({}));
|
|
47428
|
+
} else {
|
|
47429
|
+
return $dara.cast<DescribeUserAbnormalTrendResponse>(await this.execute(params, req, runtime), new DescribeUserAbnormalTrendResponse({}));
|
|
47430
|
+
}
|
|
47431
|
+
|
|
46675
47432
|
}
|
|
46676
47433
|
|
|
46677
47434
|
/**
|
|
@@ -46733,7 +47490,12 @@ export default class Client extends OpenApi {
|
|
|
46733
47490
|
reqBodyType: "formData",
|
|
46734
47491
|
bodyType: "json",
|
|
46735
47492
|
});
|
|
46736
|
-
|
|
47493
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47494
|
+
return $dara.cast<DescribeUserAbnormalTypeResponse>(await this.callApi(params, req, runtime), new DescribeUserAbnormalTypeResponse({}));
|
|
47495
|
+
} else {
|
|
47496
|
+
return $dara.cast<DescribeUserAbnormalTypeResponse>(await this.execute(params, req, runtime), new DescribeUserAbnormalTypeResponse({}));
|
|
47497
|
+
}
|
|
47498
|
+
|
|
46737
47499
|
}
|
|
46738
47500
|
|
|
46739
47501
|
/**
|
|
@@ -46803,7 +47565,12 @@ export default class Client extends OpenApi {
|
|
|
46803
47565
|
reqBodyType: "formData",
|
|
46804
47566
|
bodyType: "json",
|
|
46805
47567
|
});
|
|
46806
|
-
|
|
47568
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47569
|
+
return $dara.cast<DescribeUserApiRequestResponse>(await this.callApi(params, req, runtime), new DescribeUserApiRequestResponse({}));
|
|
47570
|
+
} else {
|
|
47571
|
+
return $dara.cast<DescribeUserApiRequestResponse>(await this.execute(params, req, runtime), new DescribeUserApiRequestResponse({}));
|
|
47572
|
+
}
|
|
47573
|
+
|
|
46807
47574
|
}
|
|
46808
47575
|
|
|
46809
47576
|
/**
|
|
@@ -46865,7 +47632,12 @@ export default class Client extends OpenApi {
|
|
|
46865
47632
|
reqBodyType: "formData",
|
|
46866
47633
|
bodyType: "json",
|
|
46867
47634
|
});
|
|
46868
|
-
|
|
47635
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47636
|
+
return $dara.cast<DescribeUserAssetResponse>(await this.callApi(params, req, runtime), new DescribeUserAssetResponse({}));
|
|
47637
|
+
} else {
|
|
47638
|
+
return $dara.cast<DescribeUserAssetResponse>(await this.execute(params, req, runtime), new DescribeUserAssetResponse({}));
|
|
47639
|
+
}
|
|
47640
|
+
|
|
46869
47641
|
}
|
|
46870
47642
|
|
|
46871
47643
|
/**
|
|
@@ -46919,7 +47691,12 @@ export default class Client extends OpenApi {
|
|
|
46919
47691
|
reqBodyType: "formData",
|
|
46920
47692
|
bodyType: "json",
|
|
46921
47693
|
});
|
|
46922
|
-
|
|
47694
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47695
|
+
return $dara.cast<DescribeUserEventTrendResponse>(await this.callApi(params, req, runtime), new DescribeUserEventTrendResponse({}));
|
|
47696
|
+
} else {
|
|
47697
|
+
return $dara.cast<DescribeUserEventTrendResponse>(await this.execute(params, req, runtime), new DescribeUserEventTrendResponse({}));
|
|
47698
|
+
}
|
|
47699
|
+
|
|
46923
47700
|
}
|
|
46924
47701
|
|
|
46925
47702
|
/**
|
|
@@ -46981,7 +47758,12 @@ export default class Client extends OpenApi {
|
|
|
46981
47758
|
reqBodyType: "formData",
|
|
46982
47759
|
bodyType: "json",
|
|
46983
47760
|
});
|
|
46984
|
-
|
|
47761
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47762
|
+
return $dara.cast<DescribeUserEventTypeResponse>(await this.callApi(params, req, runtime), new DescribeUserEventTypeResponse({}));
|
|
47763
|
+
} else {
|
|
47764
|
+
return $dara.cast<DescribeUserEventTypeResponse>(await this.execute(params, req, runtime), new DescribeUserEventTypeResponse({}));
|
|
47765
|
+
}
|
|
47766
|
+
|
|
46985
47767
|
}
|
|
46986
47768
|
|
|
46987
47769
|
/**
|
|
@@ -47031,7 +47813,12 @@ export default class Client extends OpenApi {
|
|
|
47031
47813
|
reqBodyType: "formData",
|
|
47032
47814
|
bodyType: "json",
|
|
47033
47815
|
});
|
|
47034
|
-
|
|
47816
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47817
|
+
return $dara.cast<DescribeUserSlsLogRegionsResponse>(await this.callApi(params, req, runtime), new DescribeUserSlsLogRegionsResponse({}));
|
|
47818
|
+
} else {
|
|
47819
|
+
return $dara.cast<DescribeUserSlsLogRegionsResponse>(await this.execute(params, req, runtime), new DescribeUserSlsLogRegionsResponse({}));
|
|
47820
|
+
}
|
|
47821
|
+
|
|
47035
47822
|
}
|
|
47036
47823
|
|
|
47037
47824
|
/**
|
|
@@ -47081,7 +47868,12 @@ export default class Client extends OpenApi {
|
|
|
47081
47868
|
reqBodyType: "formData",
|
|
47082
47869
|
bodyType: "json",
|
|
47083
47870
|
});
|
|
47084
|
-
|
|
47871
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47872
|
+
return $dara.cast<DescribeUserWafLogStatusResponse>(await this.callApi(params, req, runtime), new DescribeUserWafLogStatusResponse({}));
|
|
47873
|
+
} else {
|
|
47874
|
+
return $dara.cast<DescribeUserWafLogStatusResponse>(await this.execute(params, req, runtime), new DescribeUserWafLogStatusResponse({}));
|
|
47875
|
+
}
|
|
47876
|
+
|
|
47085
47877
|
}
|
|
47086
47878
|
|
|
47087
47879
|
/**
|
|
@@ -47143,7 +47935,12 @@ export default class Client extends OpenApi {
|
|
|
47143
47935
|
reqBodyType: "formData",
|
|
47144
47936
|
bodyType: "json",
|
|
47145
47937
|
});
|
|
47146
|
-
|
|
47938
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
47939
|
+
return $dara.cast<DescribeVisitTopIpResponse>(await this.callApi(params, req, runtime), new DescribeVisitTopIpResponse({}));
|
|
47940
|
+
} else {
|
|
47941
|
+
return $dara.cast<DescribeVisitTopIpResponse>(await this.execute(params, req, runtime), new DescribeVisitTopIpResponse({}));
|
|
47942
|
+
}
|
|
47943
|
+
|
|
47147
47944
|
}
|
|
47148
47945
|
|
|
47149
47946
|
/**
|
|
@@ -47205,7 +48002,12 @@ export default class Client extends OpenApi {
|
|
|
47205
48002
|
reqBodyType: "formData",
|
|
47206
48003
|
bodyType: "json",
|
|
47207
48004
|
});
|
|
47208
|
-
|
|
48005
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48006
|
+
return $dara.cast<DescribeVisitUasResponse>(await this.callApi(params, req, runtime), new DescribeVisitUasResponse({}));
|
|
48007
|
+
} else {
|
|
48008
|
+
return $dara.cast<DescribeVisitUasResponse>(await this.execute(params, req, runtime), new DescribeVisitUasResponse({}));
|
|
48009
|
+
}
|
|
48010
|
+
|
|
47209
48011
|
}
|
|
47210
48012
|
|
|
47211
48013
|
/**
|
|
@@ -47255,7 +48057,12 @@ export default class Client extends OpenApi {
|
|
|
47255
48057
|
reqBodyType: "formData",
|
|
47256
48058
|
bodyType: "json",
|
|
47257
48059
|
});
|
|
47258
|
-
|
|
48060
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48061
|
+
return $dara.cast<DescribeWafSourceIpSegmentResponse>(await this.callApi(params, req, runtime), new DescribeWafSourceIpSegmentResponse({}));
|
|
48062
|
+
} else {
|
|
48063
|
+
return $dara.cast<DescribeWafSourceIpSegmentResponse>(await this.execute(params, req, runtime), new DescribeWafSourceIpSegmentResponse({}));
|
|
48064
|
+
}
|
|
48065
|
+
|
|
47259
48066
|
}
|
|
47260
48067
|
|
|
47261
48068
|
/**
|
|
@@ -47309,7 +48116,12 @@ export default class Client extends OpenApi {
|
|
|
47309
48116
|
reqBodyType: "formData",
|
|
47310
48117
|
bodyType: "json",
|
|
47311
48118
|
});
|
|
47312
|
-
|
|
48119
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48120
|
+
return $dara.cast<ListTagKeysResponse>(await this.callApi(params, req, runtime), new ListTagKeysResponse({}));
|
|
48121
|
+
} else {
|
|
48122
|
+
return $dara.cast<ListTagKeysResponse>(await this.execute(params, req, runtime), new ListTagKeysResponse({}));
|
|
48123
|
+
}
|
|
48124
|
+
|
|
47313
48125
|
}
|
|
47314
48126
|
|
|
47315
48127
|
/**
|
|
@@ -47367,7 +48179,12 @@ export default class Client extends OpenApi {
|
|
|
47367
48179
|
reqBodyType: "formData",
|
|
47368
48180
|
bodyType: "json",
|
|
47369
48181
|
});
|
|
47370
|
-
|
|
48182
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48183
|
+
return $dara.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
|
|
48184
|
+
} else {
|
|
48185
|
+
return $dara.cast<ListTagResourcesResponse>(await this.execute(params, req, runtime), new ListTagResourcesResponse({}));
|
|
48186
|
+
}
|
|
48187
|
+
|
|
47371
48188
|
}
|
|
47372
48189
|
|
|
47373
48190
|
/**
|
|
@@ -47429,7 +48246,12 @@ export default class Client extends OpenApi {
|
|
|
47429
48246
|
reqBodyType: "formData",
|
|
47430
48247
|
bodyType: "json",
|
|
47431
48248
|
});
|
|
47432
|
-
|
|
48249
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48250
|
+
return $dara.cast<ListTagValuesResponse>(await this.callApi(params, req, runtime), new ListTagValuesResponse({}));
|
|
48251
|
+
} else {
|
|
48252
|
+
return $dara.cast<ListTagValuesResponse>(await this.execute(params, req, runtime), new ListTagValuesResponse({}));
|
|
48253
|
+
}
|
|
48254
|
+
|
|
47433
48255
|
}
|
|
47434
48256
|
|
|
47435
48257
|
/**
|
|
@@ -47495,7 +48317,12 @@ export default class Client extends OpenApi {
|
|
|
47495
48317
|
reqBodyType: "formData",
|
|
47496
48318
|
bodyType: "json",
|
|
47497
48319
|
});
|
|
47498
|
-
|
|
48320
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48321
|
+
return $dara.cast<ModifyApisecAbnormalsResponse>(await this.callApi(params, req, runtime), new ModifyApisecAbnormalsResponse({}));
|
|
48322
|
+
} else {
|
|
48323
|
+
return $dara.cast<ModifyApisecAbnormalsResponse>(await this.execute(params, req, runtime), new ModifyApisecAbnormalsResponse({}));
|
|
48324
|
+
}
|
|
48325
|
+
|
|
47499
48326
|
}
|
|
47500
48327
|
|
|
47501
48328
|
/**
|
|
@@ -47561,7 +48388,12 @@ export default class Client extends OpenApi {
|
|
|
47561
48388
|
reqBodyType: "formData",
|
|
47562
48389
|
bodyType: "json",
|
|
47563
48390
|
});
|
|
47564
|
-
|
|
48391
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48392
|
+
return $dara.cast<ModifyApisecApiResourceResponse>(await this.callApi(params, req, runtime), new ModifyApisecApiResourceResponse({}));
|
|
48393
|
+
} else {
|
|
48394
|
+
return $dara.cast<ModifyApisecApiResourceResponse>(await this.execute(params, req, runtime), new ModifyApisecApiResourceResponse({}));
|
|
48395
|
+
}
|
|
48396
|
+
|
|
47565
48397
|
}
|
|
47566
48398
|
|
|
47567
48399
|
/**
|
|
@@ -47627,7 +48459,12 @@ export default class Client extends OpenApi {
|
|
|
47627
48459
|
reqBodyType: "formData",
|
|
47628
48460
|
bodyType: "json",
|
|
47629
48461
|
});
|
|
47630
|
-
|
|
48462
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48463
|
+
return $dara.cast<ModifyApisecEventsResponse>(await this.callApi(params, req, runtime), new ModifyApisecEventsResponse({}));
|
|
48464
|
+
} else {
|
|
48465
|
+
return $dara.cast<ModifyApisecEventsResponse>(await this.execute(params, req, runtime), new ModifyApisecEventsResponse({}));
|
|
48466
|
+
}
|
|
48467
|
+
|
|
47631
48468
|
}
|
|
47632
48469
|
|
|
47633
48470
|
/**
|
|
@@ -47693,7 +48530,12 @@ export default class Client extends OpenApi {
|
|
|
47693
48530
|
reqBodyType: "formData",
|
|
47694
48531
|
bodyType: "json",
|
|
47695
48532
|
});
|
|
47696
|
-
|
|
48533
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48534
|
+
return $dara.cast<ModifyApisecLogDeliveryResponse>(await this.callApi(params, req, runtime), new ModifyApisecLogDeliveryResponse({}));
|
|
48535
|
+
} else {
|
|
48536
|
+
return $dara.cast<ModifyApisecLogDeliveryResponse>(await this.execute(params, req, runtime), new ModifyApisecLogDeliveryResponse({}));
|
|
48537
|
+
}
|
|
48538
|
+
|
|
47697
48539
|
}
|
|
47698
48540
|
|
|
47699
48541
|
/**
|
|
@@ -47751,7 +48593,12 @@ export default class Client extends OpenApi {
|
|
|
47751
48593
|
reqBodyType: "formData",
|
|
47752
48594
|
bodyType: "json",
|
|
47753
48595
|
});
|
|
47754
|
-
|
|
48596
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48597
|
+
return $dara.cast<ModifyApisecLogDeliveryStatusResponse>(await this.callApi(params, req, runtime), new ModifyApisecLogDeliveryStatusResponse({}));
|
|
48598
|
+
} else {
|
|
48599
|
+
return $dara.cast<ModifyApisecLogDeliveryStatusResponse>(await this.execute(params, req, runtime), new ModifyApisecLogDeliveryStatusResponse({}));
|
|
48600
|
+
}
|
|
48601
|
+
|
|
47755
48602
|
}
|
|
47756
48603
|
|
|
47757
48604
|
/**
|
|
@@ -47817,7 +48664,12 @@ export default class Client extends OpenApi {
|
|
|
47817
48664
|
reqBodyType: "formData",
|
|
47818
48665
|
bodyType: "json",
|
|
47819
48666
|
});
|
|
47820
|
-
|
|
48667
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48668
|
+
return $dara.cast<ModifyApisecModuleStatusResponse>(await this.callApi(params, req, runtime), new ModifyApisecModuleStatusResponse({}));
|
|
48669
|
+
} else {
|
|
48670
|
+
return $dara.cast<ModifyApisecModuleStatusResponse>(await this.execute(params, req, runtime), new ModifyApisecModuleStatusResponse({}));
|
|
48671
|
+
}
|
|
48672
|
+
|
|
47821
48673
|
}
|
|
47822
48674
|
|
|
47823
48675
|
/**
|
|
@@ -47879,7 +48731,12 @@ export default class Client extends OpenApi {
|
|
|
47879
48731
|
reqBodyType: "formData",
|
|
47880
48732
|
bodyType: "json",
|
|
47881
48733
|
});
|
|
47882
|
-
|
|
48734
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48735
|
+
return $dara.cast<ModifyApisecStatusResponse>(await this.callApi(params, req, runtime), new ModifyApisecStatusResponse({}));
|
|
48736
|
+
} else {
|
|
48737
|
+
return $dara.cast<ModifyApisecStatusResponse>(await this.execute(params, req, runtime), new ModifyApisecStatusResponse({}));
|
|
48738
|
+
}
|
|
48739
|
+
|
|
47883
48740
|
}
|
|
47884
48741
|
|
|
47885
48742
|
/**
|
|
@@ -47947,7 +48804,12 @@ export default class Client extends OpenApi {
|
|
|
47947
48804
|
reqBodyType: "formData",
|
|
47948
48805
|
bodyType: "json",
|
|
47949
48806
|
});
|
|
47950
|
-
|
|
48807
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48808
|
+
return $dara.cast<ModifyCloudResourceResponse>(await this.callApi(params, req, runtime), new ModifyCloudResourceResponse({}));
|
|
48809
|
+
} else {
|
|
48810
|
+
return $dara.cast<ModifyCloudResourceResponse>(await this.execute(params, req, runtime), new ModifyCloudResourceResponse({}));
|
|
48811
|
+
}
|
|
48812
|
+
|
|
47951
48813
|
}
|
|
47952
48814
|
|
|
47953
48815
|
/**
|
|
@@ -48017,7 +48879,12 @@ export default class Client extends OpenApi {
|
|
|
48017
48879
|
reqBodyType: "formData",
|
|
48018
48880
|
bodyType: "json",
|
|
48019
48881
|
});
|
|
48020
|
-
|
|
48882
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48883
|
+
return $dara.cast<ModifyDefaultHttpsResponse>(await this.callApi(params, req, runtime), new ModifyDefaultHttpsResponse({}));
|
|
48884
|
+
} else {
|
|
48885
|
+
return $dara.cast<ModifyDefaultHttpsResponse>(await this.execute(params, req, runtime), new ModifyDefaultHttpsResponse({}));
|
|
48886
|
+
}
|
|
48887
|
+
|
|
48021
48888
|
}
|
|
48022
48889
|
|
|
48023
48890
|
/**
|
|
@@ -48083,7 +48950,12 @@ export default class Client extends OpenApi {
|
|
|
48083
48950
|
reqBodyType: "formData",
|
|
48084
48951
|
bodyType: "json",
|
|
48085
48952
|
});
|
|
48086
|
-
|
|
48953
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
48954
|
+
return $dara.cast<ModifyDefenseResourceGroupResponse>(await this.callApi(params, req, runtime), new ModifyDefenseResourceGroupResponse({}));
|
|
48955
|
+
} else {
|
|
48956
|
+
return $dara.cast<ModifyDefenseResourceGroupResponse>(await this.execute(params, req, runtime), new ModifyDefenseResourceGroupResponse({}));
|
|
48957
|
+
}
|
|
48958
|
+
|
|
48087
48959
|
}
|
|
48088
48960
|
|
|
48089
48961
|
/**
|
|
@@ -48139,6 +49011,10 @@ export default class Client extends OpenApi {
|
|
|
48139
49011
|
query["ResourceManagerResourceGroupId"] = request.resourceManagerResourceGroupId;
|
|
48140
49012
|
}
|
|
48141
49013
|
|
|
49014
|
+
if (!$dara.isNull(request.responseHeaders)) {
|
|
49015
|
+
query["ResponseHeaders"] = request.responseHeaders;
|
|
49016
|
+
}
|
|
49017
|
+
|
|
48142
49018
|
if (!$dara.isNull(request.xffStatus)) {
|
|
48143
49019
|
query["XffStatus"] = request.xffStatus;
|
|
48144
49020
|
}
|
|
@@ -48157,7 +49033,12 @@ export default class Client extends OpenApi {
|
|
|
48157
49033
|
reqBodyType: "formData",
|
|
48158
49034
|
bodyType: "json",
|
|
48159
49035
|
});
|
|
48160
|
-
|
|
49036
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49037
|
+
return $dara.cast<ModifyDefenseResourceXffResponse>(await this.callApi(params, req, runtime), new ModifyDefenseResourceXffResponse({}));
|
|
49038
|
+
} else {
|
|
49039
|
+
return $dara.cast<ModifyDefenseResourceXffResponse>(await this.execute(params, req, runtime), new ModifyDefenseResourceXffResponse({}));
|
|
49040
|
+
}
|
|
49041
|
+
|
|
48161
49042
|
}
|
|
48162
49043
|
|
|
48163
49044
|
/**
|
|
@@ -48221,7 +49102,12 @@ export default class Client extends OpenApi {
|
|
|
48221
49102
|
reqBodyType: "formData",
|
|
48222
49103
|
bodyType: "json",
|
|
48223
49104
|
});
|
|
48224
|
-
|
|
49105
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49106
|
+
return $dara.cast<ModifyDefenseRuleResponse>(await this.callApi(params, req, runtime), new ModifyDefenseRuleResponse({}));
|
|
49107
|
+
} else {
|
|
49108
|
+
return $dara.cast<ModifyDefenseRuleResponse>(await this.execute(params, req, runtime), new ModifyDefenseRuleResponse({}));
|
|
49109
|
+
}
|
|
49110
|
+
|
|
48225
49111
|
}
|
|
48226
49112
|
|
|
48227
49113
|
/**
|
|
@@ -48279,7 +49165,12 @@ export default class Client extends OpenApi {
|
|
|
48279
49165
|
reqBodyType: "formData",
|
|
48280
49166
|
bodyType: "json",
|
|
48281
49167
|
});
|
|
48282
|
-
|
|
49168
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49169
|
+
return $dara.cast<ModifyDefenseRuleCacheResponse>(await this.callApi(params, req, runtime), new ModifyDefenseRuleCacheResponse({}));
|
|
49170
|
+
} else {
|
|
49171
|
+
return $dara.cast<ModifyDefenseRuleCacheResponse>(await this.execute(params, req, runtime), new ModifyDefenseRuleCacheResponse({}));
|
|
49172
|
+
}
|
|
49173
|
+
|
|
48283
49174
|
}
|
|
48284
49175
|
|
|
48285
49176
|
/**
|
|
@@ -48341,7 +49232,12 @@ export default class Client extends OpenApi {
|
|
|
48341
49232
|
reqBodyType: "formData",
|
|
48342
49233
|
bodyType: "json",
|
|
48343
49234
|
});
|
|
48344
|
-
|
|
49235
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49236
|
+
return $dara.cast<ModifyDefenseRuleStatusResponse>(await this.callApi(params, req, runtime), new ModifyDefenseRuleStatusResponse({}));
|
|
49237
|
+
} else {
|
|
49238
|
+
return $dara.cast<ModifyDefenseRuleStatusResponse>(await this.execute(params, req, runtime), new ModifyDefenseRuleStatusResponse({}));
|
|
49239
|
+
}
|
|
49240
|
+
|
|
48345
49241
|
}
|
|
48346
49242
|
|
|
48347
49243
|
/**
|
|
@@ -48403,7 +49299,12 @@ export default class Client extends OpenApi {
|
|
|
48403
49299
|
reqBodyType: "formData",
|
|
48404
49300
|
bodyType: "json",
|
|
48405
49301
|
});
|
|
48406
|
-
|
|
49302
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49303
|
+
return $dara.cast<ModifyDefenseTemplateResponse>(await this.callApi(params, req, runtime), new ModifyDefenseTemplateResponse({}));
|
|
49304
|
+
} else {
|
|
49305
|
+
return $dara.cast<ModifyDefenseTemplateResponse>(await this.execute(params, req, runtime), new ModifyDefenseTemplateResponse({}));
|
|
49306
|
+
}
|
|
49307
|
+
|
|
48407
49308
|
}
|
|
48408
49309
|
|
|
48409
49310
|
/**
|
|
@@ -48461,7 +49362,12 @@ export default class Client extends OpenApi {
|
|
|
48461
49362
|
reqBodyType: "formData",
|
|
48462
49363
|
bodyType: "json",
|
|
48463
49364
|
});
|
|
48464
|
-
|
|
49365
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49366
|
+
return $dara.cast<ModifyDefenseTemplateStatusResponse>(await this.callApi(params, req, runtime), new ModifyDefenseTemplateStatusResponse({}));
|
|
49367
|
+
} else {
|
|
49368
|
+
return $dara.cast<ModifyDefenseTemplateStatusResponse>(await this.execute(params, req, runtime), new ModifyDefenseTemplateStatusResponse({}));
|
|
49369
|
+
}
|
|
49370
|
+
|
|
48465
49371
|
}
|
|
48466
49372
|
|
|
48467
49373
|
/**
|
|
@@ -48533,7 +49439,12 @@ export default class Client extends OpenApi {
|
|
|
48533
49439
|
reqBodyType: "formData",
|
|
48534
49440
|
bodyType: "json",
|
|
48535
49441
|
});
|
|
48536
|
-
|
|
49442
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49443
|
+
return $dara.cast<ModifyDomainResponse>(await this.callApi(params, req, runtime), new ModifyDomainResponse({}));
|
|
49444
|
+
} else {
|
|
49445
|
+
return $dara.cast<ModifyDomainResponse>(await this.execute(params, req, runtime), new ModifyDomainResponse({}));
|
|
49446
|
+
}
|
|
49447
|
+
|
|
48537
49448
|
}
|
|
48538
49449
|
|
|
48539
49450
|
/**
|
|
@@ -48587,7 +49498,12 @@ export default class Client extends OpenApi {
|
|
|
48587
49498
|
reqBodyType: "formData",
|
|
48588
49499
|
bodyType: "json",
|
|
48589
49500
|
});
|
|
48590
|
-
|
|
49501
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49502
|
+
return $dara.cast<ModifyDomainPunishStatusResponse>(await this.callApi(params, req, runtime), new ModifyDomainPunishStatusResponse({}));
|
|
49503
|
+
} else {
|
|
49504
|
+
return $dara.cast<ModifyDomainPunishStatusResponse>(await this.execute(params, req, runtime), new ModifyDomainPunishStatusResponse({}));
|
|
49505
|
+
}
|
|
49506
|
+
|
|
48591
49507
|
}
|
|
48592
49508
|
|
|
48593
49509
|
/**
|
|
@@ -48645,7 +49561,12 @@ export default class Client extends OpenApi {
|
|
|
48645
49561
|
reqBodyType: "formData",
|
|
48646
49562
|
bodyType: "json",
|
|
48647
49563
|
});
|
|
48648
|
-
|
|
49564
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49565
|
+
return $dara.cast<ModifyHybridCloudClusterBypassStatusResponse>(await this.callApi(params, req, runtime), new ModifyHybridCloudClusterBypassStatusResponse({}));
|
|
49566
|
+
} else {
|
|
49567
|
+
return $dara.cast<ModifyHybridCloudClusterBypassStatusResponse>(await this.execute(params, req, runtime), new ModifyHybridCloudClusterBypassStatusResponse({}));
|
|
49568
|
+
}
|
|
49569
|
+
|
|
48649
49570
|
}
|
|
48650
49571
|
|
|
48651
49572
|
/**
|
|
@@ -48711,7 +49632,12 @@ export default class Client extends OpenApi {
|
|
|
48711
49632
|
reqBodyType: "formData",
|
|
48712
49633
|
bodyType: "json",
|
|
48713
49634
|
});
|
|
48714
|
-
|
|
49635
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49636
|
+
return $dara.cast<ModifyHybridCloudClusterRuleResponse>(await this.callApi(params, req, runtime), new ModifyHybridCloudClusterRuleResponse({}));
|
|
49637
|
+
} else {
|
|
49638
|
+
return $dara.cast<ModifyHybridCloudClusterRuleResponse>(await this.execute(params, req, runtime), new ModifyHybridCloudClusterRuleResponse({}));
|
|
49639
|
+
}
|
|
49640
|
+
|
|
48715
49641
|
}
|
|
48716
49642
|
|
|
48717
49643
|
/**
|
|
@@ -48777,7 +49703,12 @@ export default class Client extends OpenApi {
|
|
|
48777
49703
|
reqBodyType: "formData",
|
|
48778
49704
|
bodyType: "json",
|
|
48779
49705
|
});
|
|
48780
|
-
|
|
49706
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49707
|
+
return $dara.cast<ModifyHybridCloudGroupResponse>(await this.callApi(params, req, runtime), new ModifyHybridCloudGroupResponse({}));
|
|
49708
|
+
} else {
|
|
49709
|
+
return $dara.cast<ModifyHybridCloudGroupResponse>(await this.execute(params, req, runtime), new ModifyHybridCloudGroupResponse({}));
|
|
49710
|
+
}
|
|
49711
|
+
|
|
48781
49712
|
}
|
|
48782
49713
|
|
|
48783
49714
|
/**
|
|
@@ -48839,7 +49770,12 @@ export default class Client extends OpenApi {
|
|
|
48839
49770
|
reqBodyType: "formData",
|
|
48840
49771
|
bodyType: "json",
|
|
48841
49772
|
});
|
|
48842
|
-
|
|
49773
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49774
|
+
return $dara.cast<ModifyHybridCloudGroupExpansionServerResponse>(await this.callApi(params, req, runtime), new ModifyHybridCloudGroupExpansionServerResponse({}));
|
|
49775
|
+
} else {
|
|
49776
|
+
return $dara.cast<ModifyHybridCloudGroupExpansionServerResponse>(await this.execute(params, req, runtime), new ModifyHybridCloudGroupExpansionServerResponse({}));
|
|
49777
|
+
}
|
|
49778
|
+
|
|
48843
49779
|
}
|
|
48844
49780
|
|
|
48845
49781
|
/**
|
|
@@ -48901,7 +49837,12 @@ export default class Client extends OpenApi {
|
|
|
48901
49837
|
reqBodyType: "formData",
|
|
48902
49838
|
bodyType: "json",
|
|
48903
49839
|
});
|
|
48904
|
-
|
|
49840
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49841
|
+
return $dara.cast<ModifyHybridCloudGroupShrinkServerResponse>(await this.callApi(params, req, runtime), new ModifyHybridCloudGroupShrinkServerResponse({}));
|
|
49842
|
+
} else {
|
|
49843
|
+
return $dara.cast<ModifyHybridCloudGroupShrinkServerResponse>(await this.execute(params, req, runtime), new ModifyHybridCloudGroupShrinkServerResponse({}));
|
|
49844
|
+
}
|
|
49845
|
+
|
|
48905
49846
|
}
|
|
48906
49847
|
|
|
48907
49848
|
/**
|
|
@@ -48951,7 +49892,12 @@ export default class Client extends OpenApi {
|
|
|
48951
49892
|
reqBodyType: "formData",
|
|
48952
49893
|
bodyType: "json",
|
|
48953
49894
|
});
|
|
48954
|
-
|
|
49895
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49896
|
+
return $dara.cast<ModifyHybridCloudSdkPullinStatusResponse>(await this.callApi(params, req, runtime), new ModifyHybridCloudSdkPullinStatusResponse({}));
|
|
49897
|
+
} else {
|
|
49898
|
+
return $dara.cast<ModifyHybridCloudSdkPullinStatusResponse>(await this.execute(params, req, runtime), new ModifyHybridCloudSdkPullinStatusResponse({}));
|
|
49899
|
+
}
|
|
49900
|
+
|
|
48955
49901
|
}
|
|
48956
49902
|
|
|
48957
49903
|
/**
|
|
@@ -49021,7 +49967,12 @@ export default class Client extends OpenApi {
|
|
|
49021
49967
|
reqBodyType: "formData",
|
|
49022
49968
|
bodyType: "json",
|
|
49023
49969
|
});
|
|
49024
|
-
|
|
49970
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
49971
|
+
return $dara.cast<ModifyHybridCloudServerResponse>(await this.callApi(params, req, runtime), new ModifyHybridCloudServerResponse({}));
|
|
49972
|
+
} else {
|
|
49973
|
+
return $dara.cast<ModifyHybridCloudServerResponse>(await this.execute(params, req, runtime), new ModifyHybridCloudServerResponse({}));
|
|
49974
|
+
}
|
|
49975
|
+
|
|
49025
49976
|
}
|
|
49026
49977
|
|
|
49027
49978
|
/**
|
|
@@ -49091,7 +50042,12 @@ export default class Client extends OpenApi {
|
|
|
49091
50042
|
reqBodyType: "formData",
|
|
49092
50043
|
bodyType: "json",
|
|
49093
50044
|
});
|
|
49094
|
-
|
|
50045
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
50046
|
+
return $dara.cast<ModifyMajorProtectionBlackIpResponse>(await this.callApi(params, req, runtime), new ModifyMajorProtectionBlackIpResponse({}));
|
|
50047
|
+
} else {
|
|
50048
|
+
return $dara.cast<ModifyMajorProtectionBlackIpResponse>(await this.execute(params, req, runtime), new ModifyMajorProtectionBlackIpResponse({}));
|
|
50049
|
+
}
|
|
50050
|
+
|
|
49095
50051
|
}
|
|
49096
50052
|
|
|
49097
50053
|
/**
|
|
@@ -49153,7 +50109,12 @@ export default class Client extends OpenApi {
|
|
|
49153
50109
|
reqBodyType: "formData",
|
|
49154
50110
|
bodyType: "json",
|
|
49155
50111
|
});
|
|
49156
|
-
|
|
50112
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
50113
|
+
return $dara.cast<ModifyMemberAccountResponse>(await this.callApi(params, req, runtime), new ModifyMemberAccountResponse({}));
|
|
50114
|
+
} else {
|
|
50115
|
+
return $dara.cast<ModifyMemberAccountResponse>(await this.execute(params, req, runtime), new ModifyMemberAccountResponse({}));
|
|
50116
|
+
}
|
|
50117
|
+
|
|
49157
50118
|
}
|
|
49158
50119
|
|
|
49159
50120
|
/**
|
|
@@ -49207,7 +50168,12 @@ export default class Client extends OpenApi {
|
|
|
49207
50168
|
reqBodyType: "formData",
|
|
49208
50169
|
bodyType: "json",
|
|
49209
50170
|
});
|
|
49210
|
-
|
|
50171
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
50172
|
+
return $dara.cast<ModifyPauseProtectionStatusResponse>(await this.callApi(params, req, runtime), new ModifyPauseProtectionStatusResponse({}));
|
|
50173
|
+
} else {
|
|
50174
|
+
return $dara.cast<ModifyPauseProtectionStatusResponse>(await this.execute(params, req, runtime), new ModifyPauseProtectionStatusResponse({}));
|
|
50175
|
+
}
|
|
50176
|
+
|
|
49211
50177
|
}
|
|
49212
50178
|
|
|
49213
50179
|
/**
|
|
@@ -49265,7 +50231,12 @@ export default class Client extends OpenApi {
|
|
|
49265
50231
|
reqBodyType: "formData",
|
|
49266
50232
|
bodyType: "json",
|
|
49267
50233
|
});
|
|
49268
|
-
|
|
50234
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
50235
|
+
return $dara.cast<ModifyResourceLogStatusResponse>(await this.callApi(params, req, runtime), new ModifyResourceLogStatusResponse({}));
|
|
50236
|
+
} else {
|
|
50237
|
+
return $dara.cast<ModifyResourceLogStatusResponse>(await this.execute(params, req, runtime), new ModifyResourceLogStatusResponse({}));
|
|
50238
|
+
}
|
|
50239
|
+
|
|
49269
50240
|
}
|
|
49270
50241
|
|
|
49271
50242
|
/**
|
|
@@ -49335,7 +50306,12 @@ export default class Client extends OpenApi {
|
|
|
49335
50306
|
reqBodyType: "formData",
|
|
49336
50307
|
bodyType: "json",
|
|
49337
50308
|
});
|
|
49338
|
-
|
|
50309
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
50310
|
+
return $dara.cast<ModifyTemplateResourcesResponse>(await this.callApi(params, req, runtime), new ModifyTemplateResourcesResponse({}));
|
|
50311
|
+
} else {
|
|
50312
|
+
return $dara.cast<ModifyTemplateResourcesResponse>(await this.execute(params, req, runtime), new ModifyTemplateResourcesResponse({}));
|
|
50313
|
+
}
|
|
50314
|
+
|
|
49339
50315
|
}
|
|
49340
50316
|
|
|
49341
50317
|
/**
|
|
@@ -49385,7 +50361,12 @@ export default class Client extends OpenApi {
|
|
|
49385
50361
|
reqBodyType: "formData",
|
|
49386
50362
|
bodyType: "json",
|
|
49387
50363
|
});
|
|
49388
|
-
|
|
50364
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
50365
|
+
return $dara.cast<ReleaseInstanceResponse>(await this.callApi(params, req, runtime), new ReleaseInstanceResponse({}));
|
|
50366
|
+
} else {
|
|
50367
|
+
return $dara.cast<ReleaseInstanceResponse>(await this.execute(params, req, runtime), new ReleaseInstanceResponse({}));
|
|
50368
|
+
}
|
|
50369
|
+
|
|
49389
50370
|
}
|
|
49390
50371
|
|
|
49391
50372
|
/**
|
|
@@ -49438,7 +50419,12 @@ export default class Client extends OpenApi {
|
|
|
49438
50419
|
reqBodyType: "formData",
|
|
49439
50420
|
bodyType: "json",
|
|
49440
50421
|
});
|
|
49441
|
-
|
|
50422
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
50423
|
+
return $dara.cast<SyncProductInstanceResponse>(await this.callApi(params, req, runtime), new SyncProductInstanceResponse({}));
|
|
50424
|
+
} else {
|
|
50425
|
+
return $dara.cast<SyncProductInstanceResponse>(await this.execute(params, req, runtime), new SyncProductInstanceResponse({}));
|
|
50426
|
+
}
|
|
50427
|
+
|
|
49442
50428
|
}
|
|
49443
50429
|
|
|
49444
50430
|
/**
|
|
@@ -49495,7 +50481,12 @@ export default class Client extends OpenApi {
|
|
|
49495
50481
|
reqBodyType: "formData",
|
|
49496
50482
|
bodyType: "json",
|
|
49497
50483
|
});
|
|
49498
|
-
|
|
50484
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
50485
|
+
return $dara.cast<TagResourcesResponse>(await this.callApi(params, req, runtime), new TagResourcesResponse({}));
|
|
50486
|
+
} else {
|
|
50487
|
+
return $dara.cast<TagResourcesResponse>(await this.execute(params, req, runtime), new TagResourcesResponse({}));
|
|
50488
|
+
}
|
|
50489
|
+
|
|
49499
50490
|
}
|
|
49500
50491
|
|
|
49501
50492
|
/**
|
|
@@ -49553,7 +50544,12 @@ export default class Client extends OpenApi {
|
|
|
49553
50544
|
reqBodyType: "formData",
|
|
49554
50545
|
bodyType: "json",
|
|
49555
50546
|
});
|
|
49556
|
-
|
|
50547
|
+
if ($dara.isNull(this._signatureVersion) || this._signatureVersion != "v4") {
|
|
50548
|
+
return $dara.cast<UntagResourcesResponse>(await this.callApi(params, req, runtime), new UntagResourcesResponse({}));
|
|
50549
|
+
} else {
|
|
50550
|
+
return $dara.cast<UntagResourcesResponse>(await this.execute(params, req, runtime), new UntagResourcesResponse({}));
|
|
50551
|
+
}
|
|
50552
|
+
|
|
49557
50553
|
}
|
|
49558
50554
|
|
|
49559
50555
|
/**
|