@alicloud/ga20191120 1.0.8 → 1.0.11
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/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +253 -1
- package/dist/client.js +517 -1
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +703 -2
package/src/client.ts
CHANGED
|
@@ -63,10 +63,12 @@ export class AddEntriesToAclResponseBody extends $tea.Model {
|
|
|
63
63
|
|
|
64
64
|
export class AddEntriesToAclResponse extends $tea.Model {
|
|
65
65
|
headers: { [key: string]: string };
|
|
66
|
+
statusCode: number;
|
|
66
67
|
body: AddEntriesToAclResponseBody;
|
|
67
68
|
static names(): { [key: string]: string } {
|
|
68
69
|
return {
|
|
69
70
|
headers: 'headers',
|
|
71
|
+
statusCode: 'statusCode',
|
|
70
72
|
body: 'body',
|
|
71
73
|
};
|
|
72
74
|
}
|
|
@@ -74,6 +76,7 @@ export class AddEntriesToAclResponse extends $tea.Model {
|
|
|
74
76
|
static types(): { [key: string]: any } {
|
|
75
77
|
return {
|
|
76
78
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
79
|
+
statusCode: 'number',
|
|
77
80
|
body: AddEntriesToAclResponseBody,
|
|
78
81
|
};
|
|
79
82
|
}
|
|
@@ -144,10 +147,12 @@ export class AssociateAclsWithListenerResponseBody extends $tea.Model {
|
|
|
144
147
|
|
|
145
148
|
export class AssociateAclsWithListenerResponse extends $tea.Model {
|
|
146
149
|
headers: { [key: string]: string };
|
|
150
|
+
statusCode: number;
|
|
147
151
|
body: AssociateAclsWithListenerResponseBody;
|
|
148
152
|
static names(): { [key: string]: string } {
|
|
149
153
|
return {
|
|
150
154
|
headers: 'headers',
|
|
155
|
+
statusCode: 'statusCode',
|
|
151
156
|
body: 'body',
|
|
152
157
|
};
|
|
153
158
|
}
|
|
@@ -155,6 +160,7 @@ export class AssociateAclsWithListenerResponse extends $tea.Model {
|
|
|
155
160
|
static types(): { [key: string]: any } {
|
|
156
161
|
return {
|
|
157
162
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
163
|
+
statusCode: 'number',
|
|
158
164
|
body: AssociateAclsWithListenerResponseBody,
|
|
159
165
|
};
|
|
160
166
|
}
|
|
@@ -219,10 +225,12 @@ export class AssociateAdditionalCertificatesWithListenerResponseBody extends $te
|
|
|
219
225
|
|
|
220
226
|
export class AssociateAdditionalCertificatesWithListenerResponse extends $tea.Model {
|
|
221
227
|
headers: { [key: string]: string };
|
|
228
|
+
statusCode: number;
|
|
222
229
|
body: AssociateAdditionalCertificatesWithListenerResponseBody;
|
|
223
230
|
static names(): { [key: string]: string } {
|
|
224
231
|
return {
|
|
225
232
|
headers: 'headers',
|
|
233
|
+
statusCode: 'statusCode',
|
|
226
234
|
body: 'body',
|
|
227
235
|
};
|
|
228
236
|
}
|
|
@@ -230,6 +238,7 @@ export class AssociateAdditionalCertificatesWithListenerResponse extends $tea.Mo
|
|
|
230
238
|
static types(): { [key: string]: any } {
|
|
231
239
|
return {
|
|
232
240
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
241
|
+
statusCode: 'number',
|
|
233
242
|
body: AssociateAdditionalCertificatesWithListenerResponseBody,
|
|
234
243
|
};
|
|
235
244
|
}
|
|
@@ -294,10 +303,12 @@ export class AttachDdosToAcceleratorResponseBody extends $tea.Model {
|
|
|
294
303
|
|
|
295
304
|
export class AttachDdosToAcceleratorResponse extends $tea.Model {
|
|
296
305
|
headers: { [key: string]: string };
|
|
306
|
+
statusCode: number;
|
|
297
307
|
body: AttachDdosToAcceleratorResponseBody;
|
|
298
308
|
static names(): { [key: string]: string } {
|
|
299
309
|
return {
|
|
300
310
|
headers: 'headers',
|
|
311
|
+
statusCode: 'statusCode',
|
|
301
312
|
body: 'body',
|
|
302
313
|
};
|
|
303
314
|
}
|
|
@@ -305,6 +316,7 @@ export class AttachDdosToAcceleratorResponse extends $tea.Model {
|
|
|
305
316
|
static types(): { [key: string]: any } {
|
|
306
317
|
return {
|
|
307
318
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
319
|
+
statusCode: 'number',
|
|
308
320
|
body: AttachDdosToAcceleratorResponseBody,
|
|
309
321
|
};
|
|
310
322
|
}
|
|
@@ -375,10 +387,12 @@ export class AttachLogStoreToEndpointGroupResponseBody extends $tea.Model {
|
|
|
375
387
|
|
|
376
388
|
export class AttachLogStoreToEndpointGroupResponse extends $tea.Model {
|
|
377
389
|
headers: { [key: string]: string };
|
|
390
|
+
statusCode: number;
|
|
378
391
|
body: AttachLogStoreToEndpointGroupResponseBody;
|
|
379
392
|
static names(): { [key: string]: string } {
|
|
380
393
|
return {
|
|
381
394
|
headers: 'headers',
|
|
395
|
+
statusCode: 'statusCode',
|
|
382
396
|
body: 'body',
|
|
383
397
|
};
|
|
384
398
|
}
|
|
@@ -386,6 +400,7 @@ export class AttachLogStoreToEndpointGroupResponse extends $tea.Model {
|
|
|
386
400
|
static types(): { [key: string]: any } {
|
|
387
401
|
return {
|
|
388
402
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
403
|
+
statusCode: 'number',
|
|
389
404
|
body: AttachLogStoreToEndpointGroupResponseBody,
|
|
390
405
|
};
|
|
391
406
|
}
|
|
@@ -447,10 +462,12 @@ export class BandwidthPackageAddAcceleratorResponseBody extends $tea.Model {
|
|
|
447
462
|
|
|
448
463
|
export class BandwidthPackageAddAcceleratorResponse extends $tea.Model {
|
|
449
464
|
headers: { [key: string]: string };
|
|
465
|
+
statusCode: number;
|
|
450
466
|
body: BandwidthPackageAddAcceleratorResponseBody;
|
|
451
467
|
static names(): { [key: string]: string } {
|
|
452
468
|
return {
|
|
453
469
|
headers: 'headers',
|
|
470
|
+
statusCode: 'statusCode',
|
|
454
471
|
body: 'body',
|
|
455
472
|
};
|
|
456
473
|
}
|
|
@@ -458,6 +475,7 @@ export class BandwidthPackageAddAcceleratorResponse extends $tea.Model {
|
|
|
458
475
|
static types(): { [key: string]: any } {
|
|
459
476
|
return {
|
|
460
477
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
478
|
+
statusCode: 'number',
|
|
461
479
|
body: BandwidthPackageAddAcceleratorResponseBody,
|
|
462
480
|
};
|
|
463
481
|
}
|
|
@@ -519,10 +537,12 @@ export class BandwidthPackageRemoveAcceleratorResponseBody extends $tea.Model {
|
|
|
519
537
|
|
|
520
538
|
export class BandwidthPackageRemoveAcceleratorResponse extends $tea.Model {
|
|
521
539
|
headers: { [key: string]: string };
|
|
540
|
+
statusCode: number;
|
|
522
541
|
body: BandwidthPackageRemoveAcceleratorResponseBody;
|
|
523
542
|
static names(): { [key: string]: string } {
|
|
524
543
|
return {
|
|
525
544
|
headers: 'headers',
|
|
545
|
+
statusCode: 'statusCode',
|
|
526
546
|
body: 'body',
|
|
527
547
|
};
|
|
528
548
|
}
|
|
@@ -530,6 +550,7 @@ export class BandwidthPackageRemoveAcceleratorResponse extends $tea.Model {
|
|
|
530
550
|
static types(): { [key: string]: any } {
|
|
531
551
|
return {
|
|
532
552
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
553
|
+
statusCode: 'number',
|
|
533
554
|
body: BandwidthPackageRemoveAcceleratorResponseBody,
|
|
534
555
|
};
|
|
535
556
|
}
|
|
@@ -600,10 +621,12 @@ export class ConfigEndpointProbeResponseBody extends $tea.Model {
|
|
|
600
621
|
|
|
601
622
|
export class ConfigEndpointProbeResponse extends $tea.Model {
|
|
602
623
|
headers: { [key: string]: string };
|
|
624
|
+
statusCode: number;
|
|
603
625
|
body: ConfigEndpointProbeResponseBody;
|
|
604
626
|
static names(): { [key: string]: string } {
|
|
605
627
|
return {
|
|
606
628
|
headers: 'headers',
|
|
629
|
+
statusCode: 'statusCode',
|
|
607
630
|
body: 'body',
|
|
608
631
|
};
|
|
609
632
|
}
|
|
@@ -611,6 +634,7 @@ export class ConfigEndpointProbeResponse extends $tea.Model {
|
|
|
611
634
|
static types(): { [key: string]: any } {
|
|
612
635
|
return {
|
|
613
636
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
637
|
+
statusCode: 'number',
|
|
614
638
|
body: ConfigEndpointProbeResponseBody,
|
|
615
639
|
};
|
|
616
640
|
}
|
|
@@ -627,6 +651,7 @@ export class CreateAcceleratorRequest extends $tea.Model {
|
|
|
627
651
|
autoUseCoupon?: string;
|
|
628
652
|
clientToken?: string;
|
|
629
653
|
duration?: number;
|
|
654
|
+
ipSetConfig?: CreateAcceleratorRequestIpSetConfig;
|
|
630
655
|
name?: string;
|
|
631
656
|
pricingCycle?: string;
|
|
632
657
|
regionId?: string;
|
|
@@ -639,6 +664,7 @@ export class CreateAcceleratorRequest extends $tea.Model {
|
|
|
639
664
|
autoUseCoupon: 'AutoUseCoupon',
|
|
640
665
|
clientToken: 'ClientToken',
|
|
641
666
|
duration: 'Duration',
|
|
667
|
+
ipSetConfig: 'IpSetConfig',
|
|
642
668
|
name: 'Name',
|
|
643
669
|
pricingCycle: 'PricingCycle',
|
|
644
670
|
regionId: 'RegionId',
|
|
@@ -654,6 +680,7 @@ export class CreateAcceleratorRequest extends $tea.Model {
|
|
|
654
680
|
autoUseCoupon: 'string',
|
|
655
681
|
clientToken: 'string',
|
|
656
682
|
duration: 'number',
|
|
683
|
+
ipSetConfig: CreateAcceleratorRequestIpSetConfig,
|
|
657
684
|
name: 'string',
|
|
658
685
|
pricingCycle: 'string',
|
|
659
686
|
regionId: 'string',
|
|
@@ -693,10 +720,12 @@ export class CreateAcceleratorResponseBody extends $tea.Model {
|
|
|
693
720
|
|
|
694
721
|
export class CreateAcceleratorResponse extends $tea.Model {
|
|
695
722
|
headers: { [key: string]: string };
|
|
723
|
+
statusCode: number;
|
|
696
724
|
body: CreateAcceleratorResponseBody;
|
|
697
725
|
static names(): { [key: string]: string } {
|
|
698
726
|
return {
|
|
699
727
|
headers: 'headers',
|
|
728
|
+
statusCode: 'statusCode',
|
|
700
729
|
body: 'body',
|
|
701
730
|
};
|
|
702
731
|
}
|
|
@@ -704,6 +733,7 @@ export class CreateAcceleratorResponse extends $tea.Model {
|
|
|
704
733
|
static types(): { [key: string]: any } {
|
|
705
734
|
return {
|
|
706
735
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
736
|
+
statusCode: 'number',
|
|
707
737
|
body: CreateAcceleratorResponseBody,
|
|
708
738
|
};
|
|
709
739
|
}
|
|
@@ -771,10 +801,12 @@ export class CreateAclResponseBody extends $tea.Model {
|
|
|
771
801
|
|
|
772
802
|
export class CreateAclResponse extends $tea.Model {
|
|
773
803
|
headers: { [key: string]: string };
|
|
804
|
+
statusCode: number;
|
|
774
805
|
body: CreateAclResponseBody;
|
|
775
806
|
static names(): { [key: string]: string } {
|
|
776
807
|
return {
|
|
777
808
|
headers: 'headers',
|
|
809
|
+
statusCode: 'statusCode',
|
|
778
810
|
body: 'body',
|
|
779
811
|
};
|
|
780
812
|
}
|
|
@@ -782,6 +814,7 @@ export class CreateAclResponse extends $tea.Model {
|
|
|
782
814
|
static types(): { [key: string]: any } {
|
|
783
815
|
return {
|
|
784
816
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
817
|
+
statusCode: 'number',
|
|
785
818
|
body: CreateAclResponseBody,
|
|
786
819
|
};
|
|
787
820
|
}
|
|
@@ -795,20 +828,26 @@ export class CreateApplicationMonitorRequest extends $tea.Model {
|
|
|
795
828
|
acceleratorId?: string;
|
|
796
829
|
address?: string;
|
|
797
830
|
clientToken?: string;
|
|
831
|
+
detectEnable?: boolean;
|
|
798
832
|
detectThreshold?: number;
|
|
833
|
+
detectTimes?: number;
|
|
799
834
|
listenerId?: string;
|
|
800
835
|
optionsJson?: string;
|
|
801
836
|
regionId?: string;
|
|
837
|
+
silenceTime?: number;
|
|
802
838
|
taskName?: string;
|
|
803
839
|
static names(): { [key: string]: string } {
|
|
804
840
|
return {
|
|
805
841
|
acceleratorId: 'AcceleratorId',
|
|
806
842
|
address: 'Address',
|
|
807
843
|
clientToken: 'ClientToken',
|
|
844
|
+
detectEnable: 'DetectEnable',
|
|
808
845
|
detectThreshold: 'DetectThreshold',
|
|
846
|
+
detectTimes: 'DetectTimes',
|
|
809
847
|
listenerId: 'ListenerId',
|
|
810
848
|
optionsJson: 'OptionsJson',
|
|
811
849
|
regionId: 'RegionId',
|
|
850
|
+
silenceTime: 'SilenceTime',
|
|
812
851
|
taskName: 'TaskName',
|
|
813
852
|
};
|
|
814
853
|
}
|
|
@@ -818,10 +857,13 @@ export class CreateApplicationMonitorRequest extends $tea.Model {
|
|
|
818
857
|
acceleratorId: 'string',
|
|
819
858
|
address: 'string',
|
|
820
859
|
clientToken: 'string',
|
|
860
|
+
detectEnable: 'boolean',
|
|
821
861
|
detectThreshold: 'number',
|
|
862
|
+
detectTimes: 'number',
|
|
822
863
|
listenerId: 'string',
|
|
823
864
|
optionsJson: 'string',
|
|
824
865
|
regionId: 'string',
|
|
866
|
+
silenceTime: 'number',
|
|
825
867
|
taskName: 'string',
|
|
826
868
|
};
|
|
827
869
|
}
|
|
@@ -855,10 +897,12 @@ export class CreateApplicationMonitorResponseBody extends $tea.Model {
|
|
|
855
897
|
|
|
856
898
|
export class CreateApplicationMonitorResponse extends $tea.Model {
|
|
857
899
|
headers: { [key: string]: string };
|
|
900
|
+
statusCode: number;
|
|
858
901
|
body: CreateApplicationMonitorResponseBody;
|
|
859
902
|
static names(): { [key: string]: string } {
|
|
860
903
|
return {
|
|
861
904
|
headers: 'headers',
|
|
905
|
+
statusCode: 'statusCode',
|
|
862
906
|
body: 'body',
|
|
863
907
|
};
|
|
864
908
|
}
|
|
@@ -866,6 +910,7 @@ export class CreateApplicationMonitorResponse extends $tea.Model {
|
|
|
866
910
|
static types(): { [key: string]: any } {
|
|
867
911
|
return {
|
|
868
912
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
913
|
+
statusCode: 'number',
|
|
869
914
|
body: CreateApplicationMonitorResponseBody,
|
|
870
915
|
};
|
|
871
916
|
}
|
|
@@ -877,6 +922,8 @@ export class CreateApplicationMonitorResponse extends $tea.Model {
|
|
|
877
922
|
|
|
878
923
|
export class CreateBandwidthPackageRequest extends $tea.Model {
|
|
879
924
|
autoPay?: boolean;
|
|
925
|
+
autoRenew?: boolean;
|
|
926
|
+
autoRenewDuration?: number;
|
|
880
927
|
autoUseCoupon?: string;
|
|
881
928
|
bandwidth?: number;
|
|
882
929
|
bandwidthType?: string;
|
|
@@ -893,6 +940,8 @@ export class CreateBandwidthPackageRequest extends $tea.Model {
|
|
|
893
940
|
static names(): { [key: string]: string } {
|
|
894
941
|
return {
|
|
895
942
|
autoPay: 'AutoPay',
|
|
943
|
+
autoRenew: 'AutoRenew',
|
|
944
|
+
autoRenewDuration: 'AutoRenewDuration',
|
|
896
945
|
autoUseCoupon: 'AutoUseCoupon',
|
|
897
946
|
bandwidth: 'Bandwidth',
|
|
898
947
|
bandwidthType: 'BandwidthType',
|
|
@@ -912,6 +961,8 @@ export class CreateBandwidthPackageRequest extends $tea.Model {
|
|
|
912
961
|
static types(): { [key: string]: any } {
|
|
913
962
|
return {
|
|
914
963
|
autoPay: 'boolean',
|
|
964
|
+
autoRenew: 'boolean',
|
|
965
|
+
autoRenewDuration: 'number',
|
|
915
966
|
autoUseCoupon: 'string',
|
|
916
967
|
bandwidth: 'number',
|
|
917
968
|
bandwidthType: 'string',
|
|
@@ -960,10 +1011,12 @@ export class CreateBandwidthPackageResponseBody extends $tea.Model {
|
|
|
960
1011
|
|
|
961
1012
|
export class CreateBandwidthPackageResponse extends $tea.Model {
|
|
962
1013
|
headers: { [key: string]: string };
|
|
1014
|
+
statusCode: number;
|
|
963
1015
|
body: CreateBandwidthPackageResponseBody;
|
|
964
1016
|
static names(): { [key: string]: string } {
|
|
965
1017
|
return {
|
|
966
1018
|
headers: 'headers',
|
|
1019
|
+
statusCode: 'statusCode',
|
|
967
1020
|
body: 'body',
|
|
968
1021
|
};
|
|
969
1022
|
}
|
|
@@ -971,6 +1024,7 @@ export class CreateBandwidthPackageResponse extends $tea.Model {
|
|
|
971
1024
|
static types(): { [key: string]: any } {
|
|
972
1025
|
return {
|
|
973
1026
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1027
|
+
statusCode: 'number',
|
|
974
1028
|
body: CreateBandwidthPackageResponseBody,
|
|
975
1029
|
};
|
|
976
1030
|
}
|
|
@@ -1047,10 +1101,12 @@ export class CreateBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
1047
1101
|
|
|
1048
1102
|
export class CreateBasicAcceleratorResponse extends $tea.Model {
|
|
1049
1103
|
headers: { [key: string]: string };
|
|
1104
|
+
statusCode: number;
|
|
1050
1105
|
body: CreateBasicAcceleratorResponseBody;
|
|
1051
1106
|
static names(): { [key: string]: string } {
|
|
1052
1107
|
return {
|
|
1053
1108
|
headers: 'headers',
|
|
1109
|
+
statusCode: 'statusCode',
|
|
1054
1110
|
body: 'body',
|
|
1055
1111
|
};
|
|
1056
1112
|
}
|
|
@@ -1058,6 +1114,7 @@ export class CreateBasicAcceleratorResponse extends $tea.Model {
|
|
|
1058
1114
|
static types(): { [key: string]: any } {
|
|
1059
1115
|
return {
|
|
1060
1116
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1117
|
+
statusCode: 'number',
|
|
1061
1118
|
body: CreateBasicAcceleratorResponseBody,
|
|
1062
1119
|
};
|
|
1063
1120
|
}
|
|
@@ -1131,10 +1188,12 @@ export class CreateBasicEndpointGroupResponseBody extends $tea.Model {
|
|
|
1131
1188
|
|
|
1132
1189
|
export class CreateBasicEndpointGroupResponse extends $tea.Model {
|
|
1133
1190
|
headers: { [key: string]: string };
|
|
1191
|
+
statusCode: number;
|
|
1134
1192
|
body: CreateBasicEndpointGroupResponseBody;
|
|
1135
1193
|
static names(): { [key: string]: string } {
|
|
1136
1194
|
return {
|
|
1137
1195
|
headers: 'headers',
|
|
1196
|
+
statusCode: 'statusCode',
|
|
1138
1197
|
body: 'body',
|
|
1139
1198
|
};
|
|
1140
1199
|
}
|
|
@@ -1142,6 +1201,7 @@ export class CreateBasicEndpointGroupResponse extends $tea.Model {
|
|
|
1142
1201
|
static types(): { [key: string]: any } {
|
|
1143
1202
|
return {
|
|
1144
1203
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1204
|
+
statusCode: 'number',
|
|
1145
1205
|
body: CreateBasicEndpointGroupResponseBody,
|
|
1146
1206
|
};
|
|
1147
1207
|
}
|
|
@@ -1203,10 +1263,12 @@ export class CreateBasicIpSetResponseBody extends $tea.Model {
|
|
|
1203
1263
|
|
|
1204
1264
|
export class CreateBasicIpSetResponse extends $tea.Model {
|
|
1205
1265
|
headers: { [key: string]: string };
|
|
1266
|
+
statusCode: number;
|
|
1206
1267
|
body: CreateBasicIpSetResponseBody;
|
|
1207
1268
|
static names(): { [key: string]: string } {
|
|
1208
1269
|
return {
|
|
1209
1270
|
headers: 'headers',
|
|
1271
|
+
statusCode: 'statusCode',
|
|
1210
1272
|
body: 'body',
|
|
1211
1273
|
};
|
|
1212
1274
|
}
|
|
@@ -1214,6 +1276,7 @@ export class CreateBasicIpSetResponse extends $tea.Model {
|
|
|
1214
1276
|
static types(): { [key: string]: any } {
|
|
1215
1277
|
return {
|
|
1216
1278
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1279
|
+
statusCode: 'number',
|
|
1217
1280
|
body: CreateBasicIpSetResponseBody,
|
|
1218
1281
|
};
|
|
1219
1282
|
}
|
|
@@ -1317,10 +1380,12 @@ export class CreateEndpointGroupResponseBody extends $tea.Model {
|
|
|
1317
1380
|
|
|
1318
1381
|
export class CreateEndpointGroupResponse extends $tea.Model {
|
|
1319
1382
|
headers: { [key: string]: string };
|
|
1383
|
+
statusCode: number;
|
|
1320
1384
|
body: CreateEndpointGroupResponseBody;
|
|
1321
1385
|
static names(): { [key: string]: string } {
|
|
1322
1386
|
return {
|
|
1323
1387
|
headers: 'headers',
|
|
1388
|
+
statusCode: 'statusCode',
|
|
1324
1389
|
body: 'body',
|
|
1325
1390
|
};
|
|
1326
1391
|
}
|
|
@@ -1328,6 +1393,7 @@ export class CreateEndpointGroupResponse extends $tea.Model {
|
|
|
1328
1393
|
static types(): { [key: string]: any } {
|
|
1329
1394
|
return {
|
|
1330
1395
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1396
|
+
statusCode: 'number',
|
|
1331
1397
|
body: CreateEndpointGroupResponseBody,
|
|
1332
1398
|
};
|
|
1333
1399
|
}
|
|
@@ -1395,10 +1461,12 @@ export class CreateEndpointGroupsResponseBody extends $tea.Model {
|
|
|
1395
1461
|
|
|
1396
1462
|
export class CreateEndpointGroupsResponse extends $tea.Model {
|
|
1397
1463
|
headers: { [key: string]: string };
|
|
1464
|
+
statusCode: number;
|
|
1398
1465
|
body: CreateEndpointGroupsResponseBody;
|
|
1399
1466
|
static names(): { [key: string]: string } {
|
|
1400
1467
|
return {
|
|
1401
1468
|
headers: 'headers',
|
|
1469
|
+
statusCode: 'statusCode',
|
|
1402
1470
|
body: 'body',
|
|
1403
1471
|
};
|
|
1404
1472
|
}
|
|
@@ -1406,6 +1474,7 @@ export class CreateEndpointGroupsResponse extends $tea.Model {
|
|
|
1406
1474
|
static types(): { [key: string]: any } {
|
|
1407
1475
|
return {
|
|
1408
1476
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1477
|
+
statusCode: 'number',
|
|
1409
1478
|
body: CreateEndpointGroupsResponseBody,
|
|
1410
1479
|
};
|
|
1411
1480
|
}
|
|
@@ -1470,10 +1539,12 @@ export class CreateForwardingRulesResponseBody extends $tea.Model {
|
|
|
1470
1539
|
|
|
1471
1540
|
export class CreateForwardingRulesResponse extends $tea.Model {
|
|
1472
1541
|
headers: { [key: string]: string };
|
|
1542
|
+
statusCode: number;
|
|
1473
1543
|
body: CreateForwardingRulesResponseBody;
|
|
1474
1544
|
static names(): { [key: string]: string } {
|
|
1475
1545
|
return {
|
|
1476
1546
|
headers: 'headers',
|
|
1547
|
+
statusCode: 'statusCode',
|
|
1477
1548
|
body: 'body',
|
|
1478
1549
|
};
|
|
1479
1550
|
}
|
|
@@ -1481,6 +1552,7 @@ export class CreateForwardingRulesResponse extends $tea.Model {
|
|
|
1481
1552
|
static types(): { [key: string]: any } {
|
|
1482
1553
|
return {
|
|
1483
1554
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1555
|
+
statusCode: 'number',
|
|
1484
1556
|
body: CreateForwardingRulesResponseBody,
|
|
1485
1557
|
};
|
|
1486
1558
|
}
|
|
@@ -1545,10 +1617,12 @@ export class CreateIpSetsResponseBody extends $tea.Model {
|
|
|
1545
1617
|
|
|
1546
1618
|
export class CreateIpSetsResponse extends $tea.Model {
|
|
1547
1619
|
headers: { [key: string]: string };
|
|
1620
|
+
statusCode: number;
|
|
1548
1621
|
body: CreateIpSetsResponseBody;
|
|
1549
1622
|
static names(): { [key: string]: string } {
|
|
1550
1623
|
return {
|
|
1551
1624
|
headers: 'headers',
|
|
1625
|
+
statusCode: 'statusCode',
|
|
1552
1626
|
body: 'body',
|
|
1553
1627
|
};
|
|
1554
1628
|
}
|
|
@@ -1556,6 +1630,7 @@ export class CreateIpSetsResponse extends $tea.Model {
|
|
|
1556
1630
|
static types(): { [key: string]: any } {
|
|
1557
1631
|
return {
|
|
1558
1632
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1633
|
+
statusCode: 'number',
|
|
1559
1634
|
body: CreateIpSetsResponseBody,
|
|
1560
1635
|
};
|
|
1561
1636
|
}
|
|
@@ -1641,10 +1716,12 @@ export class CreateListenerResponseBody extends $tea.Model {
|
|
|
1641
1716
|
|
|
1642
1717
|
export class CreateListenerResponse extends $tea.Model {
|
|
1643
1718
|
headers: { [key: string]: string };
|
|
1719
|
+
statusCode: number;
|
|
1644
1720
|
body: CreateListenerResponseBody;
|
|
1645
1721
|
static names(): { [key: string]: string } {
|
|
1646
1722
|
return {
|
|
1647
1723
|
headers: 'headers',
|
|
1724
|
+
statusCode: 'statusCode',
|
|
1648
1725
|
body: 'body',
|
|
1649
1726
|
};
|
|
1650
1727
|
}
|
|
@@ -1652,6 +1729,7 @@ export class CreateListenerResponse extends $tea.Model {
|
|
|
1652
1729
|
static types(): { [key: string]: any } {
|
|
1653
1730
|
return {
|
|
1654
1731
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1732
|
+
statusCode: 'number',
|
|
1655
1733
|
body: CreateListenerResponseBody,
|
|
1656
1734
|
};
|
|
1657
1735
|
}
|
|
@@ -1713,10 +1791,12 @@ export class CreateSpareIpsResponseBody extends $tea.Model {
|
|
|
1713
1791
|
|
|
1714
1792
|
export class CreateSpareIpsResponse extends $tea.Model {
|
|
1715
1793
|
headers: { [key: string]: string };
|
|
1794
|
+
statusCode: number;
|
|
1716
1795
|
body: CreateSpareIpsResponseBody;
|
|
1717
1796
|
static names(): { [key: string]: string } {
|
|
1718
1797
|
return {
|
|
1719
1798
|
headers: 'headers',
|
|
1799
|
+
statusCode: 'statusCode',
|
|
1720
1800
|
body: 'body',
|
|
1721
1801
|
};
|
|
1722
1802
|
}
|
|
@@ -1724,6 +1804,7 @@ export class CreateSpareIpsResponse extends $tea.Model {
|
|
|
1724
1804
|
static types(): { [key: string]: any } {
|
|
1725
1805
|
return {
|
|
1726
1806
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1807
|
+
statusCode: 'number',
|
|
1727
1808
|
body: CreateSpareIpsResponseBody,
|
|
1728
1809
|
};
|
|
1729
1810
|
}
|
|
@@ -1779,10 +1860,12 @@ export class DeleteAcceleratorResponseBody extends $tea.Model {
|
|
|
1779
1860
|
|
|
1780
1861
|
export class DeleteAcceleratorResponse extends $tea.Model {
|
|
1781
1862
|
headers: { [key: string]: string };
|
|
1863
|
+
statusCode: number;
|
|
1782
1864
|
body: DeleteAcceleratorResponseBody;
|
|
1783
1865
|
static names(): { [key: string]: string } {
|
|
1784
1866
|
return {
|
|
1785
1867
|
headers: 'headers',
|
|
1868
|
+
statusCode: 'statusCode',
|
|
1786
1869
|
body: 'body',
|
|
1787
1870
|
};
|
|
1788
1871
|
}
|
|
@@ -1790,6 +1873,7 @@ export class DeleteAcceleratorResponse extends $tea.Model {
|
|
|
1790
1873
|
static types(): { [key: string]: any } {
|
|
1791
1874
|
return {
|
|
1792
1875
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1876
|
+
statusCode: 'number',
|
|
1793
1877
|
body: DeleteAcceleratorResponseBody,
|
|
1794
1878
|
};
|
|
1795
1879
|
}
|
|
@@ -1851,10 +1935,12 @@ export class DeleteAclResponseBody extends $tea.Model {
|
|
|
1851
1935
|
|
|
1852
1936
|
export class DeleteAclResponse extends $tea.Model {
|
|
1853
1937
|
headers: { [key: string]: string };
|
|
1938
|
+
statusCode: number;
|
|
1854
1939
|
body: DeleteAclResponseBody;
|
|
1855
1940
|
static names(): { [key: string]: string } {
|
|
1856
1941
|
return {
|
|
1857
1942
|
headers: 'headers',
|
|
1943
|
+
statusCode: 'statusCode',
|
|
1858
1944
|
body: 'body',
|
|
1859
1945
|
};
|
|
1860
1946
|
}
|
|
@@ -1862,6 +1948,7 @@ export class DeleteAclResponse extends $tea.Model {
|
|
|
1862
1948
|
static types(): { [key: string]: any } {
|
|
1863
1949
|
return {
|
|
1864
1950
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1951
|
+
statusCode: 'number',
|
|
1865
1952
|
body: DeleteAclResponseBody,
|
|
1866
1953
|
};
|
|
1867
1954
|
}
|
|
@@ -1917,10 +2004,12 @@ export class DeleteApplicationMonitorResponseBody extends $tea.Model {
|
|
|
1917
2004
|
|
|
1918
2005
|
export class DeleteApplicationMonitorResponse extends $tea.Model {
|
|
1919
2006
|
headers: { [key: string]: string };
|
|
2007
|
+
statusCode: number;
|
|
1920
2008
|
body: DeleteApplicationMonitorResponseBody;
|
|
1921
2009
|
static names(): { [key: string]: string } {
|
|
1922
2010
|
return {
|
|
1923
2011
|
headers: 'headers',
|
|
2012
|
+
statusCode: 'statusCode',
|
|
1924
2013
|
body: 'body',
|
|
1925
2014
|
};
|
|
1926
2015
|
}
|
|
@@ -1928,6 +2017,7 @@ export class DeleteApplicationMonitorResponse extends $tea.Model {
|
|
|
1928
2017
|
static types(): { [key: string]: any } {
|
|
1929
2018
|
return {
|
|
1930
2019
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2020
|
+
statusCode: 'number',
|
|
1931
2021
|
body: DeleteApplicationMonitorResponseBody,
|
|
1932
2022
|
};
|
|
1933
2023
|
}
|
|
@@ -1986,10 +2076,12 @@ export class DeleteBandwidthPackageResponseBody extends $tea.Model {
|
|
|
1986
2076
|
|
|
1987
2077
|
export class DeleteBandwidthPackageResponse extends $tea.Model {
|
|
1988
2078
|
headers: { [key: string]: string };
|
|
2079
|
+
statusCode: number;
|
|
1989
2080
|
body: DeleteBandwidthPackageResponseBody;
|
|
1990
2081
|
static names(): { [key: string]: string } {
|
|
1991
2082
|
return {
|
|
1992
2083
|
headers: 'headers',
|
|
2084
|
+
statusCode: 'statusCode',
|
|
1993
2085
|
body: 'body',
|
|
1994
2086
|
};
|
|
1995
2087
|
}
|
|
@@ -1997,6 +2089,7 @@ export class DeleteBandwidthPackageResponse extends $tea.Model {
|
|
|
1997
2089
|
static types(): { [key: string]: any } {
|
|
1998
2090
|
return {
|
|
1999
2091
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2092
|
+
statusCode: 'number',
|
|
2000
2093
|
body: DeleteBandwidthPackageResponseBody,
|
|
2001
2094
|
};
|
|
2002
2095
|
}
|
|
@@ -2052,10 +2145,12 @@ export class DeleteBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
2052
2145
|
|
|
2053
2146
|
export class DeleteBasicAcceleratorResponse extends $tea.Model {
|
|
2054
2147
|
headers: { [key: string]: string };
|
|
2148
|
+
statusCode: number;
|
|
2055
2149
|
body: DeleteBasicAcceleratorResponseBody;
|
|
2056
2150
|
static names(): { [key: string]: string } {
|
|
2057
2151
|
return {
|
|
2058
2152
|
headers: 'headers',
|
|
2153
|
+
statusCode: 'statusCode',
|
|
2059
2154
|
body: 'body',
|
|
2060
2155
|
};
|
|
2061
2156
|
}
|
|
@@ -2063,6 +2158,7 @@ export class DeleteBasicAcceleratorResponse extends $tea.Model {
|
|
|
2063
2158
|
static types(): { [key: string]: any } {
|
|
2064
2159
|
return {
|
|
2065
2160
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2161
|
+
statusCode: 'number',
|
|
2066
2162
|
body: DeleteBasicAcceleratorResponseBody,
|
|
2067
2163
|
};
|
|
2068
2164
|
}
|
|
@@ -2115,10 +2211,12 @@ export class DeleteBasicEndpointGroupResponseBody extends $tea.Model {
|
|
|
2115
2211
|
|
|
2116
2212
|
export class DeleteBasicEndpointGroupResponse extends $tea.Model {
|
|
2117
2213
|
headers: { [key: string]: string };
|
|
2214
|
+
statusCode: number;
|
|
2118
2215
|
body: DeleteBasicEndpointGroupResponseBody;
|
|
2119
2216
|
static names(): { [key: string]: string } {
|
|
2120
2217
|
return {
|
|
2121
2218
|
headers: 'headers',
|
|
2219
|
+
statusCode: 'statusCode',
|
|
2122
2220
|
body: 'body',
|
|
2123
2221
|
};
|
|
2124
2222
|
}
|
|
@@ -2126,6 +2224,7 @@ export class DeleteBasicEndpointGroupResponse extends $tea.Model {
|
|
|
2126
2224
|
static types(): { [key: string]: any } {
|
|
2127
2225
|
return {
|
|
2128
2226
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2227
|
+
statusCode: 'number',
|
|
2129
2228
|
body: DeleteBasicEndpointGroupResponseBody,
|
|
2130
2229
|
};
|
|
2131
2230
|
}
|
|
@@ -2181,10 +2280,12 @@ export class DeleteBasicIpSetResponseBody extends $tea.Model {
|
|
|
2181
2280
|
|
|
2182
2281
|
export class DeleteBasicIpSetResponse extends $tea.Model {
|
|
2183
2282
|
headers: { [key: string]: string };
|
|
2283
|
+
statusCode: number;
|
|
2184
2284
|
body: DeleteBasicIpSetResponseBody;
|
|
2185
2285
|
static names(): { [key: string]: string } {
|
|
2186
2286
|
return {
|
|
2187
2287
|
headers: 'headers',
|
|
2288
|
+
statusCode: 'statusCode',
|
|
2188
2289
|
body: 'body',
|
|
2189
2290
|
};
|
|
2190
2291
|
}
|
|
@@ -2192,6 +2293,7 @@ export class DeleteBasicIpSetResponse extends $tea.Model {
|
|
|
2192
2293
|
static types(): { [key: string]: any } {
|
|
2193
2294
|
return {
|
|
2194
2295
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2296
|
+
statusCode: 'number',
|
|
2195
2297
|
body: DeleteBasicIpSetResponseBody,
|
|
2196
2298
|
};
|
|
2197
2299
|
}
|
|
@@ -2247,10 +2349,12 @@ export class DeleteEndpointGroupResponseBody extends $tea.Model {
|
|
|
2247
2349
|
|
|
2248
2350
|
export class DeleteEndpointGroupResponse extends $tea.Model {
|
|
2249
2351
|
headers: { [key: string]: string };
|
|
2352
|
+
statusCode: number;
|
|
2250
2353
|
body: DeleteEndpointGroupResponseBody;
|
|
2251
2354
|
static names(): { [key: string]: string } {
|
|
2252
2355
|
return {
|
|
2253
2356
|
headers: 'headers',
|
|
2357
|
+
statusCode: 'statusCode',
|
|
2254
2358
|
body: 'body',
|
|
2255
2359
|
};
|
|
2256
2360
|
}
|
|
@@ -2258,6 +2362,7 @@ export class DeleteEndpointGroupResponse extends $tea.Model {
|
|
|
2258
2362
|
static types(): { [key: string]: any } {
|
|
2259
2363
|
return {
|
|
2260
2364
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2365
|
+
statusCode: 'number',
|
|
2261
2366
|
body: DeleteEndpointGroupResponseBody,
|
|
2262
2367
|
};
|
|
2263
2368
|
}
|
|
@@ -2316,10 +2421,12 @@ export class DeleteEndpointGroupsResponseBody extends $tea.Model {
|
|
|
2316
2421
|
|
|
2317
2422
|
export class DeleteEndpointGroupsResponse extends $tea.Model {
|
|
2318
2423
|
headers: { [key: string]: string };
|
|
2424
|
+
statusCode: number;
|
|
2319
2425
|
body: DeleteEndpointGroupsResponseBody;
|
|
2320
2426
|
static names(): { [key: string]: string } {
|
|
2321
2427
|
return {
|
|
2322
2428
|
headers: 'headers',
|
|
2429
|
+
statusCode: 'statusCode',
|
|
2323
2430
|
body: 'body',
|
|
2324
2431
|
};
|
|
2325
2432
|
}
|
|
@@ -2327,6 +2434,7 @@ export class DeleteEndpointGroupsResponse extends $tea.Model {
|
|
|
2327
2434
|
static types(): { [key: string]: any } {
|
|
2328
2435
|
return {
|
|
2329
2436
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2437
|
+
statusCode: 'number',
|
|
2330
2438
|
body: DeleteEndpointGroupsResponseBody,
|
|
2331
2439
|
};
|
|
2332
2440
|
}
|
|
@@ -2391,10 +2499,12 @@ export class DeleteForwardingRulesResponseBody extends $tea.Model {
|
|
|
2391
2499
|
|
|
2392
2500
|
export class DeleteForwardingRulesResponse extends $tea.Model {
|
|
2393
2501
|
headers: { [key: string]: string };
|
|
2502
|
+
statusCode: number;
|
|
2394
2503
|
body: DeleteForwardingRulesResponseBody;
|
|
2395
2504
|
static names(): { [key: string]: string } {
|
|
2396
2505
|
return {
|
|
2397
2506
|
headers: 'headers',
|
|
2507
|
+
statusCode: 'statusCode',
|
|
2398
2508
|
body: 'body',
|
|
2399
2509
|
};
|
|
2400
2510
|
}
|
|
@@ -2402,6 +2512,7 @@ export class DeleteForwardingRulesResponse extends $tea.Model {
|
|
|
2402
2512
|
static types(): { [key: string]: any } {
|
|
2403
2513
|
return {
|
|
2404
2514
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2515
|
+
statusCode: 'number',
|
|
2405
2516
|
body: DeleteForwardingRulesResponseBody,
|
|
2406
2517
|
};
|
|
2407
2518
|
}
|
|
@@ -2460,10 +2571,12 @@ export class DeleteIpSetResponseBody extends $tea.Model {
|
|
|
2460
2571
|
|
|
2461
2572
|
export class DeleteIpSetResponse extends $tea.Model {
|
|
2462
2573
|
headers: { [key: string]: string };
|
|
2574
|
+
statusCode: number;
|
|
2463
2575
|
body: DeleteIpSetResponseBody;
|
|
2464
2576
|
static names(): { [key: string]: string } {
|
|
2465
2577
|
return {
|
|
2466
2578
|
headers: 'headers',
|
|
2579
|
+
statusCode: 'statusCode',
|
|
2467
2580
|
body: 'body',
|
|
2468
2581
|
};
|
|
2469
2582
|
}
|
|
@@ -2471,6 +2584,7 @@ export class DeleteIpSetResponse extends $tea.Model {
|
|
|
2471
2584
|
static types(): { [key: string]: any } {
|
|
2472
2585
|
return {
|
|
2473
2586
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2587
|
+
statusCode: 'number',
|
|
2474
2588
|
body: DeleteIpSetResponseBody,
|
|
2475
2589
|
};
|
|
2476
2590
|
}
|
|
@@ -2523,10 +2637,12 @@ export class DeleteIpSetsResponseBody extends $tea.Model {
|
|
|
2523
2637
|
|
|
2524
2638
|
export class DeleteIpSetsResponse extends $tea.Model {
|
|
2525
2639
|
headers: { [key: string]: string };
|
|
2640
|
+
statusCode: number;
|
|
2526
2641
|
body: DeleteIpSetsResponseBody;
|
|
2527
2642
|
static names(): { [key: string]: string } {
|
|
2528
2643
|
return {
|
|
2529
2644
|
headers: 'headers',
|
|
2645
|
+
statusCode: 'statusCode',
|
|
2530
2646
|
body: 'body',
|
|
2531
2647
|
};
|
|
2532
2648
|
}
|
|
@@ -2534,6 +2650,7 @@ export class DeleteIpSetsResponse extends $tea.Model {
|
|
|
2534
2650
|
static types(): { [key: string]: any } {
|
|
2535
2651
|
return {
|
|
2536
2652
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2653
|
+
statusCode: 'number',
|
|
2537
2654
|
body: DeleteIpSetsResponseBody,
|
|
2538
2655
|
};
|
|
2539
2656
|
}
|
|
@@ -2589,10 +2706,12 @@ export class DeleteListenerResponseBody extends $tea.Model {
|
|
|
2589
2706
|
|
|
2590
2707
|
export class DeleteListenerResponse extends $tea.Model {
|
|
2591
2708
|
headers: { [key: string]: string };
|
|
2709
|
+
statusCode: number;
|
|
2592
2710
|
body: DeleteListenerResponseBody;
|
|
2593
2711
|
static names(): { [key: string]: string } {
|
|
2594
2712
|
return {
|
|
2595
2713
|
headers: 'headers',
|
|
2714
|
+
statusCode: 'statusCode',
|
|
2596
2715
|
body: 'body',
|
|
2597
2716
|
};
|
|
2598
2717
|
}
|
|
@@ -2600,6 +2719,7 @@ export class DeleteListenerResponse extends $tea.Model {
|
|
|
2600
2719
|
static types(): { [key: string]: any } {
|
|
2601
2720
|
return {
|
|
2602
2721
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2722
|
+
statusCode: 'number',
|
|
2603
2723
|
body: DeleteListenerResponseBody,
|
|
2604
2724
|
};
|
|
2605
2725
|
}
|
|
@@ -2661,10 +2781,12 @@ export class DeleteSpareIpsResponseBody extends $tea.Model {
|
|
|
2661
2781
|
|
|
2662
2782
|
export class DeleteSpareIpsResponse extends $tea.Model {
|
|
2663
2783
|
headers: { [key: string]: string };
|
|
2784
|
+
statusCode: number;
|
|
2664
2785
|
body: DeleteSpareIpsResponseBody;
|
|
2665
2786
|
static names(): { [key: string]: string } {
|
|
2666
2787
|
return {
|
|
2667
2788
|
headers: 'headers',
|
|
2789
|
+
statusCode: 'statusCode',
|
|
2668
2790
|
body: 'body',
|
|
2669
2791
|
};
|
|
2670
2792
|
}
|
|
@@ -2672,6 +2794,7 @@ export class DeleteSpareIpsResponse extends $tea.Model {
|
|
|
2672
2794
|
static types(): { [key: string]: any } {
|
|
2673
2795
|
return {
|
|
2674
2796
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2797
|
+
statusCode: 'number',
|
|
2675
2798
|
body: DeleteSpareIpsResponseBody,
|
|
2676
2799
|
};
|
|
2677
2800
|
}
|
|
@@ -2714,6 +2837,7 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
2714
2837
|
dnsName?: string;
|
|
2715
2838
|
expiredTime?: number;
|
|
2716
2839
|
instanceChargeType?: string;
|
|
2840
|
+
ipSetConfig?: DescribeAcceleratorResponseBodyIpSetConfig;
|
|
2717
2841
|
name?: string;
|
|
2718
2842
|
regionId?: string;
|
|
2719
2843
|
requestId?: string;
|
|
@@ -2732,6 +2856,7 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
2732
2856
|
dnsName: 'DnsName',
|
|
2733
2857
|
expiredTime: 'ExpiredTime',
|
|
2734
2858
|
instanceChargeType: 'InstanceChargeType',
|
|
2859
|
+
ipSetConfig: 'IpSetConfig',
|
|
2735
2860
|
name: 'Name',
|
|
2736
2861
|
regionId: 'RegionId',
|
|
2737
2862
|
requestId: 'RequestId',
|
|
@@ -2753,6 +2878,7 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
2753
2878
|
dnsName: 'string',
|
|
2754
2879
|
expiredTime: 'number',
|
|
2755
2880
|
instanceChargeType: 'string',
|
|
2881
|
+
ipSetConfig: DescribeAcceleratorResponseBodyIpSetConfig,
|
|
2756
2882
|
name: 'string',
|
|
2757
2883
|
regionId: 'string',
|
|
2758
2884
|
requestId: 'string',
|
|
@@ -2769,10 +2895,12 @@ export class DescribeAcceleratorResponseBody extends $tea.Model {
|
|
|
2769
2895
|
|
|
2770
2896
|
export class DescribeAcceleratorResponse extends $tea.Model {
|
|
2771
2897
|
headers: { [key: string]: string };
|
|
2898
|
+
statusCode: number;
|
|
2772
2899
|
body: DescribeAcceleratorResponseBody;
|
|
2773
2900
|
static names(): { [key: string]: string } {
|
|
2774
2901
|
return {
|
|
2775
2902
|
headers: 'headers',
|
|
2903
|
+
statusCode: 'statusCode',
|
|
2776
2904
|
body: 'body',
|
|
2777
2905
|
};
|
|
2778
2906
|
}
|
|
@@ -2780,6 +2908,7 @@ export class DescribeAcceleratorResponse extends $tea.Model {
|
|
|
2780
2908
|
static types(): { [key: string]: any } {
|
|
2781
2909
|
return {
|
|
2782
2910
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2911
|
+
statusCode: 'number',
|
|
2783
2912
|
body: DescribeAcceleratorResponseBody,
|
|
2784
2913
|
};
|
|
2785
2914
|
}
|
|
@@ -2844,10 +2973,12 @@ export class DescribeAcceleratorAutoRenewAttributeResponseBody extends $tea.Mode
|
|
|
2844
2973
|
|
|
2845
2974
|
export class DescribeAcceleratorAutoRenewAttributeResponse extends $tea.Model {
|
|
2846
2975
|
headers: { [key: string]: string };
|
|
2976
|
+
statusCode: number;
|
|
2847
2977
|
body: DescribeAcceleratorAutoRenewAttributeResponseBody;
|
|
2848
2978
|
static names(): { [key: string]: string } {
|
|
2849
2979
|
return {
|
|
2850
2980
|
headers: 'headers',
|
|
2981
|
+
statusCode: 'statusCode',
|
|
2851
2982
|
body: 'body',
|
|
2852
2983
|
};
|
|
2853
2984
|
}
|
|
@@ -2855,6 +2986,7 @@ export class DescribeAcceleratorAutoRenewAttributeResponse extends $tea.Model {
|
|
|
2855
2986
|
static types(): { [key: string]: any } {
|
|
2856
2987
|
return {
|
|
2857
2988
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2989
|
+
statusCode: 'number',
|
|
2858
2990
|
body: DescribeAcceleratorAutoRenewAttributeResponseBody,
|
|
2859
2991
|
};
|
|
2860
2992
|
}
|
|
@@ -2892,24 +3024,30 @@ export class DescribeApplicationMonitorRequest extends $tea.Model {
|
|
|
2892
3024
|
export class DescribeApplicationMonitorResponseBody extends $tea.Model {
|
|
2893
3025
|
acceleratorId?: string;
|
|
2894
3026
|
address?: string;
|
|
2895
|
-
|
|
3027
|
+
detectEnable?: boolean;
|
|
3028
|
+
detectThreshold?: number;
|
|
3029
|
+
detectTimes?: number;
|
|
2896
3030
|
ispCityList?: DescribeApplicationMonitorResponseBodyIspCityList[];
|
|
2897
3031
|
listenerId?: string;
|
|
2898
3032
|
optionsJson?: string;
|
|
2899
3033
|
regionId?: string;
|
|
2900
3034
|
requestId?: string;
|
|
3035
|
+
silenceTime?: number;
|
|
2901
3036
|
taskId?: string;
|
|
2902
3037
|
taskName?: string;
|
|
2903
3038
|
static names(): { [key: string]: string } {
|
|
2904
3039
|
return {
|
|
2905
3040
|
acceleratorId: 'AcceleratorId',
|
|
2906
3041
|
address: 'Address',
|
|
3042
|
+
detectEnable: 'DetectEnable',
|
|
2907
3043
|
detectThreshold: 'DetectThreshold',
|
|
3044
|
+
detectTimes: 'DetectTimes',
|
|
2908
3045
|
ispCityList: 'IspCityList',
|
|
2909
3046
|
listenerId: 'ListenerId',
|
|
2910
3047
|
optionsJson: 'OptionsJson',
|
|
2911
3048
|
regionId: 'RegionId',
|
|
2912
3049
|
requestId: 'RequestId',
|
|
3050
|
+
silenceTime: 'SilenceTime',
|
|
2913
3051
|
taskId: 'TaskId',
|
|
2914
3052
|
taskName: 'TaskName',
|
|
2915
3053
|
};
|
|
@@ -2919,12 +3057,15 @@ export class DescribeApplicationMonitorResponseBody extends $tea.Model {
|
|
|
2919
3057
|
return {
|
|
2920
3058
|
acceleratorId: 'string',
|
|
2921
3059
|
address: 'string',
|
|
2922
|
-
|
|
3060
|
+
detectEnable: 'boolean',
|
|
3061
|
+
detectThreshold: 'number',
|
|
3062
|
+
detectTimes: 'number',
|
|
2923
3063
|
ispCityList: { 'type': 'array', 'itemType': DescribeApplicationMonitorResponseBodyIspCityList },
|
|
2924
3064
|
listenerId: 'string',
|
|
2925
3065
|
optionsJson: 'string',
|
|
2926
3066
|
regionId: 'string',
|
|
2927
3067
|
requestId: 'string',
|
|
3068
|
+
silenceTime: 'number',
|
|
2928
3069
|
taskId: 'string',
|
|
2929
3070
|
taskName: 'string',
|
|
2930
3071
|
};
|
|
@@ -2937,10 +3078,12 @@ export class DescribeApplicationMonitorResponseBody extends $tea.Model {
|
|
|
2937
3078
|
|
|
2938
3079
|
export class DescribeApplicationMonitorResponse extends $tea.Model {
|
|
2939
3080
|
headers: { [key: string]: string };
|
|
3081
|
+
statusCode: number;
|
|
2940
3082
|
body: DescribeApplicationMonitorResponseBody;
|
|
2941
3083
|
static names(): { [key: string]: string } {
|
|
2942
3084
|
return {
|
|
2943
3085
|
headers: 'headers',
|
|
3086
|
+
statusCode: 'statusCode',
|
|
2944
3087
|
body: 'body',
|
|
2945
3088
|
};
|
|
2946
3089
|
}
|
|
@@ -2948,6 +3091,7 @@ export class DescribeApplicationMonitorResponse extends $tea.Model {
|
|
|
2948
3091
|
static types(): { [key: string]: any } {
|
|
2949
3092
|
return {
|
|
2950
3093
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3094
|
+
statusCode: 'number',
|
|
2951
3095
|
body: DescribeApplicationMonitorResponseBody,
|
|
2952
3096
|
};
|
|
2953
3097
|
}
|
|
@@ -3048,10 +3192,12 @@ export class DescribeBandwidthPackageResponseBody extends $tea.Model {
|
|
|
3048
3192
|
|
|
3049
3193
|
export class DescribeBandwidthPackageResponse extends $tea.Model {
|
|
3050
3194
|
headers: { [key: string]: string };
|
|
3195
|
+
statusCode: number;
|
|
3051
3196
|
body: DescribeBandwidthPackageResponseBody;
|
|
3052
3197
|
static names(): { [key: string]: string } {
|
|
3053
3198
|
return {
|
|
3054
3199
|
headers: 'headers',
|
|
3200
|
+
statusCode: 'statusCode',
|
|
3055
3201
|
body: 'body',
|
|
3056
3202
|
};
|
|
3057
3203
|
}
|
|
@@ -3059,6 +3205,7 @@ export class DescribeBandwidthPackageResponse extends $tea.Model {
|
|
|
3059
3205
|
static types(): { [key: string]: any } {
|
|
3060
3206
|
return {
|
|
3061
3207
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3208
|
+
statusCode: 'number',
|
|
3062
3209
|
body: DescribeBandwidthPackageResponseBody,
|
|
3063
3210
|
};
|
|
3064
3211
|
}
|
|
@@ -3068,6 +3215,84 @@ export class DescribeBandwidthPackageResponse extends $tea.Model {
|
|
|
3068
3215
|
}
|
|
3069
3216
|
}
|
|
3070
3217
|
|
|
3218
|
+
export class DescribeBandwidthPackageAutoRenewAttributeRequest extends $tea.Model {
|
|
3219
|
+
instanceId?: string;
|
|
3220
|
+
regionId?: string;
|
|
3221
|
+
static names(): { [key: string]: string } {
|
|
3222
|
+
return {
|
|
3223
|
+
instanceId: 'InstanceId',
|
|
3224
|
+
regionId: 'RegionId',
|
|
3225
|
+
};
|
|
3226
|
+
}
|
|
3227
|
+
|
|
3228
|
+
static types(): { [key: string]: any } {
|
|
3229
|
+
return {
|
|
3230
|
+
instanceId: 'string',
|
|
3231
|
+
regionId: 'string',
|
|
3232
|
+
};
|
|
3233
|
+
}
|
|
3234
|
+
|
|
3235
|
+
constructor(map?: { [key: string]: any }) {
|
|
3236
|
+
super(map);
|
|
3237
|
+
}
|
|
3238
|
+
}
|
|
3239
|
+
|
|
3240
|
+
export class DescribeBandwidthPackageAutoRenewAttributeResponseBody extends $tea.Model {
|
|
3241
|
+
autoRenew?: boolean;
|
|
3242
|
+
autoRenewDuration?: number;
|
|
3243
|
+
instanceId?: string;
|
|
3244
|
+
renewalStatus?: string;
|
|
3245
|
+
requestId?: string;
|
|
3246
|
+
static names(): { [key: string]: string } {
|
|
3247
|
+
return {
|
|
3248
|
+
autoRenew: 'AutoRenew',
|
|
3249
|
+
autoRenewDuration: 'AutoRenewDuration',
|
|
3250
|
+
instanceId: 'InstanceId',
|
|
3251
|
+
renewalStatus: 'RenewalStatus',
|
|
3252
|
+
requestId: 'RequestId',
|
|
3253
|
+
};
|
|
3254
|
+
}
|
|
3255
|
+
|
|
3256
|
+
static types(): { [key: string]: any } {
|
|
3257
|
+
return {
|
|
3258
|
+
autoRenew: 'boolean',
|
|
3259
|
+
autoRenewDuration: 'number',
|
|
3260
|
+
instanceId: 'string',
|
|
3261
|
+
renewalStatus: 'string',
|
|
3262
|
+
requestId: 'string',
|
|
3263
|
+
};
|
|
3264
|
+
}
|
|
3265
|
+
|
|
3266
|
+
constructor(map?: { [key: string]: any }) {
|
|
3267
|
+
super(map);
|
|
3268
|
+
}
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3271
|
+
export class DescribeBandwidthPackageAutoRenewAttributeResponse extends $tea.Model {
|
|
3272
|
+
headers: { [key: string]: string };
|
|
3273
|
+
statusCode: number;
|
|
3274
|
+
body: DescribeBandwidthPackageAutoRenewAttributeResponseBody;
|
|
3275
|
+
static names(): { [key: string]: string } {
|
|
3276
|
+
return {
|
|
3277
|
+
headers: 'headers',
|
|
3278
|
+
statusCode: 'statusCode',
|
|
3279
|
+
body: 'body',
|
|
3280
|
+
};
|
|
3281
|
+
}
|
|
3282
|
+
|
|
3283
|
+
static types(): { [key: string]: any } {
|
|
3284
|
+
return {
|
|
3285
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3286
|
+
statusCode: 'number',
|
|
3287
|
+
body: DescribeBandwidthPackageAutoRenewAttributeResponseBody,
|
|
3288
|
+
};
|
|
3289
|
+
}
|
|
3290
|
+
|
|
3291
|
+
constructor(map?: { [key: string]: any }) {
|
|
3292
|
+
super(map);
|
|
3293
|
+
}
|
|
3294
|
+
}
|
|
3295
|
+
|
|
3071
3296
|
export class DescribeEndpointGroupRequest extends $tea.Model {
|
|
3072
3297
|
endpointGroupId?: string;
|
|
3073
3298
|
regionId?: string;
|
|
@@ -3192,10 +3417,12 @@ export class DescribeEndpointGroupResponseBody extends $tea.Model {
|
|
|
3192
3417
|
|
|
3193
3418
|
export class DescribeEndpointGroupResponse extends $tea.Model {
|
|
3194
3419
|
headers: { [key: string]: string };
|
|
3420
|
+
statusCode: number;
|
|
3195
3421
|
body: DescribeEndpointGroupResponseBody;
|
|
3196
3422
|
static names(): { [key: string]: string } {
|
|
3197
3423
|
return {
|
|
3198
3424
|
headers: 'headers',
|
|
3425
|
+
statusCode: 'statusCode',
|
|
3199
3426
|
body: 'body',
|
|
3200
3427
|
};
|
|
3201
3428
|
}
|
|
@@ -3203,6 +3430,7 @@ export class DescribeEndpointGroupResponse extends $tea.Model {
|
|
|
3203
3430
|
static types(): { [key: string]: any } {
|
|
3204
3431
|
return {
|
|
3205
3432
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3433
|
+
statusCode: 'number',
|
|
3206
3434
|
body: DescribeEndpointGroupResponseBody,
|
|
3207
3435
|
};
|
|
3208
3436
|
}
|
|
@@ -3276,10 +3504,12 @@ export class DescribeIpSetResponseBody extends $tea.Model {
|
|
|
3276
3504
|
|
|
3277
3505
|
export class DescribeIpSetResponse extends $tea.Model {
|
|
3278
3506
|
headers: { [key: string]: string };
|
|
3507
|
+
statusCode: number;
|
|
3279
3508
|
body: DescribeIpSetResponseBody;
|
|
3280
3509
|
static names(): { [key: string]: string } {
|
|
3281
3510
|
return {
|
|
3282
3511
|
headers: 'headers',
|
|
3512
|
+
statusCode: 'statusCode',
|
|
3283
3513
|
body: 'body',
|
|
3284
3514
|
};
|
|
3285
3515
|
}
|
|
@@ -3287,6 +3517,7 @@ export class DescribeIpSetResponse extends $tea.Model {
|
|
|
3287
3517
|
static types(): { [key: string]: any } {
|
|
3288
3518
|
return {
|
|
3289
3519
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3520
|
+
statusCode: 'number',
|
|
3290
3521
|
body: DescribeIpSetResponseBody,
|
|
3291
3522
|
};
|
|
3292
3523
|
}
|
|
@@ -3387,10 +3618,12 @@ export class DescribeListenerResponseBody extends $tea.Model {
|
|
|
3387
3618
|
|
|
3388
3619
|
export class DescribeListenerResponse extends $tea.Model {
|
|
3389
3620
|
headers: { [key: string]: string };
|
|
3621
|
+
statusCode: number;
|
|
3390
3622
|
body: DescribeListenerResponseBody;
|
|
3391
3623
|
static names(): { [key: string]: string } {
|
|
3392
3624
|
return {
|
|
3393
3625
|
headers: 'headers',
|
|
3626
|
+
statusCode: 'statusCode',
|
|
3394
3627
|
body: 'body',
|
|
3395
3628
|
};
|
|
3396
3629
|
}
|
|
@@ -3398,6 +3631,7 @@ export class DescribeListenerResponse extends $tea.Model {
|
|
|
3398
3631
|
static types(): { [key: string]: any } {
|
|
3399
3632
|
return {
|
|
3400
3633
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3634
|
+
statusCode: 'number',
|
|
3401
3635
|
body: DescribeListenerResponseBody,
|
|
3402
3636
|
};
|
|
3403
3637
|
}
|
|
@@ -3450,10 +3684,12 @@ export class DescribeRegionsResponseBody extends $tea.Model {
|
|
|
3450
3684
|
|
|
3451
3685
|
export class DescribeRegionsResponse extends $tea.Model {
|
|
3452
3686
|
headers: { [key: string]: string };
|
|
3687
|
+
statusCode: number;
|
|
3453
3688
|
body: DescribeRegionsResponseBody;
|
|
3454
3689
|
static names(): { [key: string]: string } {
|
|
3455
3690
|
return {
|
|
3456
3691
|
headers: 'headers',
|
|
3692
|
+
statusCode: 'statusCode',
|
|
3457
3693
|
body: 'body',
|
|
3458
3694
|
};
|
|
3459
3695
|
}
|
|
@@ -3461,6 +3697,7 @@ export class DescribeRegionsResponse extends $tea.Model {
|
|
|
3461
3697
|
static types(): { [key: string]: any } {
|
|
3462
3698
|
return {
|
|
3463
3699
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3700
|
+
statusCode: 'number',
|
|
3464
3701
|
body: DescribeRegionsResponseBody,
|
|
3465
3702
|
};
|
|
3466
3703
|
}
|
|
@@ -3516,10 +3753,12 @@ export class DetachDdosFromAcceleratorResponseBody extends $tea.Model {
|
|
|
3516
3753
|
|
|
3517
3754
|
export class DetachDdosFromAcceleratorResponse extends $tea.Model {
|
|
3518
3755
|
headers: { [key: string]: string };
|
|
3756
|
+
statusCode: number;
|
|
3519
3757
|
body: DetachDdosFromAcceleratorResponseBody;
|
|
3520
3758
|
static names(): { [key: string]: string } {
|
|
3521
3759
|
return {
|
|
3522
3760
|
headers: 'headers',
|
|
3761
|
+
statusCode: 'statusCode',
|
|
3523
3762
|
body: 'body',
|
|
3524
3763
|
};
|
|
3525
3764
|
}
|
|
@@ -3527,6 +3766,7 @@ export class DetachDdosFromAcceleratorResponse extends $tea.Model {
|
|
|
3527
3766
|
static types(): { [key: string]: any } {
|
|
3528
3767
|
return {
|
|
3529
3768
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3769
|
+
statusCode: 'number',
|
|
3530
3770
|
body: DetachDdosFromAcceleratorResponseBody,
|
|
3531
3771
|
};
|
|
3532
3772
|
}
|
|
@@ -3588,10 +3828,12 @@ export class DetachLogStoreFromEndpointGroupResponseBody extends $tea.Model {
|
|
|
3588
3828
|
|
|
3589
3829
|
export class DetachLogStoreFromEndpointGroupResponse extends $tea.Model {
|
|
3590
3830
|
headers: { [key: string]: string };
|
|
3831
|
+
statusCode: number;
|
|
3591
3832
|
body: DetachLogStoreFromEndpointGroupResponseBody;
|
|
3592
3833
|
static names(): { [key: string]: string } {
|
|
3593
3834
|
return {
|
|
3594
3835
|
headers: 'headers',
|
|
3836
|
+
statusCode: 'statusCode',
|
|
3595
3837
|
body: 'body',
|
|
3596
3838
|
};
|
|
3597
3839
|
}
|
|
@@ -3599,6 +3841,7 @@ export class DetachLogStoreFromEndpointGroupResponse extends $tea.Model {
|
|
|
3599
3841
|
static types(): { [key: string]: any } {
|
|
3600
3842
|
return {
|
|
3601
3843
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3844
|
+
statusCode: 'number',
|
|
3602
3845
|
body: DetachLogStoreFromEndpointGroupResponseBody,
|
|
3603
3846
|
};
|
|
3604
3847
|
}
|
|
@@ -3654,10 +3897,12 @@ export class DetectApplicationMonitorResponseBody extends $tea.Model {
|
|
|
3654
3897
|
|
|
3655
3898
|
export class DetectApplicationMonitorResponse extends $tea.Model {
|
|
3656
3899
|
headers: { [key: string]: string };
|
|
3900
|
+
statusCode: number;
|
|
3657
3901
|
body: DetectApplicationMonitorResponseBody;
|
|
3658
3902
|
static names(): { [key: string]: string } {
|
|
3659
3903
|
return {
|
|
3660
3904
|
headers: 'headers',
|
|
3905
|
+
statusCode: 'statusCode',
|
|
3661
3906
|
body: 'body',
|
|
3662
3907
|
};
|
|
3663
3908
|
}
|
|
@@ -3665,6 +3910,7 @@ export class DetectApplicationMonitorResponse extends $tea.Model {
|
|
|
3665
3910
|
static types(): { [key: string]: any } {
|
|
3666
3911
|
return {
|
|
3667
3912
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3913
|
+
statusCode: 'number',
|
|
3668
3914
|
body: DetectApplicationMonitorResponseBody,
|
|
3669
3915
|
};
|
|
3670
3916
|
}
|
|
@@ -3720,10 +3966,12 @@ export class DisableApplicationMonitorResponseBody extends $tea.Model {
|
|
|
3720
3966
|
|
|
3721
3967
|
export class DisableApplicationMonitorResponse extends $tea.Model {
|
|
3722
3968
|
headers: { [key: string]: string };
|
|
3969
|
+
statusCode: number;
|
|
3723
3970
|
body: DisableApplicationMonitorResponseBody;
|
|
3724
3971
|
static names(): { [key: string]: string } {
|
|
3725
3972
|
return {
|
|
3726
3973
|
headers: 'headers',
|
|
3974
|
+
statusCode: 'statusCode',
|
|
3727
3975
|
body: 'body',
|
|
3728
3976
|
};
|
|
3729
3977
|
}
|
|
@@ -3731,6 +3979,7 @@ export class DisableApplicationMonitorResponse extends $tea.Model {
|
|
|
3731
3979
|
static types(): { [key: string]: any } {
|
|
3732
3980
|
return {
|
|
3733
3981
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3982
|
+
statusCode: 'number',
|
|
3734
3983
|
body: DisableApplicationMonitorResponseBody,
|
|
3735
3984
|
};
|
|
3736
3985
|
}
|
|
@@ -3798,10 +4047,12 @@ export class DissociateAclsFromListenerResponseBody extends $tea.Model {
|
|
|
3798
4047
|
|
|
3799
4048
|
export class DissociateAclsFromListenerResponse extends $tea.Model {
|
|
3800
4049
|
headers: { [key: string]: string };
|
|
4050
|
+
statusCode: number;
|
|
3801
4051
|
body: DissociateAclsFromListenerResponseBody;
|
|
3802
4052
|
static names(): { [key: string]: string } {
|
|
3803
4053
|
return {
|
|
3804
4054
|
headers: 'headers',
|
|
4055
|
+
statusCode: 'statusCode',
|
|
3805
4056
|
body: 'body',
|
|
3806
4057
|
};
|
|
3807
4058
|
}
|
|
@@ -3809,6 +4060,7 @@ export class DissociateAclsFromListenerResponse extends $tea.Model {
|
|
|
3809
4060
|
static types(): { [key: string]: any } {
|
|
3810
4061
|
return {
|
|
3811
4062
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4063
|
+
statusCode: 'number',
|
|
3812
4064
|
body: DissociateAclsFromListenerResponseBody,
|
|
3813
4065
|
};
|
|
3814
4066
|
}
|
|
@@ -3870,10 +4122,12 @@ export class DissociateAdditionalCertificatesFromListenerResponseBody extends $t
|
|
|
3870
4122
|
|
|
3871
4123
|
export class DissociateAdditionalCertificatesFromListenerResponse extends $tea.Model {
|
|
3872
4124
|
headers: { [key: string]: string };
|
|
4125
|
+
statusCode: number;
|
|
3873
4126
|
body: DissociateAdditionalCertificatesFromListenerResponseBody;
|
|
3874
4127
|
static names(): { [key: string]: string } {
|
|
3875
4128
|
return {
|
|
3876
4129
|
headers: 'headers',
|
|
4130
|
+
statusCode: 'statusCode',
|
|
3877
4131
|
body: 'body',
|
|
3878
4132
|
};
|
|
3879
4133
|
}
|
|
@@ -3881,6 +4135,7 @@ export class DissociateAdditionalCertificatesFromListenerResponse extends $tea.M
|
|
|
3881
4135
|
static types(): { [key: string]: any } {
|
|
3882
4136
|
return {
|
|
3883
4137
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4138
|
+
statusCode: 'number',
|
|
3884
4139
|
body: DissociateAdditionalCertificatesFromListenerResponseBody,
|
|
3885
4140
|
};
|
|
3886
4141
|
}
|
|
@@ -3936,10 +4191,12 @@ export class EnableApplicationMonitorResponseBody extends $tea.Model {
|
|
|
3936
4191
|
|
|
3937
4192
|
export class EnableApplicationMonitorResponse extends $tea.Model {
|
|
3938
4193
|
headers: { [key: string]: string };
|
|
4194
|
+
statusCode: number;
|
|
3939
4195
|
body: EnableApplicationMonitorResponseBody;
|
|
3940
4196
|
static names(): { [key: string]: string } {
|
|
3941
4197
|
return {
|
|
3942
4198
|
headers: 'headers',
|
|
4199
|
+
statusCode: 'statusCode',
|
|
3943
4200
|
body: 'body',
|
|
3944
4201
|
};
|
|
3945
4202
|
}
|
|
@@ -3947,6 +4204,7 @@ export class EnableApplicationMonitorResponse extends $tea.Model {
|
|
|
3947
4204
|
static types(): { [key: string]: any } {
|
|
3948
4205
|
return {
|
|
3949
4206
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4207
|
+
statusCode: 'number',
|
|
3950
4208
|
body: EnableApplicationMonitorResponseBody,
|
|
3951
4209
|
};
|
|
3952
4210
|
}
|
|
@@ -4017,10 +4275,12 @@ export class GetAclResponseBody extends $tea.Model {
|
|
|
4017
4275
|
|
|
4018
4276
|
export class GetAclResponse extends $tea.Model {
|
|
4019
4277
|
headers: { [key: string]: string };
|
|
4278
|
+
statusCode: number;
|
|
4020
4279
|
body: GetAclResponseBody;
|
|
4021
4280
|
static names(): { [key: string]: string } {
|
|
4022
4281
|
return {
|
|
4023
4282
|
headers: 'headers',
|
|
4283
|
+
statusCode: 'statusCode',
|
|
4024
4284
|
body: 'body',
|
|
4025
4285
|
};
|
|
4026
4286
|
}
|
|
@@ -4028,6 +4288,7 @@ export class GetAclResponse extends $tea.Model {
|
|
|
4028
4288
|
static types(): { [key: string]: any } {
|
|
4029
4289
|
return {
|
|
4030
4290
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4291
|
+
statusCode: 'number',
|
|
4031
4292
|
body: GetAclResponseBody,
|
|
4032
4293
|
};
|
|
4033
4294
|
}
|
|
@@ -4119,10 +4380,12 @@ export class GetBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
4119
4380
|
|
|
4120
4381
|
export class GetBasicAcceleratorResponse extends $tea.Model {
|
|
4121
4382
|
headers: { [key: string]: string };
|
|
4383
|
+
statusCode: number;
|
|
4122
4384
|
body: GetBasicAcceleratorResponseBody;
|
|
4123
4385
|
static names(): { [key: string]: string } {
|
|
4124
4386
|
return {
|
|
4125
4387
|
headers: 'headers',
|
|
4388
|
+
statusCode: 'statusCode',
|
|
4126
4389
|
body: 'body',
|
|
4127
4390
|
};
|
|
4128
4391
|
}
|
|
@@ -4130,6 +4393,7 @@ export class GetBasicAcceleratorResponse extends $tea.Model {
|
|
|
4130
4393
|
static types(): { [key: string]: any } {
|
|
4131
4394
|
return {
|
|
4132
4395
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4396
|
+
statusCode: 'number',
|
|
4133
4397
|
body: GetBasicAcceleratorResponseBody,
|
|
4134
4398
|
};
|
|
4135
4399
|
}
|
|
@@ -4209,10 +4473,12 @@ export class GetBasicEndpointGroupResponseBody extends $tea.Model {
|
|
|
4209
4473
|
|
|
4210
4474
|
export class GetBasicEndpointGroupResponse extends $tea.Model {
|
|
4211
4475
|
headers: { [key: string]: string };
|
|
4476
|
+
statusCode: number;
|
|
4212
4477
|
body: GetBasicEndpointGroupResponseBody;
|
|
4213
4478
|
static names(): { [key: string]: string } {
|
|
4214
4479
|
return {
|
|
4215
4480
|
headers: 'headers',
|
|
4481
|
+
statusCode: 'statusCode',
|
|
4216
4482
|
body: 'body',
|
|
4217
4483
|
};
|
|
4218
4484
|
}
|
|
@@ -4220,6 +4486,7 @@ export class GetBasicEndpointGroupResponse extends $tea.Model {
|
|
|
4220
4486
|
static types(): { [key: string]: any } {
|
|
4221
4487
|
return {
|
|
4222
4488
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4489
|
+
statusCode: 'number',
|
|
4223
4490
|
body: GetBasicEndpointGroupResponseBody,
|
|
4224
4491
|
};
|
|
4225
4492
|
}
|
|
@@ -4296,10 +4563,12 @@ export class GetBasicIpSetResponseBody extends $tea.Model {
|
|
|
4296
4563
|
|
|
4297
4564
|
export class GetBasicIpSetResponse extends $tea.Model {
|
|
4298
4565
|
headers: { [key: string]: string };
|
|
4566
|
+
statusCode: number;
|
|
4299
4567
|
body: GetBasicIpSetResponseBody;
|
|
4300
4568
|
static names(): { [key: string]: string } {
|
|
4301
4569
|
return {
|
|
4302
4570
|
headers: 'headers',
|
|
4571
|
+
statusCode: 'statusCode',
|
|
4303
4572
|
body: 'body',
|
|
4304
4573
|
};
|
|
4305
4574
|
}
|
|
@@ -4307,6 +4576,7 @@ export class GetBasicIpSetResponse extends $tea.Model {
|
|
|
4307
4576
|
static types(): { [key: string]: any } {
|
|
4308
4577
|
return {
|
|
4309
4578
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4579
|
+
statusCode: 'number',
|
|
4310
4580
|
body: GetBasicIpSetResponseBody,
|
|
4311
4581
|
};
|
|
4312
4582
|
}
|
|
@@ -4377,10 +4647,12 @@ export class GetHealthStatusResponseBody extends $tea.Model {
|
|
|
4377
4647
|
|
|
4378
4648
|
export class GetHealthStatusResponse extends $tea.Model {
|
|
4379
4649
|
headers: { [key: string]: string };
|
|
4650
|
+
statusCode: number;
|
|
4380
4651
|
body: GetHealthStatusResponseBody;
|
|
4381
4652
|
static names(): { [key: string]: string } {
|
|
4382
4653
|
return {
|
|
4383
4654
|
headers: 'headers',
|
|
4655
|
+
statusCode: 'statusCode',
|
|
4384
4656
|
body: 'body',
|
|
4385
4657
|
};
|
|
4386
4658
|
}
|
|
@@ -4388,6 +4660,7 @@ export class GetHealthStatusResponse extends $tea.Model {
|
|
|
4388
4660
|
static types(): { [key: string]: any } {
|
|
4389
4661
|
return {
|
|
4390
4662
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4663
|
+
statusCode: 'number',
|
|
4391
4664
|
body: GetHealthStatusResponseBody,
|
|
4392
4665
|
};
|
|
4393
4666
|
}
|
|
@@ -4452,10 +4725,12 @@ export class GetSpareIpResponseBody extends $tea.Model {
|
|
|
4452
4725
|
|
|
4453
4726
|
export class GetSpareIpResponse extends $tea.Model {
|
|
4454
4727
|
headers: { [key: string]: string };
|
|
4728
|
+
statusCode: number;
|
|
4455
4729
|
body: GetSpareIpResponseBody;
|
|
4456
4730
|
static names(): { [key: string]: string } {
|
|
4457
4731
|
return {
|
|
4458
4732
|
headers: 'headers',
|
|
4733
|
+
statusCode: 'statusCode',
|
|
4459
4734
|
body: 'body',
|
|
4460
4735
|
};
|
|
4461
4736
|
}
|
|
@@ -4463,6 +4738,7 @@ export class GetSpareIpResponse extends $tea.Model {
|
|
|
4463
4738
|
static types(): { [key: string]: any } {
|
|
4464
4739
|
return {
|
|
4465
4740
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4741
|
+
statusCode: 'number',
|
|
4466
4742
|
body: GetSpareIpResponseBody,
|
|
4467
4743
|
};
|
|
4468
4744
|
}
|
|
@@ -4515,10 +4791,12 @@ export class ListAccelerateAreasResponseBody extends $tea.Model {
|
|
|
4515
4791
|
|
|
4516
4792
|
export class ListAccelerateAreasResponse extends $tea.Model {
|
|
4517
4793
|
headers: { [key: string]: string };
|
|
4794
|
+
statusCode: number;
|
|
4518
4795
|
body: ListAccelerateAreasResponseBody;
|
|
4519
4796
|
static names(): { [key: string]: string } {
|
|
4520
4797
|
return {
|
|
4521
4798
|
headers: 'headers',
|
|
4799
|
+
statusCode: 'statusCode',
|
|
4522
4800
|
body: 'body',
|
|
4523
4801
|
};
|
|
4524
4802
|
}
|
|
@@ -4526,6 +4804,7 @@ export class ListAccelerateAreasResponse extends $tea.Model {
|
|
|
4526
4804
|
static types(): { [key: string]: any } {
|
|
4527
4805
|
return {
|
|
4528
4806
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4807
|
+
statusCode: 'number',
|
|
4529
4808
|
body: ListAccelerateAreasResponseBody,
|
|
4530
4809
|
};
|
|
4531
4810
|
}
|
|
@@ -4599,10 +4878,12 @@ export class ListAcceleratorsResponseBody extends $tea.Model {
|
|
|
4599
4878
|
|
|
4600
4879
|
export class ListAcceleratorsResponse extends $tea.Model {
|
|
4601
4880
|
headers: { [key: string]: string };
|
|
4881
|
+
statusCode: number;
|
|
4602
4882
|
body: ListAcceleratorsResponseBody;
|
|
4603
4883
|
static names(): { [key: string]: string } {
|
|
4604
4884
|
return {
|
|
4605
4885
|
headers: 'headers',
|
|
4886
|
+
statusCode: 'statusCode',
|
|
4606
4887
|
body: 'body',
|
|
4607
4888
|
};
|
|
4608
4889
|
}
|
|
@@ -4610,6 +4891,7 @@ export class ListAcceleratorsResponse extends $tea.Model {
|
|
|
4610
4891
|
static types(): { [key: string]: any } {
|
|
4611
4892
|
return {
|
|
4612
4893
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4894
|
+
statusCode: 'number',
|
|
4613
4895
|
body: ListAcceleratorsResponseBody,
|
|
4614
4896
|
};
|
|
4615
4897
|
}
|
|
@@ -4686,10 +4968,12 @@ export class ListAclsResponseBody extends $tea.Model {
|
|
|
4686
4968
|
|
|
4687
4969
|
export class ListAclsResponse extends $tea.Model {
|
|
4688
4970
|
headers: { [key: string]: string };
|
|
4971
|
+
statusCode: number;
|
|
4689
4972
|
body: ListAclsResponseBody;
|
|
4690
4973
|
static names(): { [key: string]: string } {
|
|
4691
4974
|
return {
|
|
4692
4975
|
headers: 'headers',
|
|
4976
|
+
statusCode: 'statusCode',
|
|
4693
4977
|
body: 'body',
|
|
4694
4978
|
};
|
|
4695
4979
|
}
|
|
@@ -4697,6 +4981,7 @@ export class ListAclsResponse extends $tea.Model {
|
|
|
4697
4981
|
static types(): { [key: string]: any } {
|
|
4698
4982
|
return {
|
|
4699
4983
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4984
|
+
statusCode: 'number',
|
|
4700
4985
|
body: ListAclsResponseBody,
|
|
4701
4986
|
};
|
|
4702
4987
|
}
|
|
@@ -4767,10 +5052,12 @@ export class ListApplicationMonitorResponseBody extends $tea.Model {
|
|
|
4767
5052
|
|
|
4768
5053
|
export class ListApplicationMonitorResponse extends $tea.Model {
|
|
4769
5054
|
headers: { [key: string]: string };
|
|
5055
|
+
statusCode: number;
|
|
4770
5056
|
body: ListApplicationMonitorResponseBody;
|
|
4771
5057
|
static names(): { [key: string]: string } {
|
|
4772
5058
|
return {
|
|
4773
5059
|
headers: 'headers',
|
|
5060
|
+
statusCode: 'statusCode',
|
|
4774
5061
|
body: 'body',
|
|
4775
5062
|
};
|
|
4776
5063
|
}
|
|
@@ -4778,6 +5065,7 @@ export class ListApplicationMonitorResponse extends $tea.Model {
|
|
|
4778
5065
|
static types(): { [key: string]: any } {
|
|
4779
5066
|
return {
|
|
4780
5067
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5068
|
+
statusCode: 'number',
|
|
4781
5069
|
body: ListApplicationMonitorResponseBody,
|
|
4782
5070
|
};
|
|
4783
5071
|
}
|
|
@@ -4854,10 +5142,12 @@ export class ListApplicationMonitorDetectResultResponseBody extends $tea.Model {
|
|
|
4854
5142
|
|
|
4855
5143
|
export class ListApplicationMonitorDetectResultResponse extends $tea.Model {
|
|
4856
5144
|
headers: { [key: string]: string };
|
|
5145
|
+
statusCode: number;
|
|
4857
5146
|
body: ListApplicationMonitorDetectResultResponseBody;
|
|
4858
5147
|
static names(): { [key: string]: string } {
|
|
4859
5148
|
return {
|
|
4860
5149
|
headers: 'headers',
|
|
5150
|
+
statusCode: 'statusCode',
|
|
4861
5151
|
body: 'body',
|
|
4862
5152
|
};
|
|
4863
5153
|
}
|
|
@@ -4865,6 +5155,7 @@ export class ListApplicationMonitorDetectResultResponse extends $tea.Model {
|
|
|
4865
5155
|
static types(): { [key: string]: any } {
|
|
4866
5156
|
return {
|
|
4867
5157
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5158
|
+
statusCode: 'number',
|
|
4868
5159
|
body: ListApplicationMonitorDetectResultResponseBody,
|
|
4869
5160
|
};
|
|
4870
5161
|
}
|
|
@@ -4920,10 +5211,12 @@ export class ListAvailableAccelerateAreasResponseBody extends $tea.Model {
|
|
|
4920
5211
|
|
|
4921
5212
|
export class ListAvailableAccelerateAreasResponse extends $tea.Model {
|
|
4922
5213
|
headers: { [key: string]: string };
|
|
5214
|
+
statusCode: number;
|
|
4923
5215
|
body: ListAvailableAccelerateAreasResponseBody;
|
|
4924
5216
|
static names(): { [key: string]: string } {
|
|
4925
5217
|
return {
|
|
4926
5218
|
headers: 'headers',
|
|
5219
|
+
statusCode: 'statusCode',
|
|
4927
5220
|
body: 'body',
|
|
4928
5221
|
};
|
|
4929
5222
|
}
|
|
@@ -4931,6 +5224,7 @@ export class ListAvailableAccelerateAreasResponse extends $tea.Model {
|
|
|
4931
5224
|
static types(): { [key: string]: any } {
|
|
4932
5225
|
return {
|
|
4933
5226
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5227
|
+
statusCode: 'number',
|
|
4934
5228
|
body: ListAvailableAccelerateAreasResponseBody,
|
|
4935
5229
|
};
|
|
4936
5230
|
}
|
|
@@ -4986,10 +5280,12 @@ export class ListAvailableBusiRegionsResponseBody extends $tea.Model {
|
|
|
4986
5280
|
|
|
4987
5281
|
export class ListAvailableBusiRegionsResponse extends $tea.Model {
|
|
4988
5282
|
headers: { [key: string]: string };
|
|
5283
|
+
statusCode: number;
|
|
4989
5284
|
body: ListAvailableBusiRegionsResponseBody;
|
|
4990
5285
|
static names(): { [key: string]: string } {
|
|
4991
5286
|
return {
|
|
4992
5287
|
headers: 'headers',
|
|
5288
|
+
statusCode: 'statusCode',
|
|
4993
5289
|
body: 'body',
|
|
4994
5290
|
};
|
|
4995
5291
|
}
|
|
@@ -4997,6 +5293,7 @@ export class ListAvailableBusiRegionsResponse extends $tea.Model {
|
|
|
4997
5293
|
static types(): { [key: string]: any } {
|
|
4998
5294
|
return {
|
|
4999
5295
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5296
|
+
statusCode: 'number',
|
|
5000
5297
|
body: ListAvailableBusiRegionsResponseBody,
|
|
5001
5298
|
};
|
|
5002
5299
|
}
|
|
@@ -5073,10 +5370,12 @@ export class ListBandwidthPackagesResponseBody extends $tea.Model {
|
|
|
5073
5370
|
|
|
5074
5371
|
export class ListBandwidthPackagesResponse extends $tea.Model {
|
|
5075
5372
|
headers: { [key: string]: string };
|
|
5373
|
+
statusCode: number;
|
|
5076
5374
|
body: ListBandwidthPackagesResponseBody;
|
|
5077
5375
|
static names(): { [key: string]: string } {
|
|
5078
5376
|
return {
|
|
5079
5377
|
headers: 'headers',
|
|
5378
|
+
statusCode: 'statusCode',
|
|
5080
5379
|
body: 'body',
|
|
5081
5380
|
};
|
|
5082
5381
|
}
|
|
@@ -5084,6 +5383,7 @@ export class ListBandwidthPackagesResponse extends $tea.Model {
|
|
|
5084
5383
|
static types(): { [key: string]: any } {
|
|
5085
5384
|
return {
|
|
5086
5385
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5386
|
+
statusCode: 'number',
|
|
5087
5387
|
body: ListBandwidthPackagesResponseBody,
|
|
5088
5388
|
};
|
|
5089
5389
|
}
|
|
@@ -5151,10 +5451,12 @@ export class ListBandwidthackagesResponseBody extends $tea.Model {
|
|
|
5151
5451
|
|
|
5152
5452
|
export class ListBandwidthackagesResponse extends $tea.Model {
|
|
5153
5453
|
headers: { [key: string]: string };
|
|
5454
|
+
statusCode: number;
|
|
5154
5455
|
body: ListBandwidthackagesResponseBody;
|
|
5155
5456
|
static names(): { [key: string]: string } {
|
|
5156
5457
|
return {
|
|
5157
5458
|
headers: 'headers',
|
|
5459
|
+
statusCode: 'statusCode',
|
|
5158
5460
|
body: 'body',
|
|
5159
5461
|
};
|
|
5160
5462
|
}
|
|
@@ -5162,6 +5464,7 @@ export class ListBandwidthackagesResponse extends $tea.Model {
|
|
|
5162
5464
|
static types(): { [key: string]: any } {
|
|
5163
5465
|
return {
|
|
5164
5466
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5467
|
+
statusCode: 'number',
|
|
5165
5468
|
body: ListBandwidthackagesResponseBody,
|
|
5166
5469
|
};
|
|
5167
5470
|
}
|
|
@@ -5235,10 +5538,12 @@ export class ListBasicAcceleratorsResponseBody extends $tea.Model {
|
|
|
5235
5538
|
|
|
5236
5539
|
export class ListBasicAcceleratorsResponse extends $tea.Model {
|
|
5237
5540
|
headers: { [key: string]: string };
|
|
5541
|
+
statusCode: number;
|
|
5238
5542
|
body: ListBasicAcceleratorsResponseBody;
|
|
5239
5543
|
static names(): { [key: string]: string } {
|
|
5240
5544
|
return {
|
|
5241
5545
|
headers: 'headers',
|
|
5546
|
+
statusCode: 'statusCode',
|
|
5242
5547
|
body: 'body',
|
|
5243
5548
|
};
|
|
5244
5549
|
}
|
|
@@ -5246,6 +5551,7 @@ export class ListBasicAcceleratorsResponse extends $tea.Model {
|
|
|
5246
5551
|
static types(): { [key: string]: any } {
|
|
5247
5552
|
return {
|
|
5248
5553
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5554
|
+
statusCode: 'number',
|
|
5249
5555
|
body: ListBasicAcceleratorsResponseBody,
|
|
5250
5556
|
};
|
|
5251
5557
|
}
|
|
@@ -5298,10 +5604,12 @@ export class ListBusiRegionsResponseBody extends $tea.Model {
|
|
|
5298
5604
|
|
|
5299
5605
|
export class ListBusiRegionsResponse extends $tea.Model {
|
|
5300
5606
|
headers: { [key: string]: string };
|
|
5607
|
+
statusCode: number;
|
|
5301
5608
|
body: ListBusiRegionsResponseBody;
|
|
5302
5609
|
static names(): { [key: string]: string } {
|
|
5303
5610
|
return {
|
|
5304
5611
|
headers: 'headers',
|
|
5612
|
+
statusCode: 'statusCode',
|
|
5305
5613
|
body: 'body',
|
|
5306
5614
|
};
|
|
5307
5615
|
}
|
|
@@ -5309,6 +5617,7 @@ export class ListBusiRegionsResponse extends $tea.Model {
|
|
|
5309
5617
|
static types(): { [key: string]: any } {
|
|
5310
5618
|
return {
|
|
5311
5619
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5620
|
+
statusCode: 'number',
|
|
5312
5621
|
body: ListBusiRegionsResponseBody,
|
|
5313
5622
|
};
|
|
5314
5623
|
}
|
|
@@ -5391,10 +5700,12 @@ export class ListEndpointGroupsResponseBody extends $tea.Model {
|
|
|
5391
5700
|
|
|
5392
5701
|
export class ListEndpointGroupsResponse extends $tea.Model {
|
|
5393
5702
|
headers: { [key: string]: string };
|
|
5703
|
+
statusCode: number;
|
|
5394
5704
|
body: ListEndpointGroupsResponseBody;
|
|
5395
5705
|
static names(): { [key: string]: string } {
|
|
5396
5706
|
return {
|
|
5397
5707
|
headers: 'headers',
|
|
5708
|
+
statusCode: 'statusCode',
|
|
5398
5709
|
body: 'body',
|
|
5399
5710
|
};
|
|
5400
5711
|
}
|
|
@@ -5402,6 +5713,7 @@ export class ListEndpointGroupsResponse extends $tea.Model {
|
|
|
5402
5713
|
static types(): { [key: string]: any } {
|
|
5403
5714
|
return {
|
|
5404
5715
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5716
|
+
statusCode: 'number',
|
|
5405
5717
|
body: ListEndpointGroupsResponseBody,
|
|
5406
5718
|
};
|
|
5407
5719
|
}
|
|
@@ -5481,10 +5793,12 @@ export class ListForwardingRulesResponseBody extends $tea.Model {
|
|
|
5481
5793
|
|
|
5482
5794
|
export class ListForwardingRulesResponse extends $tea.Model {
|
|
5483
5795
|
headers: { [key: string]: string };
|
|
5796
|
+
statusCode: number;
|
|
5484
5797
|
body: ListForwardingRulesResponseBody;
|
|
5485
5798
|
static names(): { [key: string]: string } {
|
|
5486
5799
|
return {
|
|
5487
5800
|
headers: 'headers',
|
|
5801
|
+
statusCode: 'statusCode',
|
|
5488
5802
|
body: 'body',
|
|
5489
5803
|
};
|
|
5490
5804
|
}
|
|
@@ -5492,6 +5806,7 @@ export class ListForwardingRulesResponse extends $tea.Model {
|
|
|
5492
5806
|
static types(): { [key: string]: any } {
|
|
5493
5807
|
return {
|
|
5494
5808
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5809
|
+
statusCode: 'number',
|
|
5495
5810
|
body: ListForwardingRulesResponseBody,
|
|
5496
5811
|
};
|
|
5497
5812
|
}
|
|
@@ -5562,10 +5877,12 @@ export class ListIpSetsResponseBody extends $tea.Model {
|
|
|
5562
5877
|
|
|
5563
5878
|
export class ListIpSetsResponse extends $tea.Model {
|
|
5564
5879
|
headers: { [key: string]: string };
|
|
5880
|
+
statusCode: number;
|
|
5565
5881
|
body: ListIpSetsResponseBody;
|
|
5566
5882
|
static names(): { [key: string]: string } {
|
|
5567
5883
|
return {
|
|
5568
5884
|
headers: 'headers',
|
|
5885
|
+
statusCode: 'statusCode',
|
|
5569
5886
|
body: 'body',
|
|
5570
5887
|
};
|
|
5571
5888
|
}
|
|
@@ -5573,6 +5890,7 @@ export class ListIpSetsResponse extends $tea.Model {
|
|
|
5573
5890
|
static types(): { [key: string]: any } {
|
|
5574
5891
|
return {
|
|
5575
5892
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5893
|
+
statusCode: 'number',
|
|
5576
5894
|
body: ListIpSetsResponseBody,
|
|
5577
5895
|
};
|
|
5578
5896
|
}
|
|
@@ -5649,10 +5967,12 @@ export class ListListenerCertificatesResponseBody extends $tea.Model {
|
|
|
5649
5967
|
|
|
5650
5968
|
export class ListListenerCertificatesResponse extends $tea.Model {
|
|
5651
5969
|
headers: { [key: string]: string };
|
|
5970
|
+
statusCode: number;
|
|
5652
5971
|
body: ListListenerCertificatesResponseBody;
|
|
5653
5972
|
static names(): { [key: string]: string } {
|
|
5654
5973
|
return {
|
|
5655
5974
|
headers: 'headers',
|
|
5975
|
+
statusCode: 'statusCode',
|
|
5656
5976
|
body: 'body',
|
|
5657
5977
|
};
|
|
5658
5978
|
}
|
|
@@ -5660,6 +5980,7 @@ export class ListListenerCertificatesResponse extends $tea.Model {
|
|
|
5660
5980
|
static types(): { [key: string]: any } {
|
|
5661
5981
|
return {
|
|
5662
5982
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5983
|
+
statusCode: 'number',
|
|
5663
5984
|
body: ListListenerCertificatesResponseBody,
|
|
5664
5985
|
};
|
|
5665
5986
|
}
|
|
@@ -5730,10 +6051,12 @@ export class ListListenersResponseBody extends $tea.Model {
|
|
|
5730
6051
|
|
|
5731
6052
|
export class ListListenersResponse extends $tea.Model {
|
|
5732
6053
|
headers: { [key: string]: string };
|
|
6054
|
+
statusCode: number;
|
|
5733
6055
|
body: ListListenersResponseBody;
|
|
5734
6056
|
static names(): { [key: string]: string } {
|
|
5735
6057
|
return {
|
|
5736
6058
|
headers: 'headers',
|
|
6059
|
+
statusCode: 'statusCode',
|
|
5737
6060
|
body: 'body',
|
|
5738
6061
|
};
|
|
5739
6062
|
}
|
|
@@ -5741,6 +6064,7 @@ export class ListListenersResponse extends $tea.Model {
|
|
|
5741
6064
|
static types(): { [key: string]: any } {
|
|
5742
6065
|
return {
|
|
5743
6066
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6067
|
+
statusCode: 'number',
|
|
5744
6068
|
body: ListListenersResponseBody,
|
|
5745
6069
|
};
|
|
5746
6070
|
}
|
|
@@ -5802,10 +6126,12 @@ export class ListSpareIpsResponseBody extends $tea.Model {
|
|
|
5802
6126
|
|
|
5803
6127
|
export class ListSpareIpsResponse extends $tea.Model {
|
|
5804
6128
|
headers: { [key: string]: string };
|
|
6129
|
+
statusCode: number;
|
|
5805
6130
|
body: ListSpareIpsResponseBody;
|
|
5806
6131
|
static names(): { [key: string]: string } {
|
|
5807
6132
|
return {
|
|
5808
6133
|
headers: 'headers',
|
|
6134
|
+
statusCode: 'statusCode',
|
|
5809
6135
|
body: 'body',
|
|
5810
6136
|
};
|
|
5811
6137
|
}
|
|
@@ -5813,6 +6139,7 @@ export class ListSpareIpsResponse extends $tea.Model {
|
|
|
5813
6139
|
static types(): { [key: string]: any } {
|
|
5814
6140
|
return {
|
|
5815
6141
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6142
|
+
statusCode: 'number',
|
|
5816
6143
|
body: ListSpareIpsResponseBody,
|
|
5817
6144
|
};
|
|
5818
6145
|
}
|
|
@@ -5880,10 +6207,12 @@ export class ListSystemSecurityPoliciesResponseBody extends $tea.Model {
|
|
|
5880
6207
|
|
|
5881
6208
|
export class ListSystemSecurityPoliciesResponse extends $tea.Model {
|
|
5882
6209
|
headers: { [key: string]: string };
|
|
6210
|
+
statusCode: number;
|
|
5883
6211
|
body: ListSystemSecurityPoliciesResponseBody;
|
|
5884
6212
|
static names(): { [key: string]: string } {
|
|
5885
6213
|
return {
|
|
5886
6214
|
headers: 'headers',
|
|
6215
|
+
statusCode: 'statusCode',
|
|
5887
6216
|
body: 'body',
|
|
5888
6217
|
};
|
|
5889
6218
|
}
|
|
@@ -5891,6 +6220,7 @@ export class ListSystemSecurityPoliciesResponse extends $tea.Model {
|
|
|
5891
6220
|
static types(): { [key: string]: any } {
|
|
5892
6221
|
return {
|
|
5893
6222
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6223
|
+
statusCode: 'number',
|
|
5894
6224
|
body: ListSystemSecurityPoliciesResponseBody,
|
|
5895
6225
|
};
|
|
5896
6226
|
}
|
|
@@ -5955,10 +6285,12 @@ export class RemoveEntriesFromAclResponseBody extends $tea.Model {
|
|
|
5955
6285
|
|
|
5956
6286
|
export class RemoveEntriesFromAclResponse extends $tea.Model {
|
|
5957
6287
|
headers: { [key: string]: string };
|
|
6288
|
+
statusCode: number;
|
|
5958
6289
|
body: RemoveEntriesFromAclResponseBody;
|
|
5959
6290
|
static names(): { [key: string]: string } {
|
|
5960
6291
|
return {
|
|
5961
6292
|
headers: 'headers',
|
|
6293
|
+
statusCode: 'statusCode',
|
|
5962
6294
|
body: 'body',
|
|
5963
6295
|
};
|
|
5964
6296
|
}
|
|
@@ -5966,6 +6298,7 @@ export class RemoveEntriesFromAclResponse extends $tea.Model {
|
|
|
5966
6298
|
static types(): { [key: string]: any } {
|
|
5967
6299
|
return {
|
|
5968
6300
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6301
|
+
statusCode: 'number',
|
|
5969
6302
|
body: RemoveEntriesFromAclResponseBody,
|
|
5970
6303
|
};
|
|
5971
6304
|
}
|
|
@@ -6021,10 +6354,12 @@ export class ReplaceBandwidthPackageResponseBody extends $tea.Model {
|
|
|
6021
6354
|
|
|
6022
6355
|
export class ReplaceBandwidthPackageResponse extends $tea.Model {
|
|
6023
6356
|
headers: { [key: string]: string };
|
|
6357
|
+
statusCode: number;
|
|
6024
6358
|
body: ReplaceBandwidthPackageResponseBody;
|
|
6025
6359
|
static names(): { [key: string]: string } {
|
|
6026
6360
|
return {
|
|
6027
6361
|
headers: 'headers',
|
|
6362
|
+
statusCode: 'statusCode',
|
|
6028
6363
|
body: 'body',
|
|
6029
6364
|
};
|
|
6030
6365
|
}
|
|
@@ -6032,6 +6367,7 @@ export class ReplaceBandwidthPackageResponse extends $tea.Model {
|
|
|
6032
6367
|
static types(): { [key: string]: any } {
|
|
6033
6368
|
return {
|
|
6034
6369
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6370
|
+
statusCode: 'number',
|
|
6035
6371
|
body: ReplaceBandwidthPackageResponseBody,
|
|
6036
6372
|
};
|
|
6037
6373
|
}
|
|
@@ -6102,10 +6438,12 @@ export class UpdateAcceleratorResponseBody extends $tea.Model {
|
|
|
6102
6438
|
|
|
6103
6439
|
export class UpdateAcceleratorResponse extends $tea.Model {
|
|
6104
6440
|
headers: { [key: string]: string };
|
|
6441
|
+
statusCode: number;
|
|
6105
6442
|
body: UpdateAcceleratorResponseBody;
|
|
6106
6443
|
static names(): { [key: string]: string } {
|
|
6107
6444
|
return {
|
|
6108
6445
|
headers: 'headers',
|
|
6446
|
+
statusCode: 'statusCode',
|
|
6109
6447
|
body: 'body',
|
|
6110
6448
|
};
|
|
6111
6449
|
}
|
|
@@ -6113,6 +6451,7 @@ export class UpdateAcceleratorResponse extends $tea.Model {
|
|
|
6113
6451
|
static types(): { [key: string]: any } {
|
|
6114
6452
|
return {
|
|
6115
6453
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6454
|
+
statusCode: 'number',
|
|
6116
6455
|
body: UpdateAcceleratorResponseBody,
|
|
6117
6456
|
};
|
|
6118
6457
|
}
|
|
@@ -6183,10 +6522,12 @@ export class UpdateAcceleratorAutoRenewAttributeResponseBody extends $tea.Model
|
|
|
6183
6522
|
|
|
6184
6523
|
export class UpdateAcceleratorAutoRenewAttributeResponse extends $tea.Model {
|
|
6185
6524
|
headers: { [key: string]: string };
|
|
6525
|
+
statusCode: number;
|
|
6186
6526
|
body: UpdateAcceleratorAutoRenewAttributeResponseBody;
|
|
6187
6527
|
static names(): { [key: string]: string } {
|
|
6188
6528
|
return {
|
|
6189
6529
|
headers: 'headers',
|
|
6530
|
+
statusCode: 'statusCode',
|
|
6190
6531
|
body: 'body',
|
|
6191
6532
|
};
|
|
6192
6533
|
}
|
|
@@ -6194,6 +6535,7 @@ export class UpdateAcceleratorAutoRenewAttributeResponse extends $tea.Model {
|
|
|
6194
6535
|
static types(): { [key: string]: any } {
|
|
6195
6536
|
return {
|
|
6196
6537
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6538
|
+
statusCode: 'number',
|
|
6197
6539
|
body: UpdateAcceleratorAutoRenewAttributeResponseBody,
|
|
6198
6540
|
};
|
|
6199
6541
|
}
|
|
@@ -6246,10 +6588,12 @@ export class UpdateAcceleratorConfirmResponseBody extends $tea.Model {
|
|
|
6246
6588
|
|
|
6247
6589
|
export class UpdateAcceleratorConfirmResponse extends $tea.Model {
|
|
6248
6590
|
headers: { [key: string]: string };
|
|
6591
|
+
statusCode: number;
|
|
6249
6592
|
body: UpdateAcceleratorConfirmResponseBody;
|
|
6250
6593
|
static names(): { [key: string]: string } {
|
|
6251
6594
|
return {
|
|
6252
6595
|
headers: 'headers',
|
|
6596
|
+
statusCode: 'statusCode',
|
|
6253
6597
|
body: 'body',
|
|
6254
6598
|
};
|
|
6255
6599
|
}
|
|
@@ -6257,6 +6601,7 @@ export class UpdateAcceleratorConfirmResponse extends $tea.Model {
|
|
|
6257
6601
|
static types(): { [key: string]: any } {
|
|
6258
6602
|
return {
|
|
6259
6603
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6604
|
+
statusCode: 'number',
|
|
6260
6605
|
body: UpdateAcceleratorConfirmResponseBody,
|
|
6261
6606
|
};
|
|
6262
6607
|
}
|
|
@@ -6321,10 +6666,12 @@ export class UpdateAclAttributeResponseBody extends $tea.Model {
|
|
|
6321
6666
|
|
|
6322
6667
|
export class UpdateAclAttributeResponse extends $tea.Model {
|
|
6323
6668
|
headers: { [key: string]: string };
|
|
6669
|
+
statusCode: number;
|
|
6324
6670
|
body: UpdateAclAttributeResponseBody;
|
|
6325
6671
|
static names(): { [key: string]: string } {
|
|
6326
6672
|
return {
|
|
6327
6673
|
headers: 'headers',
|
|
6674
|
+
statusCode: 'statusCode',
|
|
6328
6675
|
body: 'body',
|
|
6329
6676
|
};
|
|
6330
6677
|
}
|
|
@@ -6332,6 +6679,7 @@ export class UpdateAclAttributeResponse extends $tea.Model {
|
|
|
6332
6679
|
static types(): { [key: string]: any } {
|
|
6333
6680
|
return {
|
|
6334
6681
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6682
|
+
statusCode: 'number',
|
|
6335
6683
|
body: UpdateAclAttributeResponseBody,
|
|
6336
6684
|
};
|
|
6337
6685
|
}
|
|
@@ -6344,20 +6692,26 @@ export class UpdateAclAttributeResponse extends $tea.Model {
|
|
|
6344
6692
|
export class UpdateApplicationMonitorRequest extends $tea.Model {
|
|
6345
6693
|
address?: string;
|
|
6346
6694
|
clientToken?: string;
|
|
6695
|
+
detectEnable?: boolean;
|
|
6347
6696
|
detectThreshold?: number;
|
|
6697
|
+
detectTimes?: number;
|
|
6348
6698
|
listenerId?: string;
|
|
6349
6699
|
optionsJson?: string;
|
|
6350
6700
|
regionId?: string;
|
|
6701
|
+
silenceTime?: number;
|
|
6351
6702
|
taskId?: string;
|
|
6352
6703
|
taskName?: string;
|
|
6353
6704
|
static names(): { [key: string]: string } {
|
|
6354
6705
|
return {
|
|
6355
6706
|
address: 'Address',
|
|
6356
6707
|
clientToken: 'ClientToken',
|
|
6708
|
+
detectEnable: 'DetectEnable',
|
|
6357
6709
|
detectThreshold: 'DetectThreshold',
|
|
6710
|
+
detectTimes: 'DetectTimes',
|
|
6358
6711
|
listenerId: 'ListenerId',
|
|
6359
6712
|
optionsJson: 'OptionsJson',
|
|
6360
6713
|
regionId: 'RegionId',
|
|
6714
|
+
silenceTime: 'SilenceTime',
|
|
6361
6715
|
taskId: 'TaskId',
|
|
6362
6716
|
taskName: 'TaskName',
|
|
6363
6717
|
};
|
|
@@ -6367,10 +6721,13 @@ export class UpdateApplicationMonitorRequest extends $tea.Model {
|
|
|
6367
6721
|
return {
|
|
6368
6722
|
address: 'string',
|
|
6369
6723
|
clientToken: 'string',
|
|
6724
|
+
detectEnable: 'boolean',
|
|
6370
6725
|
detectThreshold: 'number',
|
|
6726
|
+
detectTimes: 'number',
|
|
6371
6727
|
listenerId: 'string',
|
|
6372
6728
|
optionsJson: 'string',
|
|
6373
6729
|
regionId: 'string',
|
|
6730
|
+
silenceTime: 'number',
|
|
6374
6731
|
taskId: 'string',
|
|
6375
6732
|
taskName: 'string',
|
|
6376
6733
|
};
|
|
@@ -6402,10 +6759,12 @@ export class UpdateApplicationMonitorResponseBody extends $tea.Model {
|
|
|
6402
6759
|
|
|
6403
6760
|
export class UpdateApplicationMonitorResponse extends $tea.Model {
|
|
6404
6761
|
headers: { [key: string]: string };
|
|
6762
|
+
statusCode: number;
|
|
6405
6763
|
body: UpdateApplicationMonitorResponseBody;
|
|
6406
6764
|
static names(): { [key: string]: string } {
|
|
6407
6765
|
return {
|
|
6408
6766
|
headers: 'headers',
|
|
6767
|
+
statusCode: 'statusCode',
|
|
6409
6768
|
body: 'body',
|
|
6410
6769
|
};
|
|
6411
6770
|
}
|
|
@@ -6413,6 +6772,7 @@ export class UpdateApplicationMonitorResponse extends $tea.Model {
|
|
|
6413
6772
|
static types(): { [key: string]: any } {
|
|
6414
6773
|
return {
|
|
6415
6774
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6775
|
+
statusCode: 'number',
|
|
6416
6776
|
body: UpdateApplicationMonitorResponseBody,
|
|
6417
6777
|
};
|
|
6418
6778
|
}
|
|
@@ -6422,6 +6782,90 @@ export class UpdateApplicationMonitorResponse extends $tea.Model {
|
|
|
6422
6782
|
}
|
|
6423
6783
|
}
|
|
6424
6784
|
|
|
6785
|
+
export class UpdateBandwidthPackagaAutoRenewAttributeRequest extends $tea.Model {
|
|
6786
|
+
autoRenew?: boolean;
|
|
6787
|
+
autoRenewDuration?: number;
|
|
6788
|
+
clientToken?: string;
|
|
6789
|
+
instanceId?: string;
|
|
6790
|
+
name?: string;
|
|
6791
|
+
regionId?: string;
|
|
6792
|
+
renewalStatus?: string;
|
|
6793
|
+
static names(): { [key: string]: string } {
|
|
6794
|
+
return {
|
|
6795
|
+
autoRenew: 'AutoRenew',
|
|
6796
|
+
autoRenewDuration: 'AutoRenewDuration',
|
|
6797
|
+
clientToken: 'ClientToken',
|
|
6798
|
+
instanceId: 'InstanceId',
|
|
6799
|
+
name: 'Name',
|
|
6800
|
+
regionId: 'RegionId',
|
|
6801
|
+
renewalStatus: 'RenewalStatus',
|
|
6802
|
+
};
|
|
6803
|
+
}
|
|
6804
|
+
|
|
6805
|
+
static types(): { [key: string]: any } {
|
|
6806
|
+
return {
|
|
6807
|
+
autoRenew: 'boolean',
|
|
6808
|
+
autoRenewDuration: 'number',
|
|
6809
|
+
clientToken: 'string',
|
|
6810
|
+
instanceId: 'string',
|
|
6811
|
+
name: 'string',
|
|
6812
|
+
regionId: 'string',
|
|
6813
|
+
renewalStatus: 'string',
|
|
6814
|
+
};
|
|
6815
|
+
}
|
|
6816
|
+
|
|
6817
|
+
constructor(map?: { [key: string]: any }) {
|
|
6818
|
+
super(map);
|
|
6819
|
+
}
|
|
6820
|
+
}
|
|
6821
|
+
|
|
6822
|
+
export class UpdateBandwidthPackagaAutoRenewAttributeResponseBody extends $tea.Model {
|
|
6823
|
+
instanceId?: string;
|
|
6824
|
+
requestId?: string;
|
|
6825
|
+
static names(): { [key: string]: string } {
|
|
6826
|
+
return {
|
|
6827
|
+
instanceId: 'InstanceId',
|
|
6828
|
+
requestId: 'RequestId',
|
|
6829
|
+
};
|
|
6830
|
+
}
|
|
6831
|
+
|
|
6832
|
+
static types(): { [key: string]: any } {
|
|
6833
|
+
return {
|
|
6834
|
+
instanceId: 'string',
|
|
6835
|
+
requestId: 'string',
|
|
6836
|
+
};
|
|
6837
|
+
}
|
|
6838
|
+
|
|
6839
|
+
constructor(map?: { [key: string]: any }) {
|
|
6840
|
+
super(map);
|
|
6841
|
+
}
|
|
6842
|
+
}
|
|
6843
|
+
|
|
6844
|
+
export class UpdateBandwidthPackagaAutoRenewAttributeResponse extends $tea.Model {
|
|
6845
|
+
headers: { [key: string]: string };
|
|
6846
|
+
statusCode: number;
|
|
6847
|
+
body: UpdateBandwidthPackagaAutoRenewAttributeResponseBody;
|
|
6848
|
+
static names(): { [key: string]: string } {
|
|
6849
|
+
return {
|
|
6850
|
+
headers: 'headers',
|
|
6851
|
+
statusCode: 'statusCode',
|
|
6852
|
+
body: 'body',
|
|
6853
|
+
};
|
|
6854
|
+
}
|
|
6855
|
+
|
|
6856
|
+
static types(): { [key: string]: any } {
|
|
6857
|
+
return {
|
|
6858
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6859
|
+
statusCode: 'number',
|
|
6860
|
+
body: UpdateBandwidthPackagaAutoRenewAttributeResponseBody,
|
|
6861
|
+
};
|
|
6862
|
+
}
|
|
6863
|
+
|
|
6864
|
+
constructor(map?: { [key: string]: any }) {
|
|
6865
|
+
super(map);
|
|
6866
|
+
}
|
|
6867
|
+
}
|
|
6868
|
+
|
|
6425
6869
|
export class UpdateBandwidthPackageRequest extends $tea.Model {
|
|
6426
6870
|
autoPay?: boolean;
|
|
6427
6871
|
autoUseCoupon?: boolean;
|
|
@@ -6492,10 +6936,12 @@ export class UpdateBandwidthPackageResponseBody extends $tea.Model {
|
|
|
6492
6936
|
|
|
6493
6937
|
export class UpdateBandwidthPackageResponse extends $tea.Model {
|
|
6494
6938
|
headers: { [key: string]: string };
|
|
6939
|
+
statusCode: number;
|
|
6495
6940
|
body: UpdateBandwidthPackageResponseBody;
|
|
6496
6941
|
static names(): { [key: string]: string } {
|
|
6497
6942
|
return {
|
|
6498
6943
|
headers: 'headers',
|
|
6944
|
+
statusCode: 'statusCode',
|
|
6499
6945
|
body: 'body',
|
|
6500
6946
|
};
|
|
6501
6947
|
}
|
|
@@ -6503,6 +6949,7 @@ export class UpdateBandwidthPackageResponse extends $tea.Model {
|
|
|
6503
6949
|
static types(): { [key: string]: any } {
|
|
6504
6950
|
return {
|
|
6505
6951
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6952
|
+
statusCode: 'number',
|
|
6506
6953
|
body: UpdateBandwidthPackageResponseBody,
|
|
6507
6954
|
};
|
|
6508
6955
|
}
|
|
@@ -6564,10 +7011,12 @@ export class UpdateBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
6564
7011
|
|
|
6565
7012
|
export class UpdateBasicAcceleratorResponse extends $tea.Model {
|
|
6566
7013
|
headers: { [key: string]: string };
|
|
7014
|
+
statusCode: number;
|
|
6567
7015
|
body: UpdateBasicAcceleratorResponseBody;
|
|
6568
7016
|
static names(): { [key: string]: string } {
|
|
6569
7017
|
return {
|
|
6570
7018
|
headers: 'headers',
|
|
7019
|
+
statusCode: 'statusCode',
|
|
6571
7020
|
body: 'body',
|
|
6572
7021
|
};
|
|
6573
7022
|
}
|
|
@@ -6575,6 +7024,7 @@ export class UpdateBasicAcceleratorResponse extends $tea.Model {
|
|
|
6575
7024
|
static types(): { [key: string]: any } {
|
|
6576
7025
|
return {
|
|
6577
7026
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7027
|
+
statusCode: 'number',
|
|
6578
7028
|
body: UpdateBasicAcceleratorResponseBody,
|
|
6579
7029
|
};
|
|
6580
7030
|
}
|
|
@@ -6642,10 +7092,12 @@ export class UpdateBasicEndpointGroupResponseBody extends $tea.Model {
|
|
|
6642
7092
|
|
|
6643
7093
|
export class UpdateBasicEndpointGroupResponse extends $tea.Model {
|
|
6644
7094
|
headers: { [key: string]: string };
|
|
7095
|
+
statusCode: number;
|
|
6645
7096
|
body: UpdateBasicEndpointGroupResponseBody;
|
|
6646
7097
|
static names(): { [key: string]: string } {
|
|
6647
7098
|
return {
|
|
6648
7099
|
headers: 'headers',
|
|
7100
|
+
statusCode: 'statusCode',
|
|
6649
7101
|
body: 'body',
|
|
6650
7102
|
};
|
|
6651
7103
|
}
|
|
@@ -6653,6 +7105,7 @@ export class UpdateBasicEndpointGroupResponse extends $tea.Model {
|
|
|
6653
7105
|
static types(): { [key: string]: any } {
|
|
6654
7106
|
return {
|
|
6655
7107
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7108
|
+
statusCode: 'number',
|
|
6656
7109
|
body: UpdateBasicEndpointGroupResponseBody,
|
|
6657
7110
|
};
|
|
6658
7111
|
}
|
|
@@ -6747,10 +7200,12 @@ export class UpdateEndpointGroupResponseBody extends $tea.Model {
|
|
|
6747
7200
|
|
|
6748
7201
|
export class UpdateEndpointGroupResponse extends $tea.Model {
|
|
6749
7202
|
headers: { [key: string]: string };
|
|
7203
|
+
statusCode: number;
|
|
6750
7204
|
body: UpdateEndpointGroupResponseBody;
|
|
6751
7205
|
static names(): { [key: string]: string } {
|
|
6752
7206
|
return {
|
|
6753
7207
|
headers: 'headers',
|
|
7208
|
+
statusCode: 'statusCode',
|
|
6754
7209
|
body: 'body',
|
|
6755
7210
|
};
|
|
6756
7211
|
}
|
|
@@ -6758,6 +7213,7 @@ export class UpdateEndpointGroupResponse extends $tea.Model {
|
|
|
6758
7213
|
static types(): { [key: string]: any } {
|
|
6759
7214
|
return {
|
|
6760
7215
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7216
|
+
statusCode: 'number',
|
|
6761
7217
|
body: UpdateEndpointGroupResponseBody,
|
|
6762
7218
|
};
|
|
6763
7219
|
}
|
|
@@ -6819,10 +7275,12 @@ export class UpdateEndpointGroupAttributeResponseBody extends $tea.Model {
|
|
|
6819
7275
|
|
|
6820
7276
|
export class UpdateEndpointGroupAttributeResponse extends $tea.Model {
|
|
6821
7277
|
headers: { [key: string]: string };
|
|
7278
|
+
statusCode: number;
|
|
6822
7279
|
body: UpdateEndpointGroupAttributeResponseBody;
|
|
6823
7280
|
static names(): { [key: string]: string } {
|
|
6824
7281
|
return {
|
|
6825
7282
|
headers: 'headers',
|
|
7283
|
+
statusCode: 'statusCode',
|
|
6826
7284
|
body: 'body',
|
|
6827
7285
|
};
|
|
6828
7286
|
}
|
|
@@ -6830,6 +7288,7 @@ export class UpdateEndpointGroupAttributeResponse extends $tea.Model {
|
|
|
6830
7288
|
static types(): { [key: string]: any } {
|
|
6831
7289
|
return {
|
|
6832
7290
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7291
|
+
statusCode: 'number',
|
|
6833
7292
|
body: UpdateEndpointGroupAttributeResponseBody,
|
|
6834
7293
|
};
|
|
6835
7294
|
}
|
|
@@ -6894,10 +7353,12 @@ export class UpdateEndpointGroupsResponseBody extends $tea.Model {
|
|
|
6894
7353
|
|
|
6895
7354
|
export class UpdateEndpointGroupsResponse extends $tea.Model {
|
|
6896
7355
|
headers: { [key: string]: string };
|
|
7356
|
+
statusCode: number;
|
|
6897
7357
|
body: UpdateEndpointGroupsResponseBody;
|
|
6898
7358
|
static names(): { [key: string]: string } {
|
|
6899
7359
|
return {
|
|
6900
7360
|
headers: 'headers',
|
|
7361
|
+
statusCode: 'statusCode',
|
|
6901
7362
|
body: 'body',
|
|
6902
7363
|
};
|
|
6903
7364
|
}
|
|
@@ -6905,6 +7366,7 @@ export class UpdateEndpointGroupsResponse extends $tea.Model {
|
|
|
6905
7366
|
static types(): { [key: string]: any } {
|
|
6906
7367
|
return {
|
|
6907
7368
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7369
|
+
statusCode: 'number',
|
|
6908
7370
|
body: UpdateEndpointGroupsResponseBody,
|
|
6909
7371
|
};
|
|
6910
7372
|
}
|
|
@@ -6969,10 +7431,12 @@ export class UpdateForwardingRulesResponseBody extends $tea.Model {
|
|
|
6969
7431
|
|
|
6970
7432
|
export class UpdateForwardingRulesResponse extends $tea.Model {
|
|
6971
7433
|
headers: { [key: string]: string };
|
|
7434
|
+
statusCode: number;
|
|
6972
7435
|
body: UpdateForwardingRulesResponseBody;
|
|
6973
7436
|
static names(): { [key: string]: string } {
|
|
6974
7437
|
return {
|
|
6975
7438
|
headers: 'headers',
|
|
7439
|
+
statusCode: 'statusCode',
|
|
6976
7440
|
body: 'body',
|
|
6977
7441
|
};
|
|
6978
7442
|
}
|
|
@@ -6980,6 +7444,7 @@ export class UpdateForwardingRulesResponse extends $tea.Model {
|
|
|
6980
7444
|
static types(): { [key: string]: any } {
|
|
6981
7445
|
return {
|
|
6982
7446
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7447
|
+
statusCode: 'number',
|
|
6983
7448
|
body: UpdateForwardingRulesResponseBody,
|
|
6984
7449
|
};
|
|
6985
7450
|
}
|
|
@@ -7038,10 +7503,12 @@ export class UpdateIpSetResponseBody extends $tea.Model {
|
|
|
7038
7503
|
|
|
7039
7504
|
export class UpdateIpSetResponse extends $tea.Model {
|
|
7040
7505
|
headers: { [key: string]: string };
|
|
7506
|
+
statusCode: number;
|
|
7041
7507
|
body: UpdateIpSetResponseBody;
|
|
7042
7508
|
static names(): { [key: string]: string } {
|
|
7043
7509
|
return {
|
|
7044
7510
|
headers: 'headers',
|
|
7511
|
+
statusCode: 'statusCode',
|
|
7045
7512
|
body: 'body',
|
|
7046
7513
|
};
|
|
7047
7514
|
}
|
|
@@ -7049,6 +7516,7 @@ export class UpdateIpSetResponse extends $tea.Model {
|
|
|
7049
7516
|
static types(): { [key: string]: any } {
|
|
7050
7517
|
return {
|
|
7051
7518
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7519
|
+
statusCode: 'number',
|
|
7052
7520
|
body: UpdateIpSetResponseBody,
|
|
7053
7521
|
};
|
|
7054
7522
|
}
|
|
@@ -7101,10 +7569,12 @@ export class UpdateIpSetsResponseBody extends $tea.Model {
|
|
|
7101
7569
|
|
|
7102
7570
|
export class UpdateIpSetsResponse extends $tea.Model {
|
|
7103
7571
|
headers: { [key: string]: string };
|
|
7572
|
+
statusCode: number;
|
|
7104
7573
|
body: UpdateIpSetsResponseBody;
|
|
7105
7574
|
static names(): { [key: string]: string } {
|
|
7106
7575
|
return {
|
|
7107
7576
|
headers: 'headers',
|
|
7577
|
+
statusCode: 'statusCode',
|
|
7108
7578
|
body: 'body',
|
|
7109
7579
|
};
|
|
7110
7580
|
}
|
|
@@ -7112,6 +7582,7 @@ export class UpdateIpSetsResponse extends $tea.Model {
|
|
|
7112
7582
|
static types(): { [key: string]: any } {
|
|
7113
7583
|
return {
|
|
7114
7584
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7585
|
+
statusCode: 'number',
|
|
7115
7586
|
body: UpdateIpSetsResponseBody,
|
|
7116
7587
|
};
|
|
7117
7588
|
}
|
|
@@ -7197,10 +7668,12 @@ export class UpdateListenerResponseBody extends $tea.Model {
|
|
|
7197
7668
|
|
|
7198
7669
|
export class UpdateListenerResponse extends $tea.Model {
|
|
7199
7670
|
headers: { [key: string]: string };
|
|
7671
|
+
statusCode: number;
|
|
7200
7672
|
body: UpdateListenerResponseBody;
|
|
7201
7673
|
static names(): { [key: string]: string } {
|
|
7202
7674
|
return {
|
|
7203
7675
|
headers: 'headers',
|
|
7676
|
+
statusCode: 'statusCode',
|
|
7204
7677
|
body: 'body',
|
|
7205
7678
|
};
|
|
7206
7679
|
}
|
|
@@ -7208,6 +7681,7 @@ export class UpdateListenerResponse extends $tea.Model {
|
|
|
7208
7681
|
static types(): { [key: string]: any } {
|
|
7209
7682
|
return {
|
|
7210
7683
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7684
|
+
statusCode: 'number',
|
|
7211
7685
|
body: UpdateListenerResponseBody,
|
|
7212
7686
|
};
|
|
7213
7687
|
}
|
|
@@ -7261,6 +7735,25 @@ export class AssociateAdditionalCertificatesWithListenerRequestCertificates exte
|
|
|
7261
7735
|
}
|
|
7262
7736
|
}
|
|
7263
7737
|
|
|
7738
|
+
export class CreateAcceleratorRequestIpSetConfig extends $tea.Model {
|
|
7739
|
+
accessMode?: string;
|
|
7740
|
+
static names(): { [key: string]: string } {
|
|
7741
|
+
return {
|
|
7742
|
+
accessMode: 'AccessMode',
|
|
7743
|
+
};
|
|
7744
|
+
}
|
|
7745
|
+
|
|
7746
|
+
static types(): { [key: string]: any } {
|
|
7747
|
+
return {
|
|
7748
|
+
accessMode: 'string',
|
|
7749
|
+
};
|
|
7750
|
+
}
|
|
7751
|
+
|
|
7752
|
+
constructor(map?: { [key: string]: any }) {
|
|
7753
|
+
super(map);
|
|
7754
|
+
}
|
|
7755
|
+
}
|
|
7756
|
+
|
|
7264
7757
|
export class CreateAclRequestAclEntries extends $tea.Model {
|
|
7265
7758
|
entry?: string;
|
|
7266
7759
|
entryDescription?: string;
|
|
@@ -7486,11 +7979,13 @@ export class CreateForwardingRulesRequestForwardingRulesRuleActions extends $tea
|
|
|
7486
7979
|
forwardGroupConfig?: CreateForwardingRulesRequestForwardingRulesRuleActionsForwardGroupConfig;
|
|
7487
7980
|
order?: number;
|
|
7488
7981
|
ruleActionType?: string;
|
|
7982
|
+
ruleActionValue?: string;
|
|
7489
7983
|
static names(): { [key: string]: string } {
|
|
7490
7984
|
return {
|
|
7491
7985
|
forwardGroupConfig: 'ForwardGroupConfig',
|
|
7492
7986
|
order: 'Order',
|
|
7493
7987
|
ruleActionType: 'RuleActionType',
|
|
7988
|
+
ruleActionValue: 'RuleActionValue',
|
|
7494
7989
|
};
|
|
7495
7990
|
}
|
|
7496
7991
|
|
|
@@ -7499,6 +7994,7 @@ export class CreateForwardingRulesRequestForwardingRulesRuleActions extends $tea
|
|
|
7499
7994
|
forwardGroupConfig: CreateForwardingRulesRequestForwardingRulesRuleActionsForwardGroupConfig,
|
|
7500
7995
|
order: 'number',
|
|
7501
7996
|
ruleActionType: 'string',
|
|
7997
|
+
ruleActionValue: 'string',
|
|
7502
7998
|
};
|
|
7503
7999
|
}
|
|
7504
8000
|
|
|
@@ -7549,11 +8045,13 @@ export class CreateForwardingRulesRequestForwardingRulesRuleConditions extends $
|
|
|
7549
8045
|
hostConfig?: CreateForwardingRulesRequestForwardingRulesRuleConditionsHostConfig;
|
|
7550
8046
|
pathConfig?: CreateForwardingRulesRequestForwardingRulesRuleConditionsPathConfig;
|
|
7551
8047
|
ruleConditionType?: string;
|
|
8048
|
+
ruleConditionValue?: string;
|
|
7552
8049
|
static names(): { [key: string]: string } {
|
|
7553
8050
|
return {
|
|
7554
8051
|
hostConfig: 'HostConfig',
|
|
7555
8052
|
pathConfig: 'PathConfig',
|
|
7556
8053
|
ruleConditionType: 'RuleConditionType',
|
|
8054
|
+
ruleConditionValue: 'RuleConditionValue',
|
|
7557
8055
|
};
|
|
7558
8056
|
}
|
|
7559
8057
|
|
|
@@ -7562,6 +8060,7 @@ export class CreateForwardingRulesRequestForwardingRulesRuleConditions extends $
|
|
|
7562
8060
|
hostConfig: CreateForwardingRulesRequestForwardingRulesRuleConditionsHostConfig,
|
|
7563
8061
|
pathConfig: CreateForwardingRulesRequestForwardingRulesRuleConditionsPathConfig,
|
|
7564
8062
|
ruleConditionType: 'string',
|
|
8063
|
+
ruleConditionValue: 'string',
|
|
7565
8064
|
};
|
|
7566
8065
|
}
|
|
7567
8066
|
|
|
@@ -7575,12 +8074,14 @@ export class CreateForwardingRulesRequestForwardingRules extends $tea.Model {
|
|
|
7575
8074
|
priority?: number;
|
|
7576
8075
|
ruleActions?: CreateForwardingRulesRequestForwardingRulesRuleActions[];
|
|
7577
8076
|
ruleConditions?: CreateForwardingRulesRequestForwardingRulesRuleConditions[];
|
|
8077
|
+
ruleDirection?: string;
|
|
7578
8078
|
static names(): { [key: string]: string } {
|
|
7579
8079
|
return {
|
|
7580
8080
|
forwardingRuleName: 'ForwardingRuleName',
|
|
7581
8081
|
priority: 'Priority',
|
|
7582
8082
|
ruleActions: 'RuleActions',
|
|
7583
8083
|
ruleConditions: 'RuleConditions',
|
|
8084
|
+
ruleDirection: 'RuleDirection',
|
|
7584
8085
|
};
|
|
7585
8086
|
}
|
|
7586
8087
|
|
|
@@ -7590,6 +8091,7 @@ export class CreateForwardingRulesRequestForwardingRules extends $tea.Model {
|
|
|
7590
8091
|
priority: 'number',
|
|
7591
8092
|
ruleActions: { 'type': 'array', 'itemType': CreateForwardingRulesRequestForwardingRulesRuleActions },
|
|
7592
8093
|
ruleConditions: { 'type': 'array', 'itemType': CreateForwardingRulesRequestForwardingRulesRuleConditions },
|
|
8094
|
+
ruleDirection: 'string',
|
|
7593
8095
|
};
|
|
7594
8096
|
}
|
|
7595
8097
|
|
|
@@ -7805,6 +8307,25 @@ export class DescribeAcceleratorResponseBodyCrossDomainBandwidthPackage extends
|
|
|
7805
8307
|
}
|
|
7806
8308
|
}
|
|
7807
8309
|
|
|
8310
|
+
export class DescribeAcceleratorResponseBodyIpSetConfig extends $tea.Model {
|
|
8311
|
+
accessMode?: string;
|
|
8312
|
+
static names(): { [key: string]: string } {
|
|
8313
|
+
return {
|
|
8314
|
+
accessMode: 'AccessMode',
|
|
8315
|
+
};
|
|
8316
|
+
}
|
|
8317
|
+
|
|
8318
|
+
static types(): { [key: string]: any } {
|
|
8319
|
+
return {
|
|
8320
|
+
accessMode: 'string',
|
|
8321
|
+
};
|
|
8322
|
+
}
|
|
8323
|
+
|
|
8324
|
+
constructor(map?: { [key: string]: any }) {
|
|
8325
|
+
super(map);
|
|
8326
|
+
}
|
|
8327
|
+
}
|
|
8328
|
+
|
|
7808
8329
|
export class DescribeApplicationMonitorResponseBodyIspCityList extends $tea.Model {
|
|
7809
8330
|
city?: string;
|
|
7810
8331
|
cityName?: string;
|
|
@@ -8283,6 +8804,25 @@ export class ListAcceleratorsResponseBodyAcceleratorsCrossDomainBandwidthPackage
|
|
|
8283
8804
|
}
|
|
8284
8805
|
}
|
|
8285
8806
|
|
|
8807
|
+
export class ListAcceleratorsResponseBodyAcceleratorsIpSetConfig extends $tea.Model {
|
|
8808
|
+
accessMode?: string;
|
|
8809
|
+
static names(): { [key: string]: string } {
|
|
8810
|
+
return {
|
|
8811
|
+
accessMode: 'AccessMode',
|
|
8812
|
+
};
|
|
8813
|
+
}
|
|
8814
|
+
|
|
8815
|
+
static types(): { [key: string]: any } {
|
|
8816
|
+
return {
|
|
8817
|
+
accessMode: 'string',
|
|
8818
|
+
};
|
|
8819
|
+
}
|
|
8820
|
+
|
|
8821
|
+
constructor(map?: { [key: string]: any }) {
|
|
8822
|
+
super(map);
|
|
8823
|
+
}
|
|
8824
|
+
}
|
|
8825
|
+
|
|
8286
8826
|
export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
8287
8827
|
acceleratorId?: string;
|
|
8288
8828
|
bandwidth?: number;
|
|
@@ -8295,6 +8835,7 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
8295
8835
|
dnsName?: string;
|
|
8296
8836
|
expiredTime?: number;
|
|
8297
8837
|
instanceChargeType?: string;
|
|
8838
|
+
ipSetConfig?: ListAcceleratorsResponseBodyAcceleratorsIpSetConfig;
|
|
8298
8839
|
name?: string;
|
|
8299
8840
|
regionId?: string;
|
|
8300
8841
|
secondDnsName?: string;
|
|
@@ -8314,6 +8855,7 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
8314
8855
|
dnsName: 'DnsName',
|
|
8315
8856
|
expiredTime: 'ExpiredTime',
|
|
8316
8857
|
instanceChargeType: 'InstanceChargeType',
|
|
8858
|
+
ipSetConfig: 'IpSetConfig',
|
|
8317
8859
|
name: 'Name',
|
|
8318
8860
|
regionId: 'RegionId',
|
|
8319
8861
|
secondDnsName: 'SecondDnsName',
|
|
@@ -8336,6 +8878,7 @@ export class ListAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
8336
8878
|
dnsName: 'string',
|
|
8337
8879
|
expiredTime: 'number',
|
|
8338
8880
|
instanceChargeType: 'string',
|
|
8881
|
+
ipSetConfig: ListAcceleratorsResponseBodyAcceleratorsIpSetConfig,
|
|
8339
8882
|
name: 'string',
|
|
8340
8883
|
regionId: 'string',
|
|
8341
8884
|
secondDnsName: 'string',
|
|
@@ -8381,9 +8924,12 @@ export class ListAclsResponseBodyAcls extends $tea.Model {
|
|
|
8381
8924
|
export class ListApplicationMonitorResponseBodyApplicationMonitors extends $tea.Model {
|
|
8382
8925
|
acceleratorId?: string;
|
|
8383
8926
|
address?: string;
|
|
8927
|
+
detectEnable?: boolean;
|
|
8384
8928
|
detectThreshold?: number;
|
|
8929
|
+
detectTimes?: number;
|
|
8385
8930
|
listenerId?: string;
|
|
8386
8931
|
optionsJson?: string;
|
|
8932
|
+
silenceTime?: number;
|
|
8387
8933
|
state?: string;
|
|
8388
8934
|
taskId?: string;
|
|
8389
8935
|
taskName?: string;
|
|
@@ -8391,9 +8937,12 @@ export class ListApplicationMonitorResponseBodyApplicationMonitors extends $tea.
|
|
|
8391
8937
|
return {
|
|
8392
8938
|
acceleratorId: 'AcceleratorId',
|
|
8393
8939
|
address: 'Address',
|
|
8940
|
+
detectEnable: 'DetectEnable',
|
|
8394
8941
|
detectThreshold: 'DetectThreshold',
|
|
8942
|
+
detectTimes: 'DetectTimes',
|
|
8395
8943
|
listenerId: 'ListenerId',
|
|
8396
8944
|
optionsJson: 'OptionsJson',
|
|
8945
|
+
silenceTime: 'SilenceTime',
|
|
8397
8946
|
state: 'State',
|
|
8398
8947
|
taskId: 'TaskId',
|
|
8399
8948
|
taskName: 'TaskName',
|
|
@@ -8404,9 +8953,12 @@ export class ListApplicationMonitorResponseBodyApplicationMonitors extends $tea.
|
|
|
8404
8953
|
return {
|
|
8405
8954
|
acceleratorId: 'string',
|
|
8406
8955
|
address: 'string',
|
|
8956
|
+
detectEnable: 'boolean',
|
|
8407
8957
|
detectThreshold: 'number',
|
|
8958
|
+
detectTimes: 'number',
|
|
8408
8959
|
listenerId: 'string',
|
|
8409
8960
|
optionsJson: 'string',
|
|
8961
|
+
silenceTime: 'number',
|
|
8410
8962
|
state: 'string',
|
|
8411
8963
|
taskId: 'string',
|
|
8412
8964
|
taskName: 'string',
|
|
@@ -8420,20 +8972,26 @@ export class ListApplicationMonitorResponseBodyApplicationMonitors extends $tea.
|
|
|
8420
8972
|
|
|
8421
8973
|
export class ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDetectResultList extends $tea.Model {
|
|
8422
8974
|
acceleratorId?: string;
|
|
8975
|
+
content?: string;
|
|
8423
8976
|
detail?: string;
|
|
8977
|
+
detectTime?: string;
|
|
8424
8978
|
diagStatus?: string;
|
|
8425
8979
|
listenerId?: string;
|
|
8426
8980
|
port?: string;
|
|
8427
8981
|
protocol?: string;
|
|
8982
|
+
statusCode?: string;
|
|
8428
8983
|
taskId?: string;
|
|
8429
8984
|
static names(): { [key: string]: string } {
|
|
8430
8985
|
return {
|
|
8431
8986
|
acceleratorId: 'AcceleratorId',
|
|
8987
|
+
content: 'Content',
|
|
8432
8988
|
detail: 'Detail',
|
|
8989
|
+
detectTime: 'DetectTime',
|
|
8433
8990
|
diagStatus: 'DiagStatus',
|
|
8434
8991
|
listenerId: 'ListenerId',
|
|
8435
8992
|
port: 'Port',
|
|
8436
8993
|
protocol: 'Protocol',
|
|
8994
|
+
statusCode: 'StatusCode',
|
|
8437
8995
|
taskId: 'TaskId',
|
|
8438
8996
|
};
|
|
8439
8997
|
}
|
|
@@ -8441,11 +8999,14 @@ export class ListApplicationMonitorDetectResultResponseBodyApplicationMonitorDet
|
|
|
8441
8999
|
static types(): { [key: string]: any } {
|
|
8442
9000
|
return {
|
|
8443
9001
|
acceleratorId: 'string',
|
|
9002
|
+
content: 'string',
|
|
8444
9003
|
detail: 'string',
|
|
9004
|
+
detectTime: 'string',
|
|
8445
9005
|
diagStatus: 'string',
|
|
8446
9006
|
listenerId: 'string',
|
|
8447
9007
|
port: 'string',
|
|
8448
9008
|
protocol: 'string',
|
|
9009
|
+
statusCode: 'string',
|
|
8449
9010
|
taskId: 'string',
|
|
8450
9011
|
};
|
|
8451
9012
|
}
|
|
@@ -8941,11 +9502,13 @@ export class ListForwardingRulesResponseBodyForwardingRulesRuleActions extends $
|
|
|
8941
9502
|
forwardGroupConfig?: ListForwardingRulesResponseBodyForwardingRulesRuleActionsForwardGroupConfig;
|
|
8942
9503
|
order?: number;
|
|
8943
9504
|
ruleActionType?: string;
|
|
9505
|
+
ruleActionValue?: string;
|
|
8944
9506
|
static names(): { [key: string]: string } {
|
|
8945
9507
|
return {
|
|
8946
9508
|
forwardGroupConfig: 'ForwardGroupConfig',
|
|
8947
9509
|
order: 'Order',
|
|
8948
9510
|
ruleActionType: 'RuleActionType',
|
|
9511
|
+
ruleActionValue: 'RuleActionValue',
|
|
8949
9512
|
};
|
|
8950
9513
|
}
|
|
8951
9514
|
|
|
@@ -8954,6 +9517,7 @@ export class ListForwardingRulesResponseBodyForwardingRulesRuleActions extends $
|
|
|
8954
9517
|
forwardGroupConfig: ListForwardingRulesResponseBodyForwardingRulesRuleActionsForwardGroupConfig,
|
|
8955
9518
|
order: 'number',
|
|
8956
9519
|
ruleActionType: 'string',
|
|
9520
|
+
ruleActionValue: 'string',
|
|
8957
9521
|
};
|
|
8958
9522
|
}
|
|
8959
9523
|
|
|
@@ -9004,11 +9568,13 @@ export class ListForwardingRulesResponseBodyForwardingRulesRuleConditions extend
|
|
|
9004
9568
|
hostConfig?: ListForwardingRulesResponseBodyForwardingRulesRuleConditionsHostConfig;
|
|
9005
9569
|
pathConfig?: ListForwardingRulesResponseBodyForwardingRulesRuleConditionsPathConfig;
|
|
9006
9570
|
ruleConditionType?: string;
|
|
9571
|
+
ruleConditionValue?: string;
|
|
9007
9572
|
static names(): { [key: string]: string } {
|
|
9008
9573
|
return {
|
|
9009
9574
|
hostConfig: 'HostConfig',
|
|
9010
9575
|
pathConfig: 'PathConfig',
|
|
9011
9576
|
ruleConditionType: 'RuleConditionType',
|
|
9577
|
+
ruleConditionValue: 'RuleConditionValue',
|
|
9012
9578
|
};
|
|
9013
9579
|
}
|
|
9014
9580
|
|
|
@@ -9017,6 +9583,7 @@ export class ListForwardingRulesResponseBodyForwardingRulesRuleConditions extend
|
|
|
9017
9583
|
hostConfig: ListForwardingRulesResponseBodyForwardingRulesRuleConditionsHostConfig,
|
|
9018
9584
|
pathConfig: ListForwardingRulesResponseBodyForwardingRulesRuleConditionsPathConfig,
|
|
9019
9585
|
ruleConditionType: 'string',
|
|
9586
|
+
ruleConditionValue: 'string',
|
|
9020
9587
|
};
|
|
9021
9588
|
}
|
|
9022
9589
|
|
|
@@ -9026,6 +9593,7 @@ export class ListForwardingRulesResponseBodyForwardingRulesRuleConditions extend
|
|
|
9026
9593
|
}
|
|
9027
9594
|
|
|
9028
9595
|
export class ListForwardingRulesResponseBodyForwardingRules extends $tea.Model {
|
|
9596
|
+
forwardingRuleDirection?: string;
|
|
9029
9597
|
forwardingRuleId?: string;
|
|
9030
9598
|
forwardingRuleName?: string;
|
|
9031
9599
|
forwardingRuleStatus?: string;
|
|
@@ -9035,6 +9603,7 @@ export class ListForwardingRulesResponseBodyForwardingRules extends $tea.Model {
|
|
|
9035
9603
|
ruleConditions?: ListForwardingRulesResponseBodyForwardingRulesRuleConditions[];
|
|
9036
9604
|
static names(): { [key: string]: string } {
|
|
9037
9605
|
return {
|
|
9606
|
+
forwardingRuleDirection: 'ForwardingRuleDirection',
|
|
9038
9607
|
forwardingRuleId: 'ForwardingRuleId',
|
|
9039
9608
|
forwardingRuleName: 'ForwardingRuleName',
|
|
9040
9609
|
forwardingRuleStatus: 'ForwardingRuleStatus',
|
|
@@ -9047,6 +9616,7 @@ export class ListForwardingRulesResponseBodyForwardingRules extends $tea.Model {
|
|
|
9047
9616
|
|
|
9048
9617
|
static types(): { [key: string]: any } {
|
|
9049
9618
|
return {
|
|
9619
|
+
forwardingRuleDirection: 'string',
|
|
9050
9620
|
forwardingRuleId: 'string',
|
|
9051
9621
|
forwardingRuleName: 'string',
|
|
9052
9622
|
forwardingRuleStatus: 'string',
|
|
@@ -9542,11 +10112,13 @@ export class UpdateForwardingRulesRequestForwardingRulesRuleActions extends $tea
|
|
|
9542
10112
|
forwardGroupConfig?: UpdateForwardingRulesRequestForwardingRulesRuleActionsForwardGroupConfig;
|
|
9543
10113
|
order?: number;
|
|
9544
10114
|
ruleActionType?: string;
|
|
10115
|
+
ruleActionValue?: string;
|
|
9545
10116
|
static names(): { [key: string]: string } {
|
|
9546
10117
|
return {
|
|
9547
10118
|
forwardGroupConfig: 'ForwardGroupConfig',
|
|
9548
10119
|
order: 'Order',
|
|
9549
10120
|
ruleActionType: 'RuleActionType',
|
|
10121
|
+
ruleActionValue: 'RuleActionValue',
|
|
9550
10122
|
};
|
|
9551
10123
|
}
|
|
9552
10124
|
|
|
@@ -9555,6 +10127,7 @@ export class UpdateForwardingRulesRequestForwardingRulesRuleActions extends $tea
|
|
|
9555
10127
|
forwardGroupConfig: UpdateForwardingRulesRequestForwardingRulesRuleActionsForwardGroupConfig,
|
|
9556
10128
|
order: 'number',
|
|
9557
10129
|
ruleActionType: 'string',
|
|
10130
|
+
ruleActionValue: 'string',
|
|
9558
10131
|
};
|
|
9559
10132
|
}
|
|
9560
10133
|
|
|
@@ -9605,11 +10178,13 @@ export class UpdateForwardingRulesRequestForwardingRulesRuleConditions extends $
|
|
|
9605
10178
|
hostConfig?: UpdateForwardingRulesRequestForwardingRulesRuleConditionsHostConfig;
|
|
9606
10179
|
pathConfig?: UpdateForwardingRulesRequestForwardingRulesRuleConditionsPathConfig;
|
|
9607
10180
|
ruleConditionType?: string;
|
|
10181
|
+
ruleConditionValue?: string;
|
|
9608
10182
|
static names(): { [key: string]: string } {
|
|
9609
10183
|
return {
|
|
9610
10184
|
hostConfig: 'HostConfig',
|
|
9611
10185
|
pathConfig: 'PathConfig',
|
|
9612
10186
|
ruleConditionType: 'RuleConditionType',
|
|
10187
|
+
ruleConditionValue: 'RuleConditionValue',
|
|
9613
10188
|
};
|
|
9614
10189
|
}
|
|
9615
10190
|
|
|
@@ -9618,6 +10193,7 @@ export class UpdateForwardingRulesRequestForwardingRulesRuleConditions extends $
|
|
|
9618
10193
|
hostConfig: UpdateForwardingRulesRequestForwardingRulesRuleConditionsHostConfig,
|
|
9619
10194
|
pathConfig: UpdateForwardingRulesRequestForwardingRulesRuleConditionsPathConfig,
|
|
9620
10195
|
ruleConditionType: 'string',
|
|
10196
|
+
ruleConditionValue: 'string',
|
|
9621
10197
|
};
|
|
9622
10198
|
}
|
|
9623
10199
|
|
|
@@ -9632,6 +10208,7 @@ export class UpdateForwardingRulesRequestForwardingRules extends $tea.Model {
|
|
|
9632
10208
|
priority?: number;
|
|
9633
10209
|
ruleActions?: UpdateForwardingRulesRequestForwardingRulesRuleActions[];
|
|
9634
10210
|
ruleConditions?: UpdateForwardingRulesRequestForwardingRulesRuleConditions[];
|
|
10211
|
+
ruleDirection?: string;
|
|
9635
10212
|
static names(): { [key: string]: string } {
|
|
9636
10213
|
return {
|
|
9637
10214
|
forwardingRuleId: 'ForwardingRuleId',
|
|
@@ -9639,6 +10216,7 @@ export class UpdateForwardingRulesRequestForwardingRules extends $tea.Model {
|
|
|
9639
10216
|
priority: 'Priority',
|
|
9640
10217
|
ruleActions: 'RuleActions',
|
|
9641
10218
|
ruleConditions: 'RuleConditions',
|
|
10219
|
+
ruleDirection: 'RuleDirection',
|
|
9642
10220
|
};
|
|
9643
10221
|
}
|
|
9644
10222
|
|
|
@@ -9649,6 +10227,7 @@ export class UpdateForwardingRulesRequestForwardingRules extends $tea.Model {
|
|
|
9649
10227
|
priority: 'number',
|
|
9650
10228
|
ruleActions: { 'type': 'array', 'itemType': UpdateForwardingRulesRequestForwardingRulesRuleActions },
|
|
9651
10229
|
ruleConditions: { 'type': 'array', 'itemType': UpdateForwardingRulesRequestForwardingRulesRuleConditions },
|
|
10230
|
+
ruleDirection: 'string',
|
|
9652
10231
|
};
|
|
9653
10232
|
}
|
|
9654
10233
|
|
|
@@ -10210,6 +10789,10 @@ export default class Client extends OpenApi {
|
|
|
10210
10789
|
query["Duration"] = request.duration;
|
|
10211
10790
|
}
|
|
10212
10791
|
|
|
10792
|
+
if (!Util.isUnset($tea.toMap(request.ipSetConfig))) {
|
|
10793
|
+
query["IpSetConfig"] = request.ipSetConfig;
|
|
10794
|
+
}
|
|
10795
|
+
|
|
10213
10796
|
if (!Util.isUnset(request.name)) {
|
|
10214
10797
|
query["Name"] = request.name;
|
|
10215
10798
|
}
|
|
@@ -10312,10 +10895,18 @@ export default class Client extends OpenApi {
|
|
|
10312
10895
|
query["ClientToken"] = request.clientToken;
|
|
10313
10896
|
}
|
|
10314
10897
|
|
|
10898
|
+
if (!Util.isUnset(request.detectEnable)) {
|
|
10899
|
+
query["DetectEnable"] = request.detectEnable;
|
|
10900
|
+
}
|
|
10901
|
+
|
|
10315
10902
|
if (!Util.isUnset(request.detectThreshold)) {
|
|
10316
10903
|
query["DetectThreshold"] = request.detectThreshold;
|
|
10317
10904
|
}
|
|
10318
10905
|
|
|
10906
|
+
if (!Util.isUnset(request.detectTimes)) {
|
|
10907
|
+
query["DetectTimes"] = request.detectTimes;
|
|
10908
|
+
}
|
|
10909
|
+
|
|
10319
10910
|
if (!Util.isUnset(request.listenerId)) {
|
|
10320
10911
|
query["ListenerId"] = request.listenerId;
|
|
10321
10912
|
}
|
|
@@ -10328,6 +10919,10 @@ export default class Client extends OpenApi {
|
|
|
10328
10919
|
query["RegionId"] = request.regionId;
|
|
10329
10920
|
}
|
|
10330
10921
|
|
|
10922
|
+
if (!Util.isUnset(request.silenceTime)) {
|
|
10923
|
+
query["SilenceTime"] = request.silenceTime;
|
|
10924
|
+
}
|
|
10925
|
+
|
|
10331
10926
|
if (!Util.isUnset(request.taskName)) {
|
|
10332
10927
|
query["TaskName"] = request.taskName;
|
|
10333
10928
|
}
|
|
@@ -10361,6 +10956,14 @@ export default class Client extends OpenApi {
|
|
|
10361
10956
|
query["AutoPay"] = request.autoPay;
|
|
10362
10957
|
}
|
|
10363
10958
|
|
|
10959
|
+
if (!Util.isUnset(request.autoRenew)) {
|
|
10960
|
+
query["AutoRenew"] = request.autoRenew;
|
|
10961
|
+
}
|
|
10962
|
+
|
|
10963
|
+
if (!Util.isUnset(request.autoRenewDuration)) {
|
|
10964
|
+
query["AutoRenewDuration"] = request.autoRenewDuration;
|
|
10965
|
+
}
|
|
10966
|
+
|
|
10364
10967
|
if (!Util.isUnset(request.autoUseCoupon)) {
|
|
10365
10968
|
query["AutoUseCoupon"] = request.autoUseCoupon;
|
|
10366
10969
|
}
|
|
@@ -11606,6 +12209,39 @@ export default class Client extends OpenApi {
|
|
|
11606
12209
|
return await this.describeBandwidthPackageWithOptions(request, runtime);
|
|
11607
12210
|
}
|
|
11608
12211
|
|
|
12212
|
+
async describeBandwidthPackageAutoRenewAttributeWithOptions(request: DescribeBandwidthPackageAutoRenewAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBandwidthPackageAutoRenewAttributeResponse> {
|
|
12213
|
+
Util.validateModel(request);
|
|
12214
|
+
let query = { };
|
|
12215
|
+
if (!Util.isUnset(request.instanceId)) {
|
|
12216
|
+
query["InstanceId"] = request.instanceId;
|
|
12217
|
+
}
|
|
12218
|
+
|
|
12219
|
+
if (!Util.isUnset(request.regionId)) {
|
|
12220
|
+
query["RegionId"] = request.regionId;
|
|
12221
|
+
}
|
|
12222
|
+
|
|
12223
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
12224
|
+
query: OpenApiUtil.query(query),
|
|
12225
|
+
});
|
|
12226
|
+
let params = new $OpenApi.Params({
|
|
12227
|
+
action: "DescribeBandwidthPackageAutoRenewAttribute",
|
|
12228
|
+
version: "2019-11-20",
|
|
12229
|
+
protocol: "HTTPS",
|
|
12230
|
+
pathname: "/",
|
|
12231
|
+
method: "POST",
|
|
12232
|
+
authType: "AK",
|
|
12233
|
+
style: "RPC",
|
|
12234
|
+
reqBodyType: "formData",
|
|
12235
|
+
bodyType: "json",
|
|
12236
|
+
});
|
|
12237
|
+
return $tea.cast<DescribeBandwidthPackageAutoRenewAttributeResponse>(await this.callApi(params, req, runtime), new DescribeBandwidthPackageAutoRenewAttributeResponse({}));
|
|
12238
|
+
}
|
|
12239
|
+
|
|
12240
|
+
async describeBandwidthPackageAutoRenewAttribute(request: DescribeBandwidthPackageAutoRenewAttributeRequest): Promise<DescribeBandwidthPackageAutoRenewAttributeResponse> {
|
|
12241
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
12242
|
+
return await this.describeBandwidthPackageAutoRenewAttributeWithOptions(request, runtime);
|
|
12243
|
+
}
|
|
12244
|
+
|
|
11609
12245
|
async describeEndpointGroupWithOptions(request: DescribeEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEndpointGroupResponse> {
|
|
11610
12246
|
Util.validateModel(request);
|
|
11611
12247
|
let query = { };
|
|
@@ -13282,10 +13918,18 @@ export default class Client extends OpenApi {
|
|
|
13282
13918
|
query["ClientToken"] = request.clientToken;
|
|
13283
13919
|
}
|
|
13284
13920
|
|
|
13921
|
+
if (!Util.isUnset(request.detectEnable)) {
|
|
13922
|
+
query["DetectEnable"] = request.detectEnable;
|
|
13923
|
+
}
|
|
13924
|
+
|
|
13285
13925
|
if (!Util.isUnset(request.detectThreshold)) {
|
|
13286
13926
|
query["DetectThreshold"] = request.detectThreshold;
|
|
13287
13927
|
}
|
|
13288
13928
|
|
|
13929
|
+
if (!Util.isUnset(request.detectTimes)) {
|
|
13930
|
+
query["DetectTimes"] = request.detectTimes;
|
|
13931
|
+
}
|
|
13932
|
+
|
|
13289
13933
|
if (!Util.isUnset(request.listenerId)) {
|
|
13290
13934
|
query["ListenerId"] = request.listenerId;
|
|
13291
13935
|
}
|
|
@@ -13298,6 +13942,10 @@ export default class Client extends OpenApi {
|
|
|
13298
13942
|
query["RegionId"] = request.regionId;
|
|
13299
13943
|
}
|
|
13300
13944
|
|
|
13945
|
+
if (!Util.isUnset(request.silenceTime)) {
|
|
13946
|
+
query["SilenceTime"] = request.silenceTime;
|
|
13947
|
+
}
|
|
13948
|
+
|
|
13301
13949
|
if (!Util.isUnset(request.taskId)) {
|
|
13302
13950
|
query["TaskId"] = request.taskId;
|
|
13303
13951
|
}
|
|
@@ -13328,6 +13976,59 @@ export default class Client extends OpenApi {
|
|
|
13328
13976
|
return await this.updateApplicationMonitorWithOptions(request, runtime);
|
|
13329
13977
|
}
|
|
13330
13978
|
|
|
13979
|
+
async updateBandwidthPackagaAutoRenewAttributeWithOptions(request: UpdateBandwidthPackagaAutoRenewAttributeRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBandwidthPackagaAutoRenewAttributeResponse> {
|
|
13980
|
+
Util.validateModel(request);
|
|
13981
|
+
let query = { };
|
|
13982
|
+
if (!Util.isUnset(request.autoRenew)) {
|
|
13983
|
+
query["AutoRenew"] = request.autoRenew;
|
|
13984
|
+
}
|
|
13985
|
+
|
|
13986
|
+
if (!Util.isUnset(request.autoRenewDuration)) {
|
|
13987
|
+
query["AutoRenewDuration"] = request.autoRenewDuration;
|
|
13988
|
+
}
|
|
13989
|
+
|
|
13990
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
13991
|
+
query["ClientToken"] = request.clientToken;
|
|
13992
|
+
}
|
|
13993
|
+
|
|
13994
|
+
if (!Util.isUnset(request.instanceId)) {
|
|
13995
|
+
query["InstanceId"] = request.instanceId;
|
|
13996
|
+
}
|
|
13997
|
+
|
|
13998
|
+
if (!Util.isUnset(request.name)) {
|
|
13999
|
+
query["Name"] = request.name;
|
|
14000
|
+
}
|
|
14001
|
+
|
|
14002
|
+
if (!Util.isUnset(request.regionId)) {
|
|
14003
|
+
query["RegionId"] = request.regionId;
|
|
14004
|
+
}
|
|
14005
|
+
|
|
14006
|
+
if (!Util.isUnset(request.renewalStatus)) {
|
|
14007
|
+
query["RenewalStatus"] = request.renewalStatus;
|
|
14008
|
+
}
|
|
14009
|
+
|
|
14010
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
14011
|
+
query: OpenApiUtil.query(query),
|
|
14012
|
+
});
|
|
14013
|
+
let params = new $OpenApi.Params({
|
|
14014
|
+
action: "UpdateBandwidthPackagaAutoRenewAttribute",
|
|
14015
|
+
version: "2019-11-20",
|
|
14016
|
+
protocol: "HTTPS",
|
|
14017
|
+
pathname: "/",
|
|
14018
|
+
method: "POST",
|
|
14019
|
+
authType: "AK",
|
|
14020
|
+
style: "RPC",
|
|
14021
|
+
reqBodyType: "formData",
|
|
14022
|
+
bodyType: "json",
|
|
14023
|
+
});
|
|
14024
|
+
return $tea.cast<UpdateBandwidthPackagaAutoRenewAttributeResponse>(await this.callApi(params, req, runtime), new UpdateBandwidthPackagaAutoRenewAttributeResponse({}));
|
|
14025
|
+
}
|
|
14026
|
+
|
|
14027
|
+
async updateBandwidthPackagaAutoRenewAttribute(request: UpdateBandwidthPackagaAutoRenewAttributeRequest): Promise<UpdateBandwidthPackagaAutoRenewAttributeResponse> {
|
|
14028
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
14029
|
+
return await this.updateBandwidthPackagaAutoRenewAttributeWithOptions(request, runtime);
|
|
14030
|
+
}
|
|
14031
|
+
|
|
13331
14032
|
async updateBandwidthPackageWithOptions(request: UpdateBandwidthPackageRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBandwidthPackageResponse> {
|
|
13332
14033
|
Util.validateModel(request);
|
|
13333
14034
|
let query = { };
|