@alicloud/cloudapi20160714 2.1.5 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +738 -0
- package/dist/client.js +1442 -29
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +1844 -31
package/src/client.ts
CHANGED
|
@@ -57,10 +57,12 @@ export class AbolishApiResponseBody extends $tea.Model {
|
|
|
57
57
|
|
|
58
58
|
export class AbolishApiResponse extends $tea.Model {
|
|
59
59
|
headers: { [key: string]: string };
|
|
60
|
+
statusCode: number;
|
|
60
61
|
body: AbolishApiResponseBody;
|
|
61
62
|
static names(): { [key: string]: string } {
|
|
62
63
|
return {
|
|
63
64
|
headers: 'headers',
|
|
65
|
+
statusCode: 'statusCode',
|
|
64
66
|
body: 'body',
|
|
65
67
|
};
|
|
66
68
|
}
|
|
@@ -68,6 +70,7 @@ export class AbolishApiResponse extends $tea.Model {
|
|
|
68
70
|
static types(): { [key: string]: any } {
|
|
69
71
|
return {
|
|
70
72
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
73
|
+
statusCode: 'number',
|
|
71
74
|
body: AbolishApiResponseBody,
|
|
72
75
|
};
|
|
73
76
|
}
|
|
@@ -77,6 +80,75 @@ export class AbolishApiResponse extends $tea.Model {
|
|
|
77
80
|
}
|
|
78
81
|
}
|
|
79
82
|
|
|
83
|
+
export class AddAccessControlListEntryRequest extends $tea.Model {
|
|
84
|
+
aclEntrys?: string;
|
|
85
|
+
aclId?: string;
|
|
86
|
+
securityToken?: string;
|
|
87
|
+
static names(): { [key: string]: string } {
|
|
88
|
+
return {
|
|
89
|
+
aclEntrys: 'AclEntrys',
|
|
90
|
+
aclId: 'AclId',
|
|
91
|
+
securityToken: 'SecurityToken',
|
|
92
|
+
};
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
static types(): { [key: string]: any } {
|
|
96
|
+
return {
|
|
97
|
+
aclEntrys: 'string',
|
|
98
|
+
aclId: 'string',
|
|
99
|
+
securityToken: 'string',
|
|
100
|
+
};
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
constructor(map?: { [key: string]: any }) {
|
|
104
|
+
super(map);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
export class AddAccessControlListEntryResponseBody extends $tea.Model {
|
|
109
|
+
requestId?: string;
|
|
110
|
+
static names(): { [key: string]: string } {
|
|
111
|
+
return {
|
|
112
|
+
requestId: 'RequestId',
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
static types(): { [key: string]: any } {
|
|
117
|
+
return {
|
|
118
|
+
requestId: 'string',
|
|
119
|
+
};
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
constructor(map?: { [key: string]: any }) {
|
|
123
|
+
super(map);
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export class AddAccessControlListEntryResponse extends $tea.Model {
|
|
128
|
+
headers: { [key: string]: string };
|
|
129
|
+
statusCode: number;
|
|
130
|
+
body: AddAccessControlListEntryResponseBody;
|
|
131
|
+
static names(): { [key: string]: string } {
|
|
132
|
+
return {
|
|
133
|
+
headers: 'headers',
|
|
134
|
+
statusCode: 'statusCode',
|
|
135
|
+
body: 'body',
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
static types(): { [key: string]: any } {
|
|
140
|
+
return {
|
|
141
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
142
|
+
statusCode: 'number',
|
|
143
|
+
body: AddAccessControlListEntryResponseBody,
|
|
144
|
+
};
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
constructor(map?: { [key: string]: any }) {
|
|
148
|
+
super(map);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
80
152
|
export class AddIpControlPolicyItemRequest extends $tea.Model {
|
|
81
153
|
appId?: string;
|
|
82
154
|
cidrIp?: string;
|
|
@@ -129,10 +201,12 @@ export class AddIpControlPolicyItemResponseBody extends $tea.Model {
|
|
|
129
201
|
|
|
130
202
|
export class AddIpControlPolicyItemResponse extends $tea.Model {
|
|
131
203
|
headers: { [key: string]: string };
|
|
204
|
+
statusCode: number;
|
|
132
205
|
body: AddIpControlPolicyItemResponseBody;
|
|
133
206
|
static names(): { [key: string]: string } {
|
|
134
207
|
return {
|
|
135
208
|
headers: 'headers',
|
|
209
|
+
statusCode: 'statusCode',
|
|
136
210
|
body: 'body',
|
|
137
211
|
};
|
|
138
212
|
}
|
|
@@ -140,6 +214,7 @@ export class AddIpControlPolicyItemResponse extends $tea.Model {
|
|
|
140
214
|
static types(): { [key: string]: any } {
|
|
141
215
|
return {
|
|
142
216
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
217
|
+
statusCode: 'number',
|
|
143
218
|
body: AddIpControlPolicyItemResponseBody,
|
|
144
219
|
};
|
|
145
220
|
}
|
|
@@ -201,10 +276,12 @@ export class AddTrafficSpecialControlResponseBody extends $tea.Model {
|
|
|
201
276
|
|
|
202
277
|
export class AddTrafficSpecialControlResponse extends $tea.Model {
|
|
203
278
|
headers: { [key: string]: string };
|
|
279
|
+
statusCode: number;
|
|
204
280
|
body: AddTrafficSpecialControlResponseBody;
|
|
205
281
|
static names(): { [key: string]: string } {
|
|
206
282
|
return {
|
|
207
283
|
headers: 'headers',
|
|
284
|
+
statusCode: 'statusCode',
|
|
208
285
|
body: 'body',
|
|
209
286
|
};
|
|
210
287
|
}
|
|
@@ -212,6 +289,7 @@ export class AddTrafficSpecialControlResponse extends $tea.Model {
|
|
|
212
289
|
static types(): { [key: string]: any } {
|
|
213
290
|
return {
|
|
214
291
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
292
|
+
statusCode: 'number',
|
|
215
293
|
body: AddTrafficSpecialControlResponseBody,
|
|
216
294
|
};
|
|
217
295
|
}
|
|
@@ -276,10 +354,12 @@ export class AttachPluginResponseBody extends $tea.Model {
|
|
|
276
354
|
|
|
277
355
|
export class AttachPluginResponse extends $tea.Model {
|
|
278
356
|
headers: { [key: string]: string };
|
|
357
|
+
statusCode: number;
|
|
279
358
|
body: AttachPluginResponseBody;
|
|
280
359
|
static names(): { [key: string]: string } {
|
|
281
360
|
return {
|
|
282
361
|
headers: 'headers',
|
|
362
|
+
statusCode: 'statusCode',
|
|
283
363
|
body: 'body',
|
|
284
364
|
};
|
|
285
365
|
}
|
|
@@ -287,6 +367,7 @@ export class AttachPluginResponse extends $tea.Model {
|
|
|
287
367
|
static types(): { [key: string]: any } {
|
|
288
368
|
return {
|
|
289
369
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
370
|
+
statusCode: 'number',
|
|
290
371
|
body: AttachPluginResponseBody,
|
|
291
372
|
};
|
|
292
373
|
}
|
|
@@ -342,10 +423,12 @@ export class BatchAbolishApisResponseBody extends $tea.Model {
|
|
|
342
423
|
|
|
343
424
|
export class BatchAbolishApisResponse extends $tea.Model {
|
|
344
425
|
headers: { [key: string]: string };
|
|
426
|
+
statusCode: number;
|
|
345
427
|
body: BatchAbolishApisResponseBody;
|
|
346
428
|
static names(): { [key: string]: string } {
|
|
347
429
|
return {
|
|
348
430
|
headers: 'headers',
|
|
431
|
+
statusCode: 'statusCode',
|
|
349
432
|
body: 'body',
|
|
350
433
|
};
|
|
351
434
|
}
|
|
@@ -353,6 +436,7 @@ export class BatchAbolishApisResponse extends $tea.Model {
|
|
|
353
436
|
static types(): { [key: string]: any } {
|
|
354
437
|
return {
|
|
355
438
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
439
|
+
statusCode: 'number',
|
|
356
440
|
body: BatchAbolishApisResponseBody,
|
|
357
441
|
};
|
|
358
442
|
}
|
|
@@ -414,10 +498,12 @@ export class BatchDeployApisResponseBody extends $tea.Model {
|
|
|
414
498
|
|
|
415
499
|
export class BatchDeployApisResponse extends $tea.Model {
|
|
416
500
|
headers: { [key: string]: string };
|
|
501
|
+
statusCode: number;
|
|
417
502
|
body: BatchDeployApisResponseBody;
|
|
418
503
|
static names(): { [key: string]: string } {
|
|
419
504
|
return {
|
|
420
505
|
headers: 'headers',
|
|
506
|
+
statusCode: 'statusCode',
|
|
421
507
|
body: 'body',
|
|
422
508
|
};
|
|
423
509
|
}
|
|
@@ -425,6 +511,7 @@ export class BatchDeployApisResponse extends $tea.Model {
|
|
|
425
511
|
static types(): { [key: string]: any } {
|
|
426
512
|
return {
|
|
427
513
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
514
|
+
statusCode: 'number',
|
|
428
515
|
body: BatchDeployApisResponseBody,
|
|
429
516
|
};
|
|
430
517
|
}
|
|
@@ -434,6 +521,72 @@ export class BatchDeployApisResponse extends $tea.Model {
|
|
|
434
521
|
}
|
|
435
522
|
}
|
|
436
523
|
|
|
524
|
+
export class CreateAccessControlListRequest extends $tea.Model {
|
|
525
|
+
aclName?: string;
|
|
526
|
+
securityToken?: string;
|
|
527
|
+
static names(): { [key: string]: string } {
|
|
528
|
+
return {
|
|
529
|
+
aclName: 'AclName',
|
|
530
|
+
securityToken: 'SecurityToken',
|
|
531
|
+
};
|
|
532
|
+
}
|
|
533
|
+
|
|
534
|
+
static types(): { [key: string]: any } {
|
|
535
|
+
return {
|
|
536
|
+
aclName: 'string',
|
|
537
|
+
securityToken: 'string',
|
|
538
|
+
};
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
constructor(map?: { [key: string]: any }) {
|
|
542
|
+
super(map);
|
|
543
|
+
}
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
export class CreateAccessControlListResponseBody extends $tea.Model {
|
|
547
|
+
requestId?: string;
|
|
548
|
+
static names(): { [key: string]: string } {
|
|
549
|
+
return {
|
|
550
|
+
requestId: 'RequestId',
|
|
551
|
+
};
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
static types(): { [key: string]: any } {
|
|
555
|
+
return {
|
|
556
|
+
requestId: 'string',
|
|
557
|
+
};
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
constructor(map?: { [key: string]: any }) {
|
|
561
|
+
super(map);
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
export class CreateAccessControlListResponse extends $tea.Model {
|
|
566
|
+
headers: { [key: string]: string };
|
|
567
|
+
statusCode: number;
|
|
568
|
+
body: CreateAccessControlListResponseBody;
|
|
569
|
+
static names(): { [key: string]: string } {
|
|
570
|
+
return {
|
|
571
|
+
headers: 'headers',
|
|
572
|
+
statusCode: 'statusCode',
|
|
573
|
+
body: 'body',
|
|
574
|
+
};
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
static types(): { [key: string]: any } {
|
|
578
|
+
return {
|
|
579
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
580
|
+
statusCode: 'number',
|
|
581
|
+
body: CreateAccessControlListResponseBody,
|
|
582
|
+
};
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
constructor(map?: { [key: string]: any }) {
|
|
586
|
+
super(map);
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
|
|
437
590
|
export class CreateApiRequest extends $tea.Model {
|
|
438
591
|
allowSignatureMethod?: string;
|
|
439
592
|
apiName?: string;
|
|
@@ -555,10 +708,12 @@ export class CreateApiResponseBody extends $tea.Model {
|
|
|
555
708
|
|
|
556
709
|
export class CreateApiResponse extends $tea.Model {
|
|
557
710
|
headers: { [key: string]: string };
|
|
711
|
+
statusCode: number;
|
|
558
712
|
body: CreateApiResponseBody;
|
|
559
713
|
static names(): { [key: string]: string } {
|
|
560
714
|
return {
|
|
561
715
|
headers: 'headers',
|
|
716
|
+
statusCode: 'statusCode',
|
|
562
717
|
body: 'body',
|
|
563
718
|
};
|
|
564
719
|
}
|
|
@@ -566,6 +721,7 @@ export class CreateApiResponse extends $tea.Model {
|
|
|
566
721
|
static types(): { [key: string]: any } {
|
|
567
722
|
return {
|
|
568
723
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
724
|
+
statusCode: 'number',
|
|
569
725
|
body: CreateApiResponseBody,
|
|
570
726
|
};
|
|
571
727
|
}
|
|
@@ -654,10 +810,12 @@ export class CreateApiGroupResponseBody extends $tea.Model {
|
|
|
654
810
|
|
|
655
811
|
export class CreateApiGroupResponse extends $tea.Model {
|
|
656
812
|
headers: { [key: string]: string };
|
|
813
|
+
statusCode: number;
|
|
657
814
|
body: CreateApiGroupResponseBody;
|
|
658
815
|
static names(): { [key: string]: string } {
|
|
659
816
|
return {
|
|
660
817
|
headers: 'headers',
|
|
818
|
+
statusCode: 'statusCode',
|
|
661
819
|
body: 'body',
|
|
662
820
|
};
|
|
663
821
|
}
|
|
@@ -665,6 +823,7 @@ export class CreateApiGroupResponse extends $tea.Model {
|
|
|
665
823
|
static types(): { [key: string]: any } {
|
|
666
824
|
return {
|
|
667
825
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
826
|
+
statusCode: 'number',
|
|
668
827
|
body: CreateApiGroupResponseBody,
|
|
669
828
|
};
|
|
670
829
|
}
|
|
@@ -732,10 +891,12 @@ export class CreateApiStageVariableResponseBody extends $tea.Model {
|
|
|
732
891
|
|
|
733
892
|
export class CreateApiStageVariableResponse extends $tea.Model {
|
|
734
893
|
headers: { [key: string]: string };
|
|
894
|
+
statusCode: number;
|
|
735
895
|
body: CreateApiStageVariableResponseBody;
|
|
736
896
|
static names(): { [key: string]: string } {
|
|
737
897
|
return {
|
|
738
898
|
headers: 'headers',
|
|
899
|
+
statusCode: 'statusCode',
|
|
739
900
|
body: 'body',
|
|
740
901
|
};
|
|
741
902
|
}
|
|
@@ -743,6 +904,7 @@ export class CreateApiStageVariableResponse extends $tea.Model {
|
|
|
743
904
|
static types(): { [key: string]: any } {
|
|
744
905
|
return {
|
|
745
906
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
907
|
+
statusCode: 'number',
|
|
746
908
|
body: CreateApiStageVariableResponseBody,
|
|
747
909
|
};
|
|
748
910
|
}
|
|
@@ -810,10 +972,12 @@ export class CreateAppResponseBody extends $tea.Model {
|
|
|
810
972
|
|
|
811
973
|
export class CreateAppResponse extends $tea.Model {
|
|
812
974
|
headers: { [key: string]: string };
|
|
975
|
+
statusCode: number;
|
|
813
976
|
body: CreateAppResponseBody;
|
|
814
977
|
static names(): { [key: string]: string } {
|
|
815
978
|
return {
|
|
816
979
|
headers: 'headers',
|
|
980
|
+
statusCode: 'statusCode',
|
|
817
981
|
body: 'body',
|
|
818
982
|
};
|
|
819
983
|
}
|
|
@@ -821,6 +985,7 @@ export class CreateAppResponse extends $tea.Model {
|
|
|
821
985
|
static types(): { [key: string]: any } {
|
|
822
986
|
return {
|
|
823
987
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
988
|
+
statusCode: 'number',
|
|
824
989
|
body: CreateAppResponseBody,
|
|
825
990
|
};
|
|
826
991
|
}
|
|
@@ -885,10 +1050,12 @@ export class CreateBackendResponseBody extends $tea.Model {
|
|
|
885
1050
|
|
|
886
1051
|
export class CreateBackendResponse extends $tea.Model {
|
|
887
1052
|
headers: { [key: string]: string };
|
|
1053
|
+
statusCode: number;
|
|
888
1054
|
body: CreateBackendResponseBody;
|
|
889
1055
|
static names(): { [key: string]: string } {
|
|
890
1056
|
return {
|
|
891
1057
|
headers: 'headers',
|
|
1058
|
+
statusCode: 'statusCode',
|
|
892
1059
|
body: 'body',
|
|
893
1060
|
};
|
|
894
1061
|
}
|
|
@@ -896,6 +1063,7 @@ export class CreateBackendResponse extends $tea.Model {
|
|
|
896
1063
|
static types(): { [key: string]: any } {
|
|
897
1064
|
return {
|
|
898
1065
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1066
|
+
statusCode: 'number',
|
|
899
1067
|
body: CreateBackendResponseBody,
|
|
900
1068
|
};
|
|
901
1069
|
}
|
|
@@ -963,10 +1131,12 @@ export class CreateBackendModelResponseBody extends $tea.Model {
|
|
|
963
1131
|
|
|
964
1132
|
export class CreateBackendModelResponse extends $tea.Model {
|
|
965
1133
|
headers: { [key: string]: string };
|
|
1134
|
+
statusCode: number;
|
|
966
1135
|
body: CreateBackendModelResponseBody;
|
|
967
1136
|
static names(): { [key: string]: string } {
|
|
968
1137
|
return {
|
|
969
1138
|
headers: 'headers',
|
|
1139
|
+
statusCode: 'statusCode',
|
|
970
1140
|
body: 'body',
|
|
971
1141
|
};
|
|
972
1142
|
}
|
|
@@ -974,6 +1144,7 @@ export class CreateBackendModelResponse extends $tea.Model {
|
|
|
974
1144
|
static types(): { [key: string]: any } {
|
|
975
1145
|
return {
|
|
976
1146
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1147
|
+
statusCode: 'number',
|
|
977
1148
|
body: CreateBackendModelResponseBody,
|
|
978
1149
|
};
|
|
979
1150
|
}
|
|
@@ -1050,10 +1221,12 @@ export class CreateInstanceResponseBody extends $tea.Model {
|
|
|
1050
1221
|
|
|
1051
1222
|
export class CreateInstanceResponse extends $tea.Model {
|
|
1052
1223
|
headers: { [key: string]: string };
|
|
1224
|
+
statusCode: number;
|
|
1053
1225
|
body: CreateInstanceResponseBody;
|
|
1054
1226
|
static names(): { [key: string]: string } {
|
|
1055
1227
|
return {
|
|
1056
1228
|
headers: 'headers',
|
|
1229
|
+
statusCode: 'statusCode',
|
|
1057
1230
|
body: 'body',
|
|
1058
1231
|
};
|
|
1059
1232
|
}
|
|
@@ -1061,6 +1234,7 @@ export class CreateInstanceResponse extends $tea.Model {
|
|
|
1061
1234
|
static types(): { [key: string]: any } {
|
|
1062
1235
|
return {
|
|
1063
1236
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1237
|
+
statusCode: 'number',
|
|
1064
1238
|
body: CreateInstanceResponseBody,
|
|
1065
1239
|
};
|
|
1066
1240
|
}
|
|
@@ -1116,10 +1290,12 @@ export class CreateIntranetDomainResponseBody extends $tea.Model {
|
|
|
1116
1290
|
|
|
1117
1291
|
export class CreateIntranetDomainResponse extends $tea.Model {
|
|
1118
1292
|
headers: { [key: string]: string };
|
|
1293
|
+
statusCode: number;
|
|
1119
1294
|
body: CreateIntranetDomainResponseBody;
|
|
1120
1295
|
static names(): { [key: string]: string } {
|
|
1121
1296
|
return {
|
|
1122
1297
|
headers: 'headers',
|
|
1298
|
+
statusCode: 'statusCode',
|
|
1123
1299
|
body: 'body',
|
|
1124
1300
|
};
|
|
1125
1301
|
}
|
|
@@ -1127,6 +1303,7 @@ export class CreateIntranetDomainResponse extends $tea.Model {
|
|
|
1127
1303
|
static types(): { [key: string]: any } {
|
|
1128
1304
|
return {
|
|
1129
1305
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1306
|
+
statusCode: 'number',
|
|
1130
1307
|
body: CreateIntranetDomainResponseBody,
|
|
1131
1308
|
};
|
|
1132
1309
|
}
|
|
@@ -1191,10 +1368,12 @@ export class CreateIpControlResponseBody extends $tea.Model {
|
|
|
1191
1368
|
|
|
1192
1369
|
export class CreateIpControlResponse extends $tea.Model {
|
|
1193
1370
|
headers: { [key: string]: string };
|
|
1371
|
+
statusCode: number;
|
|
1194
1372
|
body: CreateIpControlResponseBody;
|
|
1195
1373
|
static names(): { [key: string]: string } {
|
|
1196
1374
|
return {
|
|
1197
1375
|
headers: 'headers',
|
|
1376
|
+
statusCode: 'statusCode',
|
|
1198
1377
|
body: 'body',
|
|
1199
1378
|
};
|
|
1200
1379
|
}
|
|
@@ -1202,6 +1381,7 @@ export class CreateIpControlResponse extends $tea.Model {
|
|
|
1202
1381
|
static types(): { [key: string]: any } {
|
|
1203
1382
|
return {
|
|
1204
1383
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1384
|
+
statusCode: 'number',
|
|
1205
1385
|
body: CreateIpControlResponseBody,
|
|
1206
1386
|
};
|
|
1207
1387
|
}
|
|
@@ -1260,10 +1440,12 @@ export class CreateLogConfigResponseBody extends $tea.Model {
|
|
|
1260
1440
|
|
|
1261
1441
|
export class CreateLogConfigResponse extends $tea.Model {
|
|
1262
1442
|
headers: { [key: string]: string };
|
|
1443
|
+
statusCode: number;
|
|
1263
1444
|
body: CreateLogConfigResponseBody;
|
|
1264
1445
|
static names(): { [key: string]: string } {
|
|
1265
1446
|
return {
|
|
1266
1447
|
headers: 'headers',
|
|
1448
|
+
statusCode: 'statusCode',
|
|
1267
1449
|
body: 'body',
|
|
1268
1450
|
};
|
|
1269
1451
|
}
|
|
@@ -1271,6 +1453,7 @@ export class CreateLogConfigResponse extends $tea.Model {
|
|
|
1271
1453
|
static types(): { [key: string]: any } {
|
|
1272
1454
|
return {
|
|
1273
1455
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1456
|
+
statusCode: 'number',
|
|
1274
1457
|
body: CreateLogConfigResponseBody,
|
|
1275
1458
|
};
|
|
1276
1459
|
}
|
|
@@ -1356,10 +1539,12 @@ export class CreateModelResponseBody extends $tea.Model {
|
|
|
1356
1539
|
|
|
1357
1540
|
export class CreateModelResponse extends $tea.Model {
|
|
1358
1541
|
headers: { [key: string]: string };
|
|
1542
|
+
statusCode: number;
|
|
1359
1543
|
body: CreateModelResponseBody;
|
|
1360
1544
|
static names(): { [key: string]: string } {
|
|
1361
1545
|
return {
|
|
1362
1546
|
headers: 'headers',
|
|
1547
|
+
statusCode: 'statusCode',
|
|
1363
1548
|
body: 'body',
|
|
1364
1549
|
};
|
|
1365
1550
|
}
|
|
@@ -1367,6 +1552,7 @@ export class CreateModelResponse extends $tea.Model {
|
|
|
1367
1552
|
static types(): { [key: string]: any } {
|
|
1368
1553
|
return {
|
|
1369
1554
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1555
|
+
statusCode: 'number',
|
|
1370
1556
|
body: CreateModelResponseBody,
|
|
1371
1557
|
};
|
|
1372
1558
|
}
|
|
@@ -1428,10 +1614,12 @@ export class CreateMonitorGroupResponseBody extends $tea.Model {
|
|
|
1428
1614
|
|
|
1429
1615
|
export class CreateMonitorGroupResponse extends $tea.Model {
|
|
1430
1616
|
headers: { [key: string]: string };
|
|
1617
|
+
statusCode: number;
|
|
1431
1618
|
body: CreateMonitorGroupResponseBody;
|
|
1432
1619
|
static names(): { [key: string]: string } {
|
|
1433
1620
|
return {
|
|
1434
1621
|
headers: 'headers',
|
|
1622
|
+
statusCode: 'statusCode',
|
|
1435
1623
|
body: 'body',
|
|
1436
1624
|
};
|
|
1437
1625
|
}
|
|
@@ -1439,6 +1627,7 @@ export class CreateMonitorGroupResponse extends $tea.Model {
|
|
|
1439
1627
|
static types(): { [key: string]: any } {
|
|
1440
1628
|
return {
|
|
1441
1629
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1630
|
+
statusCode: 'number',
|
|
1442
1631
|
body: CreateMonitorGroupResponseBody,
|
|
1443
1632
|
};
|
|
1444
1633
|
}
|
|
@@ -1509,10 +1698,12 @@ export class CreatePluginResponseBody extends $tea.Model {
|
|
|
1509
1698
|
|
|
1510
1699
|
export class CreatePluginResponse extends $tea.Model {
|
|
1511
1700
|
headers: { [key: string]: string };
|
|
1701
|
+
statusCode: number;
|
|
1512
1702
|
body: CreatePluginResponseBody;
|
|
1513
1703
|
static names(): { [key: string]: string } {
|
|
1514
1704
|
return {
|
|
1515
1705
|
headers: 'headers',
|
|
1706
|
+
statusCode: 'statusCode',
|
|
1516
1707
|
body: 'body',
|
|
1517
1708
|
};
|
|
1518
1709
|
}
|
|
@@ -1520,6 +1711,7 @@ export class CreatePluginResponse extends $tea.Model {
|
|
|
1520
1711
|
static types(): { [key: string]: any } {
|
|
1521
1712
|
return {
|
|
1522
1713
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1714
|
+
statusCode: 'number',
|
|
1523
1715
|
body: CreatePluginResponseBody,
|
|
1524
1716
|
};
|
|
1525
1717
|
}
|
|
@@ -1584,10 +1776,12 @@ export class CreateSignatureResponseBody extends $tea.Model {
|
|
|
1584
1776
|
|
|
1585
1777
|
export class CreateSignatureResponse extends $tea.Model {
|
|
1586
1778
|
headers: { [key: string]: string };
|
|
1779
|
+
statusCode: number;
|
|
1587
1780
|
body: CreateSignatureResponseBody;
|
|
1588
1781
|
static names(): { [key: string]: string } {
|
|
1589
1782
|
return {
|
|
1590
1783
|
headers: 'headers',
|
|
1784
|
+
statusCode: 'statusCode',
|
|
1591
1785
|
body: 'body',
|
|
1592
1786
|
};
|
|
1593
1787
|
}
|
|
@@ -1595,6 +1789,7 @@ export class CreateSignatureResponse extends $tea.Model {
|
|
|
1595
1789
|
static types(): { [key: string]: any } {
|
|
1596
1790
|
return {
|
|
1597
1791
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1792
|
+
statusCode: 'number',
|
|
1598
1793
|
body: CreateSignatureResponseBody,
|
|
1599
1794
|
};
|
|
1600
1795
|
}
|
|
@@ -1665,10 +1860,12 @@ export class CreateTrafficControlResponseBody extends $tea.Model {
|
|
|
1665
1860
|
|
|
1666
1861
|
export class CreateTrafficControlResponse extends $tea.Model {
|
|
1667
1862
|
headers: { [key: string]: string };
|
|
1863
|
+
statusCode: number;
|
|
1668
1864
|
body: CreateTrafficControlResponseBody;
|
|
1669
1865
|
static names(): { [key: string]: string } {
|
|
1670
1866
|
return {
|
|
1671
1867
|
headers: 'headers',
|
|
1868
|
+
statusCode: 'statusCode',
|
|
1672
1869
|
body: 'body',
|
|
1673
1870
|
};
|
|
1674
1871
|
}
|
|
@@ -1676,6 +1873,7 @@ export class CreateTrafficControlResponse extends $tea.Model {
|
|
|
1676
1873
|
static types(): { [key: string]: any } {
|
|
1677
1874
|
return {
|
|
1678
1875
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1876
|
+
statusCode: 'number',
|
|
1679
1877
|
body: CreateTrafficControlResponseBody,
|
|
1680
1878
|
};
|
|
1681
1879
|
}
|
|
@@ -1685,6 +1883,72 @@ export class CreateTrafficControlResponse extends $tea.Model {
|
|
|
1685
1883
|
}
|
|
1686
1884
|
}
|
|
1687
1885
|
|
|
1886
|
+
export class DeleteAccessControlListRequest extends $tea.Model {
|
|
1887
|
+
aclId?: string;
|
|
1888
|
+
securityToken?: string;
|
|
1889
|
+
static names(): { [key: string]: string } {
|
|
1890
|
+
return {
|
|
1891
|
+
aclId: 'AclId',
|
|
1892
|
+
securityToken: 'SecurityToken',
|
|
1893
|
+
};
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1896
|
+
static types(): { [key: string]: any } {
|
|
1897
|
+
return {
|
|
1898
|
+
aclId: 'string',
|
|
1899
|
+
securityToken: 'string',
|
|
1900
|
+
};
|
|
1901
|
+
}
|
|
1902
|
+
|
|
1903
|
+
constructor(map?: { [key: string]: any }) {
|
|
1904
|
+
super(map);
|
|
1905
|
+
}
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
export class DeleteAccessControlListResponseBody extends $tea.Model {
|
|
1909
|
+
requestId?: string;
|
|
1910
|
+
static names(): { [key: string]: string } {
|
|
1911
|
+
return {
|
|
1912
|
+
requestId: 'RequestId',
|
|
1913
|
+
};
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
static types(): { [key: string]: any } {
|
|
1917
|
+
return {
|
|
1918
|
+
requestId: 'string',
|
|
1919
|
+
};
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
constructor(map?: { [key: string]: any }) {
|
|
1923
|
+
super(map);
|
|
1924
|
+
}
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
export class DeleteAccessControlListResponse extends $tea.Model {
|
|
1928
|
+
headers: { [key: string]: string };
|
|
1929
|
+
statusCode: number;
|
|
1930
|
+
body: DeleteAccessControlListResponseBody;
|
|
1931
|
+
static names(): { [key: string]: string } {
|
|
1932
|
+
return {
|
|
1933
|
+
headers: 'headers',
|
|
1934
|
+
statusCode: 'statusCode',
|
|
1935
|
+
body: 'body',
|
|
1936
|
+
};
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
static types(): { [key: string]: any } {
|
|
1940
|
+
return {
|
|
1941
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1942
|
+
statusCode: 'number',
|
|
1943
|
+
body: DeleteAccessControlListResponseBody,
|
|
1944
|
+
};
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
constructor(map?: { [key: string]: any }) {
|
|
1948
|
+
super(map);
|
|
1949
|
+
}
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1688
1952
|
export class DeleteAllTrafficSpecialControlRequest extends $tea.Model {
|
|
1689
1953
|
securityToken?: string;
|
|
1690
1954
|
trafficControlId?: string;
|
|
@@ -1728,10 +1992,12 @@ export class DeleteAllTrafficSpecialControlResponseBody extends $tea.Model {
|
|
|
1728
1992
|
|
|
1729
1993
|
export class DeleteAllTrafficSpecialControlResponse extends $tea.Model {
|
|
1730
1994
|
headers: { [key: string]: string };
|
|
1995
|
+
statusCode: number;
|
|
1731
1996
|
body: DeleteAllTrafficSpecialControlResponseBody;
|
|
1732
1997
|
static names(): { [key: string]: string } {
|
|
1733
1998
|
return {
|
|
1734
1999
|
headers: 'headers',
|
|
2000
|
+
statusCode: 'statusCode',
|
|
1735
2001
|
body: 'body',
|
|
1736
2002
|
};
|
|
1737
2003
|
}
|
|
@@ -1739,6 +2005,7 @@ export class DeleteAllTrafficSpecialControlResponse extends $tea.Model {
|
|
|
1739
2005
|
static types(): { [key: string]: any } {
|
|
1740
2006
|
return {
|
|
1741
2007
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2008
|
+
statusCode: 'number',
|
|
1742
2009
|
body: DeleteAllTrafficSpecialControlResponseBody,
|
|
1743
2010
|
};
|
|
1744
2011
|
}
|
|
@@ -1794,10 +2061,12 @@ export class DeleteApiResponseBody extends $tea.Model {
|
|
|
1794
2061
|
|
|
1795
2062
|
export class DeleteApiResponse extends $tea.Model {
|
|
1796
2063
|
headers: { [key: string]: string };
|
|
2064
|
+
statusCode: number;
|
|
1797
2065
|
body: DeleteApiResponseBody;
|
|
1798
2066
|
static names(): { [key: string]: string } {
|
|
1799
2067
|
return {
|
|
1800
2068
|
headers: 'headers',
|
|
2069
|
+
statusCode: 'statusCode',
|
|
1801
2070
|
body: 'body',
|
|
1802
2071
|
};
|
|
1803
2072
|
}
|
|
@@ -1805,6 +2074,7 @@ export class DeleteApiResponse extends $tea.Model {
|
|
|
1805
2074
|
static types(): { [key: string]: any } {
|
|
1806
2075
|
return {
|
|
1807
2076
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2077
|
+
statusCode: 'number',
|
|
1808
2078
|
body: DeleteApiResponseBody,
|
|
1809
2079
|
};
|
|
1810
2080
|
}
|
|
@@ -1860,10 +2130,12 @@ export class DeleteApiGroupResponseBody extends $tea.Model {
|
|
|
1860
2130
|
|
|
1861
2131
|
export class DeleteApiGroupResponse extends $tea.Model {
|
|
1862
2132
|
headers: { [key: string]: string };
|
|
2133
|
+
statusCode: number;
|
|
1863
2134
|
body: DeleteApiGroupResponseBody;
|
|
1864
2135
|
static names(): { [key: string]: string } {
|
|
1865
2136
|
return {
|
|
1866
2137
|
headers: 'headers',
|
|
2138
|
+
statusCode: 'statusCode',
|
|
1867
2139
|
body: 'body',
|
|
1868
2140
|
};
|
|
1869
2141
|
}
|
|
@@ -1871,6 +2143,7 @@ export class DeleteApiGroupResponse extends $tea.Model {
|
|
|
1871
2143
|
static types(): { [key: string]: any } {
|
|
1872
2144
|
return {
|
|
1873
2145
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2146
|
+
statusCode: 'number',
|
|
1874
2147
|
body: DeleteApiGroupResponseBody,
|
|
1875
2148
|
};
|
|
1876
2149
|
}
|
|
@@ -1929,10 +2202,12 @@ export class DeleteApiStageVariableResponseBody extends $tea.Model {
|
|
|
1929
2202
|
|
|
1930
2203
|
export class DeleteApiStageVariableResponse extends $tea.Model {
|
|
1931
2204
|
headers: { [key: string]: string };
|
|
2205
|
+
statusCode: number;
|
|
1932
2206
|
body: DeleteApiStageVariableResponseBody;
|
|
1933
2207
|
static names(): { [key: string]: string } {
|
|
1934
2208
|
return {
|
|
1935
2209
|
headers: 'headers',
|
|
2210
|
+
statusCode: 'statusCode',
|
|
1936
2211
|
body: 'body',
|
|
1937
2212
|
};
|
|
1938
2213
|
}
|
|
@@ -1940,6 +2215,7 @@ export class DeleteApiStageVariableResponse extends $tea.Model {
|
|
|
1940
2215
|
static types(): { [key: string]: any } {
|
|
1941
2216
|
return {
|
|
1942
2217
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2218
|
+
statusCode: 'number',
|
|
1943
2219
|
body: DeleteApiStageVariableResponseBody,
|
|
1944
2220
|
};
|
|
1945
2221
|
}
|
|
@@ -1995,10 +2271,12 @@ export class DeleteAppResponseBody extends $tea.Model {
|
|
|
1995
2271
|
|
|
1996
2272
|
export class DeleteAppResponse extends $tea.Model {
|
|
1997
2273
|
headers: { [key: string]: string };
|
|
2274
|
+
statusCode: number;
|
|
1998
2275
|
body: DeleteAppResponseBody;
|
|
1999
2276
|
static names(): { [key: string]: string } {
|
|
2000
2277
|
return {
|
|
2001
2278
|
headers: 'headers',
|
|
2279
|
+
statusCode: 'statusCode',
|
|
2002
2280
|
body: 'body',
|
|
2003
2281
|
};
|
|
2004
2282
|
}
|
|
@@ -2006,6 +2284,7 @@ export class DeleteAppResponse extends $tea.Model {
|
|
|
2006
2284
|
static types(): { [key: string]: any } {
|
|
2007
2285
|
return {
|
|
2008
2286
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2287
|
+
statusCode: 'number',
|
|
2009
2288
|
body: DeleteAppResponseBody,
|
|
2010
2289
|
};
|
|
2011
2290
|
}
|
|
@@ -2058,10 +2337,12 @@ export class DeleteBackendResponseBody extends $tea.Model {
|
|
|
2058
2337
|
|
|
2059
2338
|
export class DeleteBackendResponse extends $tea.Model {
|
|
2060
2339
|
headers: { [key: string]: string };
|
|
2340
|
+
statusCode: number;
|
|
2061
2341
|
body: DeleteBackendResponseBody;
|
|
2062
2342
|
static names(): { [key: string]: string } {
|
|
2063
2343
|
return {
|
|
2064
2344
|
headers: 'headers',
|
|
2345
|
+
statusCode: 'statusCode',
|
|
2065
2346
|
body: 'body',
|
|
2066
2347
|
};
|
|
2067
2348
|
}
|
|
@@ -2069,6 +2350,7 @@ export class DeleteBackendResponse extends $tea.Model {
|
|
|
2069
2350
|
static types(): { [key: string]: any } {
|
|
2070
2351
|
return {
|
|
2071
2352
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2353
|
+
statusCode: 'number',
|
|
2072
2354
|
body: DeleteBackendResponseBody,
|
|
2073
2355
|
};
|
|
2074
2356
|
}
|
|
@@ -2130,10 +2412,12 @@ export class DeleteBackendModelResponseBody extends $tea.Model {
|
|
|
2130
2412
|
|
|
2131
2413
|
export class DeleteBackendModelResponse extends $tea.Model {
|
|
2132
2414
|
headers: { [key: string]: string };
|
|
2415
|
+
statusCode: number;
|
|
2133
2416
|
body: DeleteBackendModelResponseBody;
|
|
2134
2417
|
static names(): { [key: string]: string } {
|
|
2135
2418
|
return {
|
|
2136
2419
|
headers: 'headers',
|
|
2420
|
+
statusCode: 'statusCode',
|
|
2137
2421
|
body: 'body',
|
|
2138
2422
|
};
|
|
2139
2423
|
}
|
|
@@ -2141,6 +2425,7 @@ export class DeleteBackendModelResponse extends $tea.Model {
|
|
|
2141
2425
|
static types(): { [key: string]: any } {
|
|
2142
2426
|
return {
|
|
2143
2427
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2428
|
+
statusCode: 'number',
|
|
2144
2429
|
body: DeleteBackendModelResponseBody,
|
|
2145
2430
|
};
|
|
2146
2431
|
}
|
|
@@ -2196,10 +2481,12 @@ export class DeleteDomainResponseBody extends $tea.Model {
|
|
|
2196
2481
|
|
|
2197
2482
|
export class DeleteDomainResponse extends $tea.Model {
|
|
2198
2483
|
headers: { [key: string]: string };
|
|
2484
|
+
statusCode: number;
|
|
2199
2485
|
body: DeleteDomainResponseBody;
|
|
2200
2486
|
static names(): { [key: string]: string } {
|
|
2201
2487
|
return {
|
|
2202
2488
|
headers: 'headers',
|
|
2489
|
+
statusCode: 'statusCode',
|
|
2203
2490
|
body: 'body',
|
|
2204
2491
|
};
|
|
2205
2492
|
}
|
|
@@ -2207,6 +2494,7 @@ export class DeleteDomainResponse extends $tea.Model {
|
|
|
2207
2494
|
static types(): { [key: string]: any } {
|
|
2208
2495
|
return {
|
|
2209
2496
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2497
|
+
statusCode: 'number',
|
|
2210
2498
|
body: DeleteDomainResponseBody,
|
|
2211
2499
|
};
|
|
2212
2500
|
}
|
|
@@ -2265,10 +2553,12 @@ export class DeleteDomainCertificateResponseBody extends $tea.Model {
|
|
|
2265
2553
|
|
|
2266
2554
|
export class DeleteDomainCertificateResponse extends $tea.Model {
|
|
2267
2555
|
headers: { [key: string]: string };
|
|
2556
|
+
statusCode: number;
|
|
2268
2557
|
body: DeleteDomainCertificateResponseBody;
|
|
2269
2558
|
static names(): { [key: string]: string } {
|
|
2270
2559
|
return {
|
|
2271
2560
|
headers: 'headers',
|
|
2561
|
+
statusCode: 'statusCode',
|
|
2272
2562
|
body: 'body',
|
|
2273
2563
|
};
|
|
2274
2564
|
}
|
|
@@ -2276,6 +2566,7 @@ export class DeleteDomainCertificateResponse extends $tea.Model {
|
|
|
2276
2566
|
static types(): { [key: string]: any } {
|
|
2277
2567
|
return {
|
|
2278
2568
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2569
|
+
statusCode: 'number',
|
|
2279
2570
|
body: DeleteDomainCertificateResponseBody,
|
|
2280
2571
|
};
|
|
2281
2572
|
}
|
|
@@ -2328,10 +2619,12 @@ export class DeleteInstanceResponseBody extends $tea.Model {
|
|
|
2328
2619
|
|
|
2329
2620
|
export class DeleteInstanceResponse extends $tea.Model {
|
|
2330
2621
|
headers: { [key: string]: string };
|
|
2622
|
+
statusCode: number;
|
|
2331
2623
|
body: DeleteInstanceResponseBody;
|
|
2332
2624
|
static names(): { [key: string]: string } {
|
|
2333
2625
|
return {
|
|
2334
2626
|
headers: 'headers',
|
|
2627
|
+
statusCode: 'statusCode',
|
|
2335
2628
|
body: 'body',
|
|
2336
2629
|
};
|
|
2337
2630
|
}
|
|
@@ -2339,6 +2632,7 @@ export class DeleteInstanceResponse extends $tea.Model {
|
|
|
2339
2632
|
static types(): { [key: string]: any } {
|
|
2340
2633
|
return {
|
|
2341
2634
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2635
|
+
statusCode: 'number',
|
|
2342
2636
|
body: DeleteInstanceResponseBody,
|
|
2343
2637
|
};
|
|
2344
2638
|
}
|
|
@@ -2391,10 +2685,12 @@ export class DeleteIpControlResponseBody extends $tea.Model {
|
|
|
2391
2685
|
|
|
2392
2686
|
export class DeleteIpControlResponse extends $tea.Model {
|
|
2393
2687
|
headers: { [key: string]: string };
|
|
2688
|
+
statusCode: number;
|
|
2394
2689
|
body: DeleteIpControlResponseBody;
|
|
2395
2690
|
static names(): { [key: string]: string } {
|
|
2396
2691
|
return {
|
|
2397
2692
|
headers: 'headers',
|
|
2693
|
+
statusCode: 'statusCode',
|
|
2398
2694
|
body: 'body',
|
|
2399
2695
|
};
|
|
2400
2696
|
}
|
|
@@ -2402,6 +2698,7 @@ export class DeleteIpControlResponse extends $tea.Model {
|
|
|
2402
2698
|
static types(): { [key: string]: any } {
|
|
2403
2699
|
return {
|
|
2404
2700
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2701
|
+
statusCode: 'number',
|
|
2405
2702
|
body: DeleteIpControlResponseBody,
|
|
2406
2703
|
};
|
|
2407
2704
|
}
|
|
@@ -2454,10 +2751,12 @@ export class DeleteLogConfigResponseBody extends $tea.Model {
|
|
|
2454
2751
|
|
|
2455
2752
|
export class DeleteLogConfigResponse extends $tea.Model {
|
|
2456
2753
|
headers: { [key: string]: string };
|
|
2754
|
+
statusCode: number;
|
|
2457
2755
|
body: DeleteLogConfigResponseBody;
|
|
2458
2756
|
static names(): { [key: string]: string } {
|
|
2459
2757
|
return {
|
|
2460
2758
|
headers: 'headers',
|
|
2759
|
+
statusCode: 'statusCode',
|
|
2461
2760
|
body: 'body',
|
|
2462
2761
|
};
|
|
2463
2762
|
}
|
|
@@ -2465,6 +2764,7 @@ export class DeleteLogConfigResponse extends $tea.Model {
|
|
|
2465
2764
|
static types(): { [key: string]: any } {
|
|
2466
2765
|
return {
|
|
2467
2766
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2767
|
+
statusCode: 'number',
|
|
2468
2768
|
body: DeleteLogConfigResponseBody,
|
|
2469
2769
|
};
|
|
2470
2770
|
}
|
|
@@ -2517,10 +2817,12 @@ export class DeleteModelResponseBody extends $tea.Model {
|
|
|
2517
2817
|
|
|
2518
2818
|
export class DeleteModelResponse extends $tea.Model {
|
|
2519
2819
|
headers: { [key: string]: string };
|
|
2820
|
+
statusCode: number;
|
|
2520
2821
|
body: DeleteModelResponseBody;
|
|
2521
2822
|
static names(): { [key: string]: string } {
|
|
2522
2823
|
return {
|
|
2523
2824
|
headers: 'headers',
|
|
2825
|
+
statusCode: 'statusCode',
|
|
2524
2826
|
body: 'body',
|
|
2525
2827
|
};
|
|
2526
2828
|
}
|
|
@@ -2528,6 +2830,7 @@ export class DeleteModelResponse extends $tea.Model {
|
|
|
2528
2830
|
static types(): { [key: string]: any } {
|
|
2529
2831
|
return {
|
|
2530
2832
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2833
|
+
statusCode: 'number',
|
|
2531
2834
|
body: DeleteModelResponseBody,
|
|
2532
2835
|
};
|
|
2533
2836
|
}
|
|
@@ -2583,10 +2886,12 @@ export class DeleteMonitorGroupResponseBody extends $tea.Model {
|
|
|
2583
2886
|
|
|
2584
2887
|
export class DeleteMonitorGroupResponse extends $tea.Model {
|
|
2585
2888
|
headers: { [key: string]: string };
|
|
2889
|
+
statusCode: number;
|
|
2586
2890
|
body: DeleteMonitorGroupResponseBody;
|
|
2587
2891
|
static names(): { [key: string]: string } {
|
|
2588
2892
|
return {
|
|
2589
2893
|
headers: 'headers',
|
|
2894
|
+
statusCode: 'statusCode',
|
|
2590
2895
|
body: 'body',
|
|
2591
2896
|
};
|
|
2592
2897
|
}
|
|
@@ -2594,6 +2899,7 @@ export class DeleteMonitorGroupResponse extends $tea.Model {
|
|
|
2594
2899
|
static types(): { [key: string]: any } {
|
|
2595
2900
|
return {
|
|
2596
2901
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2902
|
+
statusCode: 'number',
|
|
2597
2903
|
body: DeleteMonitorGroupResponseBody,
|
|
2598
2904
|
};
|
|
2599
2905
|
}
|
|
@@ -2649,10 +2955,12 @@ export class DeletePluginResponseBody extends $tea.Model {
|
|
|
2649
2955
|
|
|
2650
2956
|
export class DeletePluginResponse extends $tea.Model {
|
|
2651
2957
|
headers: { [key: string]: string };
|
|
2958
|
+
statusCode: number;
|
|
2652
2959
|
body: DeletePluginResponseBody;
|
|
2653
2960
|
static names(): { [key: string]: string } {
|
|
2654
2961
|
return {
|
|
2655
2962
|
headers: 'headers',
|
|
2963
|
+
statusCode: 'statusCode',
|
|
2656
2964
|
body: 'body',
|
|
2657
2965
|
};
|
|
2658
2966
|
}
|
|
@@ -2660,6 +2968,7 @@ export class DeletePluginResponse extends $tea.Model {
|
|
|
2660
2968
|
static types(): { [key: string]: any } {
|
|
2661
2969
|
return {
|
|
2662
2970
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2971
|
+
statusCode: 'number',
|
|
2663
2972
|
body: DeletePluginResponseBody,
|
|
2664
2973
|
};
|
|
2665
2974
|
}
|
|
@@ -2712,10 +3021,12 @@ export class DeleteSignatureResponseBody extends $tea.Model {
|
|
|
2712
3021
|
|
|
2713
3022
|
export class DeleteSignatureResponse extends $tea.Model {
|
|
2714
3023
|
headers: { [key: string]: string };
|
|
3024
|
+
statusCode: number;
|
|
2715
3025
|
body: DeleteSignatureResponseBody;
|
|
2716
3026
|
static names(): { [key: string]: string } {
|
|
2717
3027
|
return {
|
|
2718
3028
|
headers: 'headers',
|
|
3029
|
+
statusCode: 'statusCode',
|
|
2719
3030
|
body: 'body',
|
|
2720
3031
|
};
|
|
2721
3032
|
}
|
|
@@ -2723,6 +3034,7 @@ export class DeleteSignatureResponse extends $tea.Model {
|
|
|
2723
3034
|
static types(): { [key: string]: any } {
|
|
2724
3035
|
return {
|
|
2725
3036
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3037
|
+
statusCode: 'number',
|
|
2726
3038
|
body: DeleteSignatureResponseBody,
|
|
2727
3039
|
};
|
|
2728
3040
|
}
|
|
@@ -2775,10 +3087,12 @@ export class DeleteTrafficControlResponseBody extends $tea.Model {
|
|
|
2775
3087
|
|
|
2776
3088
|
export class DeleteTrafficControlResponse extends $tea.Model {
|
|
2777
3089
|
headers: { [key: string]: string };
|
|
3090
|
+
statusCode: number;
|
|
2778
3091
|
body: DeleteTrafficControlResponseBody;
|
|
2779
3092
|
static names(): { [key: string]: string } {
|
|
2780
3093
|
return {
|
|
2781
3094
|
headers: 'headers',
|
|
3095
|
+
statusCode: 'statusCode',
|
|
2782
3096
|
body: 'body',
|
|
2783
3097
|
};
|
|
2784
3098
|
}
|
|
@@ -2786,6 +3100,7 @@ export class DeleteTrafficControlResponse extends $tea.Model {
|
|
|
2786
3100
|
static types(): { [key: string]: any } {
|
|
2787
3101
|
return {
|
|
2788
3102
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3103
|
+
statusCode: 'number',
|
|
2789
3104
|
body: DeleteTrafficControlResponseBody,
|
|
2790
3105
|
};
|
|
2791
3106
|
}
|
|
@@ -2844,10 +3159,12 @@ export class DeleteTrafficSpecialControlResponseBody extends $tea.Model {
|
|
|
2844
3159
|
|
|
2845
3160
|
export class DeleteTrafficSpecialControlResponse extends $tea.Model {
|
|
2846
3161
|
headers: { [key: string]: string };
|
|
3162
|
+
statusCode: number;
|
|
2847
3163
|
body: DeleteTrafficSpecialControlResponseBody;
|
|
2848
3164
|
static names(): { [key: string]: string } {
|
|
2849
3165
|
return {
|
|
2850
3166
|
headers: 'headers',
|
|
3167
|
+
statusCode: 'statusCode',
|
|
2851
3168
|
body: 'body',
|
|
2852
3169
|
};
|
|
2853
3170
|
}
|
|
@@ -2855,6 +3172,7 @@ export class DeleteTrafficSpecialControlResponse extends $tea.Model {
|
|
|
2855
3172
|
static types(): { [key: string]: any } {
|
|
2856
3173
|
return {
|
|
2857
3174
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3175
|
+
statusCode: 'number',
|
|
2858
3176
|
body: DeleteTrafficSpecialControlResponseBody,
|
|
2859
3177
|
};
|
|
2860
3178
|
}
|
|
@@ -2916,10 +3234,12 @@ export class DeployApiResponseBody extends $tea.Model {
|
|
|
2916
3234
|
|
|
2917
3235
|
export class DeployApiResponse extends $tea.Model {
|
|
2918
3236
|
headers: { [key: string]: string };
|
|
3237
|
+
statusCode: number;
|
|
2919
3238
|
body: DeployApiResponseBody;
|
|
2920
3239
|
static names(): { [key: string]: string } {
|
|
2921
3240
|
return {
|
|
2922
3241
|
headers: 'headers',
|
|
3242
|
+
statusCode: 'statusCode',
|
|
2923
3243
|
body: 'body',
|
|
2924
3244
|
};
|
|
2925
3245
|
}
|
|
@@ -2927,6 +3247,7 @@ export class DeployApiResponse extends $tea.Model {
|
|
|
2927
3247
|
static types(): { [key: string]: any } {
|
|
2928
3248
|
return {
|
|
2929
3249
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3250
|
+
statusCode: 'number',
|
|
2930
3251
|
body: DeployApiResponseBody,
|
|
2931
3252
|
};
|
|
2932
3253
|
}
|
|
@@ -2982,10 +3303,12 @@ export class DescribeAbolishApiTaskResponseBody extends $tea.Model {
|
|
|
2982
3303
|
|
|
2983
3304
|
export class DescribeAbolishApiTaskResponse extends $tea.Model {
|
|
2984
3305
|
headers: { [key: string]: string };
|
|
3306
|
+
statusCode: number;
|
|
2985
3307
|
body: DescribeAbolishApiTaskResponseBody;
|
|
2986
3308
|
static names(): { [key: string]: string } {
|
|
2987
3309
|
return {
|
|
2988
3310
|
headers: 'headers',
|
|
3311
|
+
statusCode: 'statusCode',
|
|
2989
3312
|
body: 'body',
|
|
2990
3313
|
};
|
|
2991
3314
|
}
|
|
@@ -2993,6 +3316,7 @@ export class DescribeAbolishApiTaskResponse extends $tea.Model {
|
|
|
2993
3316
|
static types(): { [key: string]: any } {
|
|
2994
3317
|
return {
|
|
2995
3318
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3319
|
+
statusCode: 'number',
|
|
2996
3320
|
body: DescribeAbolishApiTaskResponseBody,
|
|
2997
3321
|
};
|
|
2998
3322
|
}
|
|
@@ -3002,6 +3326,168 @@ export class DescribeAbolishApiTaskResponse extends $tea.Model {
|
|
|
3002
3326
|
}
|
|
3003
3327
|
}
|
|
3004
3328
|
|
|
3329
|
+
export class DescribeAccessControlListAttributeRequest extends $tea.Model {
|
|
3330
|
+
aclId?: string;
|
|
3331
|
+
securityToken?: string;
|
|
3332
|
+
static names(): { [key: string]: string } {
|
|
3333
|
+
return {
|
|
3334
|
+
aclId: 'AclId',
|
|
3335
|
+
securityToken: 'SecurityToken',
|
|
3336
|
+
};
|
|
3337
|
+
}
|
|
3338
|
+
|
|
3339
|
+
static types(): { [key: string]: any } {
|
|
3340
|
+
return {
|
|
3341
|
+
aclId: 'string',
|
|
3342
|
+
securityToken: 'string',
|
|
3343
|
+
};
|
|
3344
|
+
}
|
|
3345
|
+
|
|
3346
|
+
constructor(map?: { [key: string]: any }) {
|
|
3347
|
+
super(map);
|
|
3348
|
+
}
|
|
3349
|
+
}
|
|
3350
|
+
|
|
3351
|
+
export class DescribeAccessControlListAttributeResponseBody extends $tea.Model {
|
|
3352
|
+
aclEntrys?: DescribeAccessControlListAttributeResponseBodyAclEntrys;
|
|
3353
|
+
aclId?: string;
|
|
3354
|
+
aclName?: string;
|
|
3355
|
+
isUsed?: string;
|
|
3356
|
+
requestId?: string;
|
|
3357
|
+
static names(): { [key: string]: string } {
|
|
3358
|
+
return {
|
|
3359
|
+
aclEntrys: 'AclEntrys',
|
|
3360
|
+
aclId: 'AclId',
|
|
3361
|
+
aclName: 'AclName',
|
|
3362
|
+
isUsed: 'IsUsed',
|
|
3363
|
+
requestId: 'RequestId',
|
|
3364
|
+
};
|
|
3365
|
+
}
|
|
3366
|
+
|
|
3367
|
+
static types(): { [key: string]: any } {
|
|
3368
|
+
return {
|
|
3369
|
+
aclEntrys: DescribeAccessControlListAttributeResponseBodyAclEntrys,
|
|
3370
|
+
aclId: 'string',
|
|
3371
|
+
aclName: 'string',
|
|
3372
|
+
isUsed: 'string',
|
|
3373
|
+
requestId: 'string',
|
|
3374
|
+
};
|
|
3375
|
+
}
|
|
3376
|
+
|
|
3377
|
+
constructor(map?: { [key: string]: any }) {
|
|
3378
|
+
super(map);
|
|
3379
|
+
}
|
|
3380
|
+
}
|
|
3381
|
+
|
|
3382
|
+
export class DescribeAccessControlListAttributeResponse extends $tea.Model {
|
|
3383
|
+
headers: { [key: string]: string };
|
|
3384
|
+
statusCode: number;
|
|
3385
|
+
body: DescribeAccessControlListAttributeResponseBody;
|
|
3386
|
+
static names(): { [key: string]: string } {
|
|
3387
|
+
return {
|
|
3388
|
+
headers: 'headers',
|
|
3389
|
+
statusCode: 'statusCode',
|
|
3390
|
+
body: 'body',
|
|
3391
|
+
};
|
|
3392
|
+
}
|
|
3393
|
+
|
|
3394
|
+
static types(): { [key: string]: any } {
|
|
3395
|
+
return {
|
|
3396
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3397
|
+
statusCode: 'number',
|
|
3398
|
+
body: DescribeAccessControlListAttributeResponseBody,
|
|
3399
|
+
};
|
|
3400
|
+
}
|
|
3401
|
+
|
|
3402
|
+
constructor(map?: { [key: string]: any }) {
|
|
3403
|
+
super(map);
|
|
3404
|
+
}
|
|
3405
|
+
}
|
|
3406
|
+
|
|
3407
|
+
export class DescribeAccessControlListsRequest extends $tea.Model {
|
|
3408
|
+
aclName?: string;
|
|
3409
|
+
pageNumber?: number;
|
|
3410
|
+
pageSize?: number;
|
|
3411
|
+
securityToken?: string;
|
|
3412
|
+
static names(): { [key: string]: string } {
|
|
3413
|
+
return {
|
|
3414
|
+
aclName: 'AclName',
|
|
3415
|
+
pageNumber: 'PageNumber',
|
|
3416
|
+
pageSize: 'PageSize',
|
|
3417
|
+
securityToken: 'SecurityToken',
|
|
3418
|
+
};
|
|
3419
|
+
}
|
|
3420
|
+
|
|
3421
|
+
static types(): { [key: string]: any } {
|
|
3422
|
+
return {
|
|
3423
|
+
aclName: 'string',
|
|
3424
|
+
pageNumber: 'number',
|
|
3425
|
+
pageSize: 'number',
|
|
3426
|
+
securityToken: 'string',
|
|
3427
|
+
};
|
|
3428
|
+
}
|
|
3429
|
+
|
|
3430
|
+
constructor(map?: { [key: string]: any }) {
|
|
3431
|
+
super(map);
|
|
3432
|
+
}
|
|
3433
|
+
}
|
|
3434
|
+
|
|
3435
|
+
export class DescribeAccessControlListsResponseBody extends $tea.Model {
|
|
3436
|
+
acls?: DescribeAccessControlListsResponseBodyAcls;
|
|
3437
|
+
pageNumber?: number;
|
|
3438
|
+
pageSize?: number;
|
|
3439
|
+
requestId?: string;
|
|
3440
|
+
totalCount?: number;
|
|
3441
|
+
static names(): { [key: string]: string } {
|
|
3442
|
+
return {
|
|
3443
|
+
acls: 'Acls',
|
|
3444
|
+
pageNumber: 'PageNumber',
|
|
3445
|
+
pageSize: 'PageSize',
|
|
3446
|
+
requestId: 'RequestId',
|
|
3447
|
+
totalCount: 'TotalCount',
|
|
3448
|
+
};
|
|
3449
|
+
}
|
|
3450
|
+
|
|
3451
|
+
static types(): { [key: string]: any } {
|
|
3452
|
+
return {
|
|
3453
|
+
acls: DescribeAccessControlListsResponseBodyAcls,
|
|
3454
|
+
pageNumber: 'number',
|
|
3455
|
+
pageSize: 'number',
|
|
3456
|
+
requestId: 'string',
|
|
3457
|
+
totalCount: 'number',
|
|
3458
|
+
};
|
|
3459
|
+
}
|
|
3460
|
+
|
|
3461
|
+
constructor(map?: { [key: string]: any }) {
|
|
3462
|
+
super(map);
|
|
3463
|
+
}
|
|
3464
|
+
}
|
|
3465
|
+
|
|
3466
|
+
export class DescribeAccessControlListsResponse extends $tea.Model {
|
|
3467
|
+
headers: { [key: string]: string };
|
|
3468
|
+
statusCode: number;
|
|
3469
|
+
body: DescribeAccessControlListsResponseBody;
|
|
3470
|
+
static names(): { [key: string]: string } {
|
|
3471
|
+
return {
|
|
3472
|
+
headers: 'headers',
|
|
3473
|
+
statusCode: 'statusCode',
|
|
3474
|
+
body: 'body',
|
|
3475
|
+
};
|
|
3476
|
+
}
|
|
3477
|
+
|
|
3478
|
+
static types(): { [key: string]: any } {
|
|
3479
|
+
return {
|
|
3480
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3481
|
+
statusCode: 'number',
|
|
3482
|
+
body: DescribeAccessControlListsResponseBody,
|
|
3483
|
+
};
|
|
3484
|
+
}
|
|
3485
|
+
|
|
3486
|
+
constructor(map?: { [key: string]: any }) {
|
|
3487
|
+
super(map);
|
|
3488
|
+
}
|
|
3489
|
+
}
|
|
3490
|
+
|
|
3005
3491
|
export class DescribeApiRequest extends $tea.Model {
|
|
3006
3492
|
apiId?: string;
|
|
3007
3493
|
groupId?: string;
|
|
@@ -3153,10 +3639,12 @@ export class DescribeApiResponseBody extends $tea.Model {
|
|
|
3153
3639
|
|
|
3154
3640
|
export class DescribeApiResponse extends $tea.Model {
|
|
3155
3641
|
headers: { [key: string]: string };
|
|
3642
|
+
statusCode: number;
|
|
3156
3643
|
body: DescribeApiResponseBody;
|
|
3157
3644
|
static names(): { [key: string]: string } {
|
|
3158
3645
|
return {
|
|
3159
3646
|
headers: 'headers',
|
|
3647
|
+
statusCode: 'statusCode',
|
|
3160
3648
|
body: 'body',
|
|
3161
3649
|
};
|
|
3162
3650
|
}
|
|
@@ -3164,6 +3652,7 @@ export class DescribeApiResponse extends $tea.Model {
|
|
|
3164
3652
|
static types(): { [key: string]: any } {
|
|
3165
3653
|
return {
|
|
3166
3654
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3655
|
+
statusCode: 'number',
|
|
3167
3656
|
body: DescribeApiResponseBody,
|
|
3168
3657
|
};
|
|
3169
3658
|
}
|
|
@@ -3279,10 +3768,12 @@ export class DescribeApiDocResponseBody extends $tea.Model {
|
|
|
3279
3768
|
|
|
3280
3769
|
export class DescribeApiDocResponse extends $tea.Model {
|
|
3281
3770
|
headers: { [key: string]: string };
|
|
3771
|
+
statusCode: number;
|
|
3282
3772
|
body: DescribeApiDocResponseBody;
|
|
3283
3773
|
static names(): { [key: string]: string } {
|
|
3284
3774
|
return {
|
|
3285
3775
|
headers: 'headers',
|
|
3776
|
+
statusCode: 'statusCode',
|
|
3286
3777
|
body: 'body',
|
|
3287
3778
|
};
|
|
3288
3779
|
}
|
|
@@ -3290,6 +3781,7 @@ export class DescribeApiDocResponse extends $tea.Model {
|
|
|
3290
3781
|
static types(): { [key: string]: any } {
|
|
3291
3782
|
return {
|
|
3292
3783
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3784
|
+
statusCode: 'number',
|
|
3293
3785
|
body: DescribeApiDocResponseBody,
|
|
3294
3786
|
};
|
|
3295
3787
|
}
|
|
@@ -3435,10 +3927,12 @@ export class DescribeApiGroupResponseBody extends $tea.Model {
|
|
|
3435
3927
|
|
|
3436
3928
|
export class DescribeApiGroupResponse extends $tea.Model {
|
|
3437
3929
|
headers: { [key: string]: string };
|
|
3930
|
+
statusCode: number;
|
|
3438
3931
|
body: DescribeApiGroupResponseBody;
|
|
3439
3932
|
static names(): { [key: string]: string } {
|
|
3440
3933
|
return {
|
|
3441
3934
|
headers: 'headers',
|
|
3935
|
+
statusCode: 'statusCode',
|
|
3442
3936
|
body: 'body',
|
|
3443
3937
|
};
|
|
3444
3938
|
}
|
|
@@ -3446,6 +3940,7 @@ export class DescribeApiGroupResponse extends $tea.Model {
|
|
|
3446
3940
|
static types(): { [key: string]: any } {
|
|
3447
3941
|
return {
|
|
3448
3942
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3943
|
+
statusCode: 'number',
|
|
3449
3944
|
body: DescribeApiGroupResponseBody,
|
|
3450
3945
|
};
|
|
3451
3946
|
}
|
|
@@ -3501,10 +3996,12 @@ export class DescribeApiGroupVpcWhitelistResponseBody extends $tea.Model {
|
|
|
3501
3996
|
|
|
3502
3997
|
export class DescribeApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
3503
3998
|
headers: { [key: string]: string };
|
|
3999
|
+
statusCode: number;
|
|
3504
4000
|
body: DescribeApiGroupVpcWhitelistResponseBody;
|
|
3505
4001
|
static names(): { [key: string]: string } {
|
|
3506
4002
|
return {
|
|
3507
4003
|
headers: 'headers',
|
|
4004
|
+
statusCode: 'statusCode',
|
|
3508
4005
|
body: 'body',
|
|
3509
4006
|
};
|
|
3510
4007
|
}
|
|
@@ -3512,6 +4009,7 @@ export class DescribeApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
|
3512
4009
|
static types(): { [key: string]: any } {
|
|
3513
4010
|
return {
|
|
3514
4011
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4012
|
+
statusCode: 'number',
|
|
3515
4013
|
body: DescribeApiGroupVpcWhitelistResponseBody,
|
|
3516
4014
|
};
|
|
3517
4015
|
}
|
|
@@ -3597,10 +4095,12 @@ export class DescribeApiGroupsResponseBody extends $tea.Model {
|
|
|
3597
4095
|
|
|
3598
4096
|
export class DescribeApiGroupsResponse extends $tea.Model {
|
|
3599
4097
|
headers: { [key: string]: string };
|
|
4098
|
+
statusCode: number;
|
|
3600
4099
|
body: DescribeApiGroupsResponseBody;
|
|
3601
4100
|
static names(): { [key: string]: string } {
|
|
3602
4101
|
return {
|
|
3603
4102
|
headers: 'headers',
|
|
4103
|
+
statusCode: 'statusCode',
|
|
3604
4104
|
body: 'body',
|
|
3605
4105
|
};
|
|
3606
4106
|
}
|
|
@@ -3608,6 +4108,7 @@ export class DescribeApiGroupsResponse extends $tea.Model {
|
|
|
3608
4108
|
static types(): { [key: string]: any } {
|
|
3609
4109
|
return {
|
|
3610
4110
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4111
|
+
statusCode: 'number',
|
|
3611
4112
|
body: DescribeApiGroupsResponseBody,
|
|
3612
4113
|
};
|
|
3613
4114
|
}
|
|
@@ -3687,10 +4188,12 @@ export class DescribeApiHistoriesResponseBody extends $tea.Model {
|
|
|
3687
4188
|
|
|
3688
4189
|
export class DescribeApiHistoriesResponse extends $tea.Model {
|
|
3689
4190
|
headers: { [key: string]: string };
|
|
4191
|
+
statusCode: number;
|
|
3690
4192
|
body: DescribeApiHistoriesResponseBody;
|
|
3691
4193
|
static names(): { [key: string]: string } {
|
|
3692
4194
|
return {
|
|
3693
4195
|
headers: 'headers',
|
|
4196
|
+
statusCode: 'statusCode',
|
|
3694
4197
|
body: 'body',
|
|
3695
4198
|
};
|
|
3696
4199
|
}
|
|
@@ -3698,6 +4201,7 @@ export class DescribeApiHistoriesResponse extends $tea.Model {
|
|
|
3698
4201
|
static types(): { [key: string]: any } {
|
|
3699
4202
|
return {
|
|
3700
4203
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4204
|
+
statusCode: 'number',
|
|
3701
4205
|
body: DescribeApiHistoriesResponseBody,
|
|
3702
4206
|
};
|
|
3703
4207
|
}
|
|
@@ -3861,10 +4365,12 @@ export class DescribeApiHistoryResponseBody extends $tea.Model {
|
|
|
3861
4365
|
|
|
3862
4366
|
export class DescribeApiHistoryResponse extends $tea.Model {
|
|
3863
4367
|
headers: { [key: string]: string };
|
|
4368
|
+
statusCode: number;
|
|
3864
4369
|
body: DescribeApiHistoryResponseBody;
|
|
3865
4370
|
static names(): { [key: string]: string } {
|
|
3866
4371
|
return {
|
|
3867
4372
|
headers: 'headers',
|
|
4373
|
+
statusCode: 'statusCode',
|
|
3868
4374
|
body: 'body',
|
|
3869
4375
|
};
|
|
3870
4376
|
}
|
|
@@ -3872,6 +4378,7 @@ export class DescribeApiHistoryResponse extends $tea.Model {
|
|
|
3872
4378
|
static types(): { [key: string]: any } {
|
|
3873
4379
|
return {
|
|
3874
4380
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4381
|
+
statusCode: 'number',
|
|
3875
4382
|
body: DescribeApiHistoryResponseBody,
|
|
3876
4383
|
};
|
|
3877
4384
|
}
|
|
@@ -3948,10 +4455,12 @@ export class DescribeApiIpControlsResponseBody extends $tea.Model {
|
|
|
3948
4455
|
|
|
3949
4456
|
export class DescribeApiIpControlsResponse extends $tea.Model {
|
|
3950
4457
|
headers: { [key: string]: string };
|
|
4458
|
+
statusCode: number;
|
|
3951
4459
|
body: DescribeApiIpControlsResponseBody;
|
|
3952
4460
|
static names(): { [key: string]: string } {
|
|
3953
4461
|
return {
|
|
3954
4462
|
headers: 'headers',
|
|
4463
|
+
statusCode: 'statusCode',
|
|
3955
4464
|
body: 'body',
|
|
3956
4465
|
};
|
|
3957
4466
|
}
|
|
@@ -3959,6 +4468,7 @@ export class DescribeApiIpControlsResponse extends $tea.Model {
|
|
|
3959
4468
|
static types(): { [key: string]: any } {
|
|
3960
4469
|
return {
|
|
3961
4470
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4471
|
+
statusCode: 'number',
|
|
3962
4472
|
body: DescribeApiIpControlsResponseBody,
|
|
3963
4473
|
};
|
|
3964
4474
|
}
|
|
@@ -4026,10 +4536,12 @@ export class DescribeApiLatencyDataResponseBody extends $tea.Model {
|
|
|
4026
4536
|
|
|
4027
4537
|
export class DescribeApiLatencyDataResponse extends $tea.Model {
|
|
4028
4538
|
headers: { [key: string]: string };
|
|
4539
|
+
statusCode: number;
|
|
4029
4540
|
body: DescribeApiLatencyDataResponseBody;
|
|
4030
4541
|
static names(): { [key: string]: string } {
|
|
4031
4542
|
return {
|
|
4032
4543
|
headers: 'headers',
|
|
4544
|
+
statusCode: 'statusCode',
|
|
4033
4545
|
body: 'body',
|
|
4034
4546
|
};
|
|
4035
4547
|
}
|
|
@@ -4037,6 +4549,7 @@ export class DescribeApiLatencyDataResponse extends $tea.Model {
|
|
|
4037
4549
|
static types(): { [key: string]: any } {
|
|
4038
4550
|
return {
|
|
4039
4551
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4552
|
+
statusCode: 'number',
|
|
4040
4553
|
body: DescribeApiLatencyDataResponseBody,
|
|
4041
4554
|
};
|
|
4042
4555
|
}
|
|
@@ -4101,10 +4614,12 @@ export class DescribeApiMarketAttributesResponseBody extends $tea.Model {
|
|
|
4101
4614
|
|
|
4102
4615
|
export class DescribeApiMarketAttributesResponse extends $tea.Model {
|
|
4103
4616
|
headers: { [key: string]: string };
|
|
4617
|
+
statusCode: number;
|
|
4104
4618
|
body: DescribeApiMarketAttributesResponseBody;
|
|
4105
4619
|
static names(): { [key: string]: string } {
|
|
4106
4620
|
return {
|
|
4107
4621
|
headers: 'headers',
|
|
4622
|
+
statusCode: 'statusCode',
|
|
4108
4623
|
body: 'body',
|
|
4109
4624
|
};
|
|
4110
4625
|
}
|
|
@@ -4112,6 +4627,7 @@ export class DescribeApiMarketAttributesResponse extends $tea.Model {
|
|
|
4112
4627
|
static types(): { [key: string]: any } {
|
|
4113
4628
|
return {
|
|
4114
4629
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4630
|
+
statusCode: 'number',
|
|
4115
4631
|
body: DescribeApiMarketAttributesResponseBody,
|
|
4116
4632
|
};
|
|
4117
4633
|
}
|
|
@@ -4182,10 +4698,12 @@ export class DescribeApiQpsDataResponseBody extends $tea.Model {
|
|
|
4182
4698
|
|
|
4183
4699
|
export class DescribeApiQpsDataResponse extends $tea.Model {
|
|
4184
4700
|
headers: { [key: string]: string };
|
|
4701
|
+
statusCode: number;
|
|
4185
4702
|
body: DescribeApiQpsDataResponseBody;
|
|
4186
4703
|
static names(): { [key: string]: string } {
|
|
4187
4704
|
return {
|
|
4188
4705
|
headers: 'headers',
|
|
4706
|
+
statusCode: 'statusCode',
|
|
4189
4707
|
body: 'body',
|
|
4190
4708
|
};
|
|
4191
4709
|
}
|
|
@@ -4193,6 +4711,7 @@ export class DescribeApiQpsDataResponse extends $tea.Model {
|
|
|
4193
4711
|
static types(): { [key: string]: any } {
|
|
4194
4712
|
return {
|
|
4195
4713
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4714
|
+
statusCode: 'number',
|
|
4196
4715
|
body: DescribeApiQpsDataResponseBody,
|
|
4197
4716
|
};
|
|
4198
4717
|
}
|
|
@@ -4269,10 +4788,12 @@ export class DescribeApiSignaturesResponseBody extends $tea.Model {
|
|
|
4269
4788
|
|
|
4270
4789
|
export class DescribeApiSignaturesResponse extends $tea.Model {
|
|
4271
4790
|
headers: { [key: string]: string };
|
|
4791
|
+
statusCode: number;
|
|
4272
4792
|
body: DescribeApiSignaturesResponseBody;
|
|
4273
4793
|
static names(): { [key: string]: string } {
|
|
4274
4794
|
return {
|
|
4275
4795
|
headers: 'headers',
|
|
4796
|
+
statusCode: 'statusCode',
|
|
4276
4797
|
body: 'body',
|
|
4277
4798
|
};
|
|
4278
4799
|
}
|
|
@@ -4280,6 +4801,7 @@ export class DescribeApiSignaturesResponse extends $tea.Model {
|
|
|
4280
4801
|
static types(): { [key: string]: any } {
|
|
4281
4802
|
return {
|
|
4282
4803
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4804
|
+
statusCode: 'number',
|
|
4283
4805
|
body: DescribeApiSignaturesResponseBody,
|
|
4284
4806
|
};
|
|
4285
4807
|
}
|
|
@@ -4356,10 +4878,12 @@ export class DescribeApiTrafficControlsResponseBody extends $tea.Model {
|
|
|
4356
4878
|
|
|
4357
4879
|
export class DescribeApiTrafficControlsResponse extends $tea.Model {
|
|
4358
4880
|
headers: { [key: string]: string };
|
|
4881
|
+
statusCode: number;
|
|
4359
4882
|
body: DescribeApiTrafficControlsResponseBody;
|
|
4360
4883
|
static names(): { [key: string]: string } {
|
|
4361
4884
|
return {
|
|
4362
4885
|
headers: 'headers',
|
|
4886
|
+
statusCode: 'statusCode',
|
|
4363
4887
|
body: 'body',
|
|
4364
4888
|
};
|
|
4365
4889
|
}
|
|
@@ -4367,6 +4891,7 @@ export class DescribeApiTrafficControlsResponse extends $tea.Model {
|
|
|
4367
4891
|
static types(): { [key: string]: any } {
|
|
4368
4892
|
return {
|
|
4369
4893
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4894
|
+
statusCode: 'number',
|
|
4370
4895
|
body: DescribeApiTrafficControlsResponseBody,
|
|
4371
4896
|
};
|
|
4372
4897
|
}
|
|
@@ -4437,10 +4962,12 @@ export class DescribeApiTrafficDataResponseBody extends $tea.Model {
|
|
|
4437
4962
|
|
|
4438
4963
|
export class DescribeApiTrafficDataResponse extends $tea.Model {
|
|
4439
4964
|
headers: { [key: string]: string };
|
|
4965
|
+
statusCode: number;
|
|
4440
4966
|
body: DescribeApiTrafficDataResponseBody;
|
|
4441
4967
|
static names(): { [key: string]: string } {
|
|
4442
4968
|
return {
|
|
4443
4969
|
headers: 'headers',
|
|
4970
|
+
statusCode: 'statusCode',
|
|
4444
4971
|
body: 'body',
|
|
4445
4972
|
};
|
|
4446
4973
|
}
|
|
@@ -4448,6 +4975,7 @@ export class DescribeApiTrafficDataResponse extends $tea.Model {
|
|
|
4448
4975
|
static types(): { [key: string]: any } {
|
|
4449
4976
|
return {
|
|
4450
4977
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4978
|
+
statusCode: 'number',
|
|
4451
4979
|
body: DescribeApiTrafficDataResponseBody,
|
|
4452
4980
|
};
|
|
4453
4981
|
}
|
|
@@ -4536,10 +5064,12 @@ export class DescribeApisResponseBody extends $tea.Model {
|
|
|
4536
5064
|
|
|
4537
5065
|
export class DescribeApisResponse extends $tea.Model {
|
|
4538
5066
|
headers: { [key: string]: string };
|
|
5067
|
+
statusCode: number;
|
|
4539
5068
|
body: DescribeApisResponseBody;
|
|
4540
5069
|
static names(): { [key: string]: string } {
|
|
4541
5070
|
return {
|
|
4542
5071
|
headers: 'headers',
|
|
5072
|
+
statusCode: 'statusCode',
|
|
4543
5073
|
body: 'body',
|
|
4544
5074
|
};
|
|
4545
5075
|
}
|
|
@@ -4547,6 +5077,7 @@ export class DescribeApisResponse extends $tea.Model {
|
|
|
4547
5077
|
static types(): { [key: string]: any } {
|
|
4548
5078
|
return {
|
|
4549
5079
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5080
|
+
statusCode: 'number',
|
|
4550
5081
|
body: DescribeApisResponseBody,
|
|
4551
5082
|
};
|
|
4552
5083
|
}
|
|
@@ -4560,6 +5091,7 @@ export class DescribeApisByAppRequest extends $tea.Model {
|
|
|
4560
5091
|
apiName?: string;
|
|
4561
5092
|
apiUid?: string;
|
|
4562
5093
|
appId?: number;
|
|
5094
|
+
description?: string;
|
|
4563
5095
|
method?: string;
|
|
4564
5096
|
pageNumber?: number;
|
|
4565
5097
|
pageSize?: number;
|
|
@@ -4570,6 +5102,7 @@ export class DescribeApisByAppRequest extends $tea.Model {
|
|
|
4570
5102
|
apiName: 'ApiName',
|
|
4571
5103
|
apiUid: 'ApiUid',
|
|
4572
5104
|
appId: 'AppId',
|
|
5105
|
+
description: 'Description',
|
|
4573
5106
|
method: 'Method',
|
|
4574
5107
|
pageNumber: 'PageNumber',
|
|
4575
5108
|
pageSize: 'PageSize',
|
|
@@ -4583,6 +5116,7 @@ export class DescribeApisByAppRequest extends $tea.Model {
|
|
|
4583
5116
|
apiName: 'string',
|
|
4584
5117
|
apiUid: 'string',
|
|
4585
5118
|
appId: 'number',
|
|
5119
|
+
description: 'string',
|
|
4586
5120
|
method: 'string',
|
|
4587
5121
|
pageNumber: 'number',
|
|
4588
5122
|
pageSize: 'number',
|
|
@@ -4629,10 +5163,12 @@ export class DescribeApisByAppResponseBody extends $tea.Model {
|
|
|
4629
5163
|
|
|
4630
5164
|
export class DescribeApisByAppResponse extends $tea.Model {
|
|
4631
5165
|
headers: { [key: string]: string };
|
|
5166
|
+
statusCode: number;
|
|
4632
5167
|
body: DescribeApisByAppResponseBody;
|
|
4633
5168
|
static names(): { [key: string]: string } {
|
|
4634
5169
|
return {
|
|
4635
5170
|
headers: 'headers',
|
|
5171
|
+
statusCode: 'statusCode',
|
|
4636
5172
|
body: 'body',
|
|
4637
5173
|
};
|
|
4638
5174
|
}
|
|
@@ -4640,6 +5176,7 @@ export class DescribeApisByAppResponse extends $tea.Model {
|
|
|
4640
5176
|
static types(): { [key: string]: any } {
|
|
4641
5177
|
return {
|
|
4642
5178
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5179
|
+
statusCode: 'number',
|
|
4643
5180
|
body: DescribeApisByAppResponseBody,
|
|
4644
5181
|
};
|
|
4645
5182
|
}
|
|
@@ -4713,10 +5250,12 @@ export class DescribeApisByBackendResponseBody extends $tea.Model {
|
|
|
4713
5250
|
|
|
4714
5251
|
export class DescribeApisByBackendResponse extends $tea.Model {
|
|
4715
5252
|
headers: { [key: string]: string };
|
|
5253
|
+
statusCode: number;
|
|
4716
5254
|
body: DescribeApisByBackendResponseBody;
|
|
4717
5255
|
static names(): { [key: string]: string } {
|
|
4718
5256
|
return {
|
|
4719
5257
|
headers: 'headers',
|
|
5258
|
+
statusCode: 'statusCode',
|
|
4720
5259
|
body: 'body',
|
|
4721
5260
|
};
|
|
4722
5261
|
}
|
|
@@ -4724,6 +5263,7 @@ export class DescribeApisByBackendResponse extends $tea.Model {
|
|
|
4724
5263
|
static types(): { [key: string]: any } {
|
|
4725
5264
|
return {
|
|
4726
5265
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5266
|
+
statusCode: 'number',
|
|
4727
5267
|
body: DescribeApisByBackendResponseBody,
|
|
4728
5268
|
};
|
|
4729
5269
|
}
|
|
@@ -4794,10 +5334,12 @@ export class DescribeApisByIpControlResponseBody extends $tea.Model {
|
|
|
4794
5334
|
|
|
4795
5335
|
export class DescribeApisByIpControlResponse extends $tea.Model {
|
|
4796
5336
|
headers: { [key: string]: string };
|
|
5337
|
+
statusCode: number;
|
|
4797
5338
|
body: DescribeApisByIpControlResponseBody;
|
|
4798
5339
|
static names(): { [key: string]: string } {
|
|
4799
5340
|
return {
|
|
4800
5341
|
headers: 'headers',
|
|
5342
|
+
statusCode: 'statusCode',
|
|
4801
5343
|
body: 'body',
|
|
4802
5344
|
};
|
|
4803
5345
|
}
|
|
@@ -4805,6 +5347,7 @@ export class DescribeApisByIpControlResponse extends $tea.Model {
|
|
|
4805
5347
|
static types(): { [key: string]: any } {
|
|
4806
5348
|
return {
|
|
4807
5349
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5350
|
+
statusCode: 'number',
|
|
4808
5351
|
body: DescribeApisByIpControlResponseBody,
|
|
4809
5352
|
};
|
|
4810
5353
|
}
|
|
@@ -4875,10 +5418,12 @@ export class DescribeApisBySignatureResponseBody extends $tea.Model {
|
|
|
4875
5418
|
|
|
4876
5419
|
export class DescribeApisBySignatureResponse extends $tea.Model {
|
|
4877
5420
|
headers: { [key: string]: string };
|
|
5421
|
+
statusCode: number;
|
|
4878
5422
|
body: DescribeApisBySignatureResponseBody;
|
|
4879
5423
|
static names(): { [key: string]: string } {
|
|
4880
5424
|
return {
|
|
4881
5425
|
headers: 'headers',
|
|
5426
|
+
statusCode: 'statusCode',
|
|
4882
5427
|
body: 'body',
|
|
4883
5428
|
};
|
|
4884
5429
|
}
|
|
@@ -4886,6 +5431,7 @@ export class DescribeApisBySignatureResponse extends $tea.Model {
|
|
|
4886
5431
|
static types(): { [key: string]: any } {
|
|
4887
5432
|
return {
|
|
4888
5433
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5434
|
+
statusCode: 'number',
|
|
4889
5435
|
body: DescribeApisBySignatureResponseBody,
|
|
4890
5436
|
};
|
|
4891
5437
|
}
|
|
@@ -4956,10 +5502,12 @@ export class DescribeApisByTrafficControlResponseBody extends $tea.Model {
|
|
|
4956
5502
|
|
|
4957
5503
|
export class DescribeApisByTrafficControlResponse extends $tea.Model {
|
|
4958
5504
|
headers: { [key: string]: string };
|
|
5505
|
+
statusCode: number;
|
|
4959
5506
|
body: DescribeApisByTrafficControlResponseBody;
|
|
4960
5507
|
static names(): { [key: string]: string } {
|
|
4961
5508
|
return {
|
|
4962
5509
|
headers: 'headers',
|
|
5510
|
+
statusCode: 'statusCode',
|
|
4963
5511
|
body: 'body',
|
|
4964
5512
|
};
|
|
4965
5513
|
}
|
|
@@ -4967,6 +5515,7 @@ export class DescribeApisByTrafficControlResponse extends $tea.Model {
|
|
|
4967
5515
|
static types(): { [key: string]: any } {
|
|
4968
5516
|
return {
|
|
4969
5517
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5518
|
+
statusCode: 'number',
|
|
4970
5519
|
body: DescribeApisByTrafficControlResponseBody,
|
|
4971
5520
|
};
|
|
4972
5521
|
}
|
|
@@ -5034,10 +5583,12 @@ export class DescribeAppResponseBody extends $tea.Model {
|
|
|
5034
5583
|
|
|
5035
5584
|
export class DescribeAppResponse extends $tea.Model {
|
|
5036
5585
|
headers: { [key: string]: string };
|
|
5586
|
+
statusCode: number;
|
|
5037
5587
|
body: DescribeAppResponseBody;
|
|
5038
5588
|
static names(): { [key: string]: string } {
|
|
5039
5589
|
return {
|
|
5040
5590
|
headers: 'headers',
|
|
5591
|
+
statusCode: 'statusCode',
|
|
5041
5592
|
body: 'body',
|
|
5042
5593
|
};
|
|
5043
5594
|
}
|
|
@@ -5045,6 +5596,7 @@ export class DescribeAppResponse extends $tea.Model {
|
|
|
5045
5596
|
static types(): { [key: string]: any } {
|
|
5046
5597
|
return {
|
|
5047
5598
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5599
|
+
statusCode: 'number',
|
|
5048
5600
|
body: DescribeAppResponseBody,
|
|
5049
5601
|
};
|
|
5050
5602
|
}
|
|
@@ -5133,10 +5685,12 @@ export class DescribeAppAttributesResponseBody extends $tea.Model {
|
|
|
5133
5685
|
|
|
5134
5686
|
export class DescribeAppAttributesResponse extends $tea.Model {
|
|
5135
5687
|
headers: { [key: string]: string };
|
|
5688
|
+
statusCode: number;
|
|
5136
5689
|
body: DescribeAppAttributesResponseBody;
|
|
5137
5690
|
static names(): { [key: string]: string } {
|
|
5138
5691
|
return {
|
|
5139
5692
|
headers: 'headers',
|
|
5693
|
+
statusCode: 'statusCode',
|
|
5140
5694
|
body: 'body',
|
|
5141
5695
|
};
|
|
5142
5696
|
}
|
|
@@ -5144,6 +5698,7 @@ export class DescribeAppAttributesResponse extends $tea.Model {
|
|
|
5144
5698
|
static types(): { [key: string]: any } {
|
|
5145
5699
|
return {
|
|
5146
5700
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5701
|
+
statusCode: 'number',
|
|
5147
5702
|
body: DescribeAppAttributesResponseBody,
|
|
5148
5703
|
};
|
|
5149
5704
|
}
|
|
@@ -5214,10 +5769,12 @@ export class DescribeAppSecurityResponseBody extends $tea.Model {
|
|
|
5214
5769
|
|
|
5215
5770
|
export class DescribeAppSecurityResponse extends $tea.Model {
|
|
5216
5771
|
headers: { [key: string]: string };
|
|
5772
|
+
statusCode: number;
|
|
5217
5773
|
body: DescribeAppSecurityResponseBody;
|
|
5218
5774
|
static names(): { [key: string]: string } {
|
|
5219
5775
|
return {
|
|
5220
5776
|
headers: 'headers',
|
|
5777
|
+
statusCode: 'statusCode',
|
|
5221
5778
|
body: 'body',
|
|
5222
5779
|
};
|
|
5223
5780
|
}
|
|
@@ -5225,6 +5782,7 @@ export class DescribeAppSecurityResponse extends $tea.Model {
|
|
|
5225
5782
|
static types(): { [key: string]: any } {
|
|
5226
5783
|
return {
|
|
5227
5784
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5785
|
+
statusCode: 'number',
|
|
5228
5786
|
body: DescribeAppSecurityResponseBody,
|
|
5229
5787
|
};
|
|
5230
5788
|
}
|
|
@@ -5298,10 +5856,12 @@ export class DescribeAppsResponseBody extends $tea.Model {
|
|
|
5298
5856
|
|
|
5299
5857
|
export class DescribeAppsResponse extends $tea.Model {
|
|
5300
5858
|
headers: { [key: string]: string };
|
|
5859
|
+
statusCode: number;
|
|
5301
5860
|
body: DescribeAppsResponseBody;
|
|
5302
5861
|
static names(): { [key: string]: string } {
|
|
5303
5862
|
return {
|
|
5304
5863
|
headers: 'headers',
|
|
5864
|
+
statusCode: 'statusCode',
|
|
5305
5865
|
body: 'body',
|
|
5306
5866
|
};
|
|
5307
5867
|
}
|
|
@@ -5309,6 +5869,7 @@ export class DescribeAppsResponse extends $tea.Model {
|
|
|
5309
5869
|
static types(): { [key: string]: any } {
|
|
5310
5870
|
return {
|
|
5311
5871
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5872
|
+
statusCode: 'number',
|
|
5312
5873
|
body: DescribeAppsResponseBody,
|
|
5313
5874
|
};
|
|
5314
5875
|
}
|
|
@@ -5379,10 +5940,12 @@ export class DescribeAuthorizedApisResponseBody extends $tea.Model {
|
|
|
5379
5940
|
|
|
5380
5941
|
export class DescribeAuthorizedApisResponse extends $tea.Model {
|
|
5381
5942
|
headers: { [key: string]: string };
|
|
5943
|
+
statusCode: number;
|
|
5382
5944
|
body: DescribeAuthorizedApisResponseBody;
|
|
5383
5945
|
static names(): { [key: string]: string } {
|
|
5384
5946
|
return {
|
|
5385
5947
|
headers: 'headers',
|
|
5948
|
+
statusCode: 'statusCode',
|
|
5386
5949
|
body: 'body',
|
|
5387
5950
|
};
|
|
5388
5951
|
}
|
|
@@ -5390,6 +5953,7 @@ export class DescribeAuthorizedApisResponse extends $tea.Model {
|
|
|
5390
5953
|
static types(): { [key: string]: any } {
|
|
5391
5954
|
return {
|
|
5392
5955
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5956
|
+
statusCode: 'number',
|
|
5393
5957
|
body: DescribeAuthorizedApisResponseBody,
|
|
5394
5958
|
};
|
|
5395
5959
|
}
|
|
@@ -5475,10 +6039,12 @@ export class DescribeAuthorizedAppsResponseBody extends $tea.Model {
|
|
|
5475
6039
|
|
|
5476
6040
|
export class DescribeAuthorizedAppsResponse extends $tea.Model {
|
|
5477
6041
|
headers: { [key: string]: string };
|
|
6042
|
+
statusCode: number;
|
|
5478
6043
|
body: DescribeAuthorizedAppsResponseBody;
|
|
5479
6044
|
static names(): { [key: string]: string } {
|
|
5480
6045
|
return {
|
|
5481
6046
|
headers: 'headers',
|
|
6047
|
+
statusCode: 'statusCode',
|
|
5482
6048
|
body: 'body',
|
|
5483
6049
|
};
|
|
5484
6050
|
}
|
|
@@ -5486,6 +6052,7 @@ export class DescribeAuthorizedAppsResponse extends $tea.Model {
|
|
|
5486
6052
|
static types(): { [key: string]: any } {
|
|
5487
6053
|
return {
|
|
5488
6054
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6055
|
+
statusCode: 'number',
|
|
5489
6056
|
body: DescribeAuthorizedAppsResponseBody,
|
|
5490
6057
|
};
|
|
5491
6058
|
}
|
|
@@ -5541,10 +6108,12 @@ export class DescribeBackendInfoResponseBody extends $tea.Model {
|
|
|
5541
6108
|
|
|
5542
6109
|
export class DescribeBackendInfoResponse extends $tea.Model {
|
|
5543
6110
|
headers: { [key: string]: string };
|
|
6111
|
+
statusCode: number;
|
|
5544
6112
|
body: DescribeBackendInfoResponseBody;
|
|
5545
6113
|
static names(): { [key: string]: string } {
|
|
5546
6114
|
return {
|
|
5547
6115
|
headers: 'headers',
|
|
6116
|
+
statusCode: 'statusCode',
|
|
5548
6117
|
body: 'body',
|
|
5549
6118
|
};
|
|
5550
6119
|
}
|
|
@@ -5552,6 +6121,7 @@ export class DescribeBackendInfoResponse extends $tea.Model {
|
|
|
5552
6121
|
static types(): { [key: string]: any } {
|
|
5553
6122
|
return {
|
|
5554
6123
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6124
|
+
statusCode: 'number',
|
|
5555
6125
|
body: DescribeBackendInfoResponseBody,
|
|
5556
6126
|
};
|
|
5557
6127
|
}
|
|
@@ -5625,10 +6195,12 @@ export class DescribeBackendListResponseBody extends $tea.Model {
|
|
|
5625
6195
|
|
|
5626
6196
|
export class DescribeBackendListResponse extends $tea.Model {
|
|
5627
6197
|
headers: { [key: string]: string };
|
|
6198
|
+
statusCode: number;
|
|
5628
6199
|
body: DescribeBackendListResponseBody;
|
|
5629
6200
|
static names(): { [key: string]: string } {
|
|
5630
6201
|
return {
|
|
5631
6202
|
headers: 'headers',
|
|
6203
|
+
statusCode: 'statusCode',
|
|
5632
6204
|
body: 'body',
|
|
5633
6205
|
};
|
|
5634
6206
|
}
|
|
@@ -5636,6 +6208,7 @@ export class DescribeBackendListResponse extends $tea.Model {
|
|
|
5636
6208
|
static types(): { [key: string]: any } {
|
|
5637
6209
|
return {
|
|
5638
6210
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6211
|
+
statusCode: 'number',
|
|
5639
6212
|
body: DescribeBackendListResponseBody,
|
|
5640
6213
|
};
|
|
5641
6214
|
}
|
|
@@ -5691,10 +6264,12 @@ export class DescribeDeployApiTaskResponseBody extends $tea.Model {
|
|
|
5691
6264
|
|
|
5692
6265
|
export class DescribeDeployApiTaskResponse extends $tea.Model {
|
|
5693
6266
|
headers: { [key: string]: string };
|
|
6267
|
+
statusCode: number;
|
|
5694
6268
|
body: DescribeDeployApiTaskResponseBody;
|
|
5695
6269
|
static names(): { [key: string]: string } {
|
|
5696
6270
|
return {
|
|
5697
6271
|
headers: 'headers',
|
|
6272
|
+
statusCode: 'statusCode',
|
|
5698
6273
|
body: 'body',
|
|
5699
6274
|
};
|
|
5700
6275
|
}
|
|
@@ -5702,6 +6277,7 @@ export class DescribeDeployApiTaskResponse extends $tea.Model {
|
|
|
5702
6277
|
static types(): { [key: string]: any } {
|
|
5703
6278
|
return {
|
|
5704
6279
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6280
|
+
statusCode: 'number',
|
|
5705
6281
|
body: DescribeDeployApiTaskResponseBody,
|
|
5706
6282
|
};
|
|
5707
6283
|
}
|
|
@@ -5844,10 +6420,12 @@ export class DescribeDeployedApiResponseBody extends $tea.Model {
|
|
|
5844
6420
|
|
|
5845
6421
|
export class DescribeDeployedApiResponse extends $tea.Model {
|
|
5846
6422
|
headers: { [key: string]: string };
|
|
6423
|
+
statusCode: number;
|
|
5847
6424
|
body: DescribeDeployedApiResponseBody;
|
|
5848
6425
|
static names(): { [key: string]: string } {
|
|
5849
6426
|
return {
|
|
5850
6427
|
headers: 'headers',
|
|
6428
|
+
statusCode: 'statusCode',
|
|
5851
6429
|
body: 'body',
|
|
5852
6430
|
};
|
|
5853
6431
|
}
|
|
@@ -5855,6 +6433,7 @@ export class DescribeDeployedApiResponse extends $tea.Model {
|
|
|
5855
6433
|
static types(): { [key: string]: any } {
|
|
5856
6434
|
return {
|
|
5857
6435
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6436
|
+
statusCode: 'number',
|
|
5858
6437
|
body: DescribeDeployedApiResponseBody,
|
|
5859
6438
|
};
|
|
5860
6439
|
}
|
|
@@ -5940,10 +6519,12 @@ export class DescribeDeployedApisResponseBody extends $tea.Model {
|
|
|
5940
6519
|
|
|
5941
6520
|
export class DescribeDeployedApisResponse extends $tea.Model {
|
|
5942
6521
|
headers: { [key: string]: string };
|
|
6522
|
+
statusCode: number;
|
|
5943
6523
|
body: DescribeDeployedApisResponseBody;
|
|
5944
6524
|
static names(): { [key: string]: string } {
|
|
5945
6525
|
return {
|
|
5946
6526
|
headers: 'headers',
|
|
6527
|
+
statusCode: 'statusCode',
|
|
5947
6528
|
body: 'body',
|
|
5948
6529
|
};
|
|
5949
6530
|
}
|
|
@@ -5951,6 +6532,7 @@ export class DescribeDeployedApisResponse extends $tea.Model {
|
|
|
5951
6532
|
static types(): { [key: string]: any } {
|
|
5952
6533
|
return {
|
|
5953
6534
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6535
|
+
statusCode: 'number',
|
|
5954
6536
|
body: DescribeDeployedApisResponseBody,
|
|
5955
6537
|
};
|
|
5956
6538
|
}
|
|
@@ -6042,10 +6624,12 @@ export class DescribeDomainResponseBody extends $tea.Model {
|
|
|
6042
6624
|
|
|
6043
6625
|
export class DescribeDomainResponse extends $tea.Model {
|
|
6044
6626
|
headers: { [key: string]: string };
|
|
6627
|
+
statusCode: number;
|
|
6045
6628
|
body: DescribeDomainResponseBody;
|
|
6046
6629
|
static names(): { [key: string]: string } {
|
|
6047
6630
|
return {
|
|
6048
6631
|
headers: 'headers',
|
|
6632
|
+
statusCode: 'statusCode',
|
|
6049
6633
|
body: 'body',
|
|
6050
6634
|
};
|
|
6051
6635
|
}
|
|
@@ -6053,6 +6637,7 @@ export class DescribeDomainResponse extends $tea.Model {
|
|
|
6053
6637
|
static types(): { [key: string]: any } {
|
|
6054
6638
|
return {
|
|
6055
6639
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6640
|
+
statusCode: 'number',
|
|
6056
6641
|
body: DescribeDomainResponseBody,
|
|
6057
6642
|
};
|
|
6058
6643
|
}
|
|
@@ -6078,19 +6663,106 @@ export class DescribeHistoryApisRequest extends $tea.Model {
|
|
|
6078
6663
|
pageNumber: 'PageNumber',
|
|
6079
6664
|
pageSize: 'PageSize',
|
|
6080
6665
|
securityToken: 'SecurityToken',
|
|
6081
|
-
stageName: 'StageName',
|
|
6666
|
+
stageName: 'StageName',
|
|
6667
|
+
};
|
|
6668
|
+
}
|
|
6669
|
+
|
|
6670
|
+
static types(): { [key: string]: any } {
|
|
6671
|
+
return {
|
|
6672
|
+
apiId: 'string',
|
|
6673
|
+
apiName: 'string',
|
|
6674
|
+
groupId: 'string',
|
|
6675
|
+
pageNumber: 'string',
|
|
6676
|
+
pageSize: 'string',
|
|
6677
|
+
securityToken: 'string',
|
|
6678
|
+
stageName: 'string',
|
|
6679
|
+
};
|
|
6680
|
+
}
|
|
6681
|
+
|
|
6682
|
+
constructor(map?: { [key: string]: any }) {
|
|
6683
|
+
super(map);
|
|
6684
|
+
}
|
|
6685
|
+
}
|
|
6686
|
+
|
|
6687
|
+
export class DescribeHistoryApisResponseBody extends $tea.Model {
|
|
6688
|
+
apiHisItems?: DescribeHistoryApisResponseBodyApiHisItems;
|
|
6689
|
+
pageNumber?: number;
|
|
6690
|
+
pageSize?: number;
|
|
6691
|
+
requestId?: string;
|
|
6692
|
+
totalCount?: number;
|
|
6693
|
+
static names(): { [key: string]: string } {
|
|
6694
|
+
return {
|
|
6695
|
+
apiHisItems: 'ApiHisItems',
|
|
6696
|
+
pageNumber: 'PageNumber',
|
|
6697
|
+
pageSize: 'PageSize',
|
|
6698
|
+
requestId: 'RequestId',
|
|
6699
|
+
totalCount: 'TotalCount',
|
|
6700
|
+
};
|
|
6701
|
+
}
|
|
6702
|
+
|
|
6703
|
+
static types(): { [key: string]: any } {
|
|
6704
|
+
return {
|
|
6705
|
+
apiHisItems: DescribeHistoryApisResponseBodyApiHisItems,
|
|
6706
|
+
pageNumber: 'number',
|
|
6707
|
+
pageSize: 'number',
|
|
6708
|
+
requestId: 'string',
|
|
6709
|
+
totalCount: 'number',
|
|
6710
|
+
};
|
|
6711
|
+
}
|
|
6712
|
+
|
|
6713
|
+
constructor(map?: { [key: string]: any }) {
|
|
6714
|
+
super(map);
|
|
6715
|
+
}
|
|
6716
|
+
}
|
|
6717
|
+
|
|
6718
|
+
export class DescribeHistoryApisResponse extends $tea.Model {
|
|
6719
|
+
headers: { [key: string]: string };
|
|
6720
|
+
statusCode: number;
|
|
6721
|
+
body: DescribeHistoryApisResponseBody;
|
|
6722
|
+
static names(): { [key: string]: string } {
|
|
6723
|
+
return {
|
|
6724
|
+
headers: 'headers',
|
|
6725
|
+
statusCode: 'statusCode',
|
|
6726
|
+
body: 'body',
|
|
6727
|
+
};
|
|
6728
|
+
}
|
|
6729
|
+
|
|
6730
|
+
static types(): { [key: string]: any } {
|
|
6731
|
+
return {
|
|
6732
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6733
|
+
statusCode: 'number',
|
|
6734
|
+
body: DescribeHistoryApisResponseBody,
|
|
6735
|
+
};
|
|
6736
|
+
}
|
|
6737
|
+
|
|
6738
|
+
constructor(map?: { [key: string]: any }) {
|
|
6739
|
+
super(map);
|
|
6740
|
+
}
|
|
6741
|
+
}
|
|
6742
|
+
|
|
6743
|
+
export class DescribeInstancesRequest extends $tea.Model {
|
|
6744
|
+
enableTagAuthorization?: boolean;
|
|
6745
|
+
instanceId?: string;
|
|
6746
|
+
language?: string;
|
|
6747
|
+
securityToken?: string;
|
|
6748
|
+
tag?: DescribeInstancesRequestTag[];
|
|
6749
|
+
static names(): { [key: string]: string } {
|
|
6750
|
+
return {
|
|
6751
|
+
enableTagAuthorization: 'EnableTagAuthorization',
|
|
6752
|
+
instanceId: 'InstanceId',
|
|
6753
|
+
language: 'Language',
|
|
6754
|
+
securityToken: 'SecurityToken',
|
|
6755
|
+
tag: 'Tag',
|
|
6082
6756
|
};
|
|
6083
6757
|
}
|
|
6084
6758
|
|
|
6085
6759
|
static types(): { [key: string]: any } {
|
|
6086
6760
|
return {
|
|
6087
|
-
|
|
6088
|
-
|
|
6089
|
-
|
|
6090
|
-
pageNumber: 'string',
|
|
6091
|
-
pageSize: 'string',
|
|
6761
|
+
enableTagAuthorization: 'boolean',
|
|
6762
|
+
instanceId: 'string',
|
|
6763
|
+
language: 'string',
|
|
6092
6764
|
securityToken: 'string',
|
|
6093
|
-
|
|
6765
|
+
tag: { 'type': 'array', 'itemType': DescribeInstancesRequestTag },
|
|
6094
6766
|
};
|
|
6095
6767
|
}
|
|
6096
6768
|
|
|
@@ -6099,15 +6771,15 @@ export class DescribeHistoryApisRequest extends $tea.Model {
|
|
|
6099
6771
|
}
|
|
6100
6772
|
}
|
|
6101
6773
|
|
|
6102
|
-
export class
|
|
6103
|
-
|
|
6774
|
+
export class DescribeInstancesResponseBody extends $tea.Model {
|
|
6775
|
+
instances?: DescribeInstancesResponseBodyInstances;
|
|
6104
6776
|
pageNumber?: number;
|
|
6105
6777
|
pageSize?: number;
|
|
6106
6778
|
requestId?: string;
|
|
6107
6779
|
totalCount?: number;
|
|
6108
6780
|
static names(): { [key: string]: string } {
|
|
6109
6781
|
return {
|
|
6110
|
-
|
|
6782
|
+
instances: 'Instances',
|
|
6111
6783
|
pageNumber: 'PageNumber',
|
|
6112
6784
|
pageSize: 'PageSize',
|
|
6113
6785
|
requestId: 'RequestId',
|
|
@@ -6117,7 +6789,7 @@ export class DescribeHistoryApisResponseBody extends $tea.Model {
|
|
|
6117
6789
|
|
|
6118
6790
|
static types(): { [key: string]: any } {
|
|
6119
6791
|
return {
|
|
6120
|
-
|
|
6792
|
+
instances: DescribeInstancesResponseBodyInstances,
|
|
6121
6793
|
pageNumber: 'number',
|
|
6122
6794
|
pageSize: 'number',
|
|
6123
6795
|
requestId: 'string',
|
|
@@ -6130,12 +6802,14 @@ export class DescribeHistoryApisResponseBody extends $tea.Model {
|
|
|
6130
6802
|
}
|
|
6131
6803
|
}
|
|
6132
6804
|
|
|
6133
|
-
export class
|
|
6805
|
+
export class DescribeInstancesResponse extends $tea.Model {
|
|
6134
6806
|
headers: { [key: string]: string };
|
|
6135
|
-
|
|
6807
|
+
statusCode: number;
|
|
6808
|
+
body: DescribeInstancesResponseBody;
|
|
6136
6809
|
static names(): { [key: string]: string } {
|
|
6137
6810
|
return {
|
|
6138
6811
|
headers: 'headers',
|
|
6812
|
+
statusCode: 'statusCode',
|
|
6139
6813
|
body: 'body',
|
|
6140
6814
|
};
|
|
6141
6815
|
}
|
|
@@ -6143,7 +6817,8 @@ export class DescribeHistoryApisResponse extends $tea.Model {
|
|
|
6143
6817
|
static types(): { [key: string]: any } {
|
|
6144
6818
|
return {
|
|
6145
6819
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6146
|
-
|
|
6820
|
+
statusCode: 'number',
|
|
6821
|
+
body: DescribeInstancesResponseBody,
|
|
6147
6822
|
};
|
|
6148
6823
|
}
|
|
6149
6824
|
|
|
@@ -6216,10 +6891,12 @@ export class DescribeIpControlPolicyItemsResponseBody extends $tea.Model {
|
|
|
6216
6891
|
|
|
6217
6892
|
export class DescribeIpControlPolicyItemsResponse extends $tea.Model {
|
|
6218
6893
|
headers: { [key: string]: string };
|
|
6894
|
+
statusCode: number;
|
|
6219
6895
|
body: DescribeIpControlPolicyItemsResponseBody;
|
|
6220
6896
|
static names(): { [key: string]: string } {
|
|
6221
6897
|
return {
|
|
6222
6898
|
headers: 'headers',
|
|
6899
|
+
statusCode: 'statusCode',
|
|
6223
6900
|
body: 'body',
|
|
6224
6901
|
};
|
|
6225
6902
|
}
|
|
@@ -6227,6 +6904,7 @@ export class DescribeIpControlPolicyItemsResponse extends $tea.Model {
|
|
|
6227
6904
|
static types(): { [key: string]: any } {
|
|
6228
6905
|
return {
|
|
6229
6906
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6907
|
+
statusCode: 'number',
|
|
6230
6908
|
body: DescribeIpControlPolicyItemsResponseBody,
|
|
6231
6909
|
};
|
|
6232
6910
|
}
|
|
@@ -6303,10 +6981,12 @@ export class DescribeIpControlsResponseBody extends $tea.Model {
|
|
|
6303
6981
|
|
|
6304
6982
|
export class DescribeIpControlsResponse extends $tea.Model {
|
|
6305
6983
|
headers: { [key: string]: string };
|
|
6984
|
+
statusCode: number;
|
|
6306
6985
|
body: DescribeIpControlsResponseBody;
|
|
6307
6986
|
static names(): { [key: string]: string } {
|
|
6308
6987
|
return {
|
|
6309
6988
|
headers: 'headers',
|
|
6989
|
+
statusCode: 'statusCode',
|
|
6310
6990
|
body: 'body',
|
|
6311
6991
|
};
|
|
6312
6992
|
}
|
|
@@ -6314,6 +6994,7 @@ export class DescribeIpControlsResponse extends $tea.Model {
|
|
|
6314
6994
|
static types(): { [key: string]: any } {
|
|
6315
6995
|
return {
|
|
6316
6996
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6997
|
+
statusCode: 'number',
|
|
6317
6998
|
body: DescribeIpControlsResponseBody,
|
|
6318
6999
|
};
|
|
6319
7000
|
}
|
|
@@ -6369,10 +7050,12 @@ export class DescribeLogConfigResponseBody extends $tea.Model {
|
|
|
6369
7050
|
|
|
6370
7051
|
export class DescribeLogConfigResponse extends $tea.Model {
|
|
6371
7052
|
headers: { [key: string]: string };
|
|
7053
|
+
statusCode: number;
|
|
6372
7054
|
body: DescribeLogConfigResponseBody;
|
|
6373
7055
|
static names(): { [key: string]: string } {
|
|
6374
7056
|
return {
|
|
6375
7057
|
headers: 'headers',
|
|
7058
|
+
statusCode: 'statusCode',
|
|
6376
7059
|
body: 'body',
|
|
6377
7060
|
};
|
|
6378
7061
|
}
|
|
@@ -6380,6 +7063,7 @@ export class DescribeLogConfigResponse extends $tea.Model {
|
|
|
6380
7063
|
static types(): { [key: string]: any } {
|
|
6381
7064
|
return {
|
|
6382
7065
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7066
|
+
statusCode: 'number',
|
|
6383
7067
|
body: DescribeLogConfigResponseBody,
|
|
6384
7068
|
};
|
|
6385
7069
|
}
|
|
@@ -6435,10 +7119,12 @@ export class DescribeMarketRemainsQuotaResponseBody extends $tea.Model {
|
|
|
6435
7119
|
|
|
6436
7120
|
export class DescribeMarketRemainsQuotaResponse extends $tea.Model {
|
|
6437
7121
|
headers: { [key: string]: string };
|
|
7122
|
+
statusCode: number;
|
|
6438
7123
|
body: DescribeMarketRemainsQuotaResponseBody;
|
|
6439
7124
|
static names(): { [key: string]: string } {
|
|
6440
7125
|
return {
|
|
6441
7126
|
headers: 'headers',
|
|
7127
|
+
statusCode: 'statusCode',
|
|
6442
7128
|
body: 'body',
|
|
6443
7129
|
};
|
|
6444
7130
|
}
|
|
@@ -6446,6 +7132,7 @@ export class DescribeMarketRemainsQuotaResponse extends $tea.Model {
|
|
|
6446
7132
|
static types(): { [key: string]: any } {
|
|
6447
7133
|
return {
|
|
6448
7134
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7135
|
+
statusCode: 'number',
|
|
6449
7136
|
body: DescribeMarketRemainsQuotaResponseBody,
|
|
6450
7137
|
};
|
|
6451
7138
|
}
|
|
@@ -6519,10 +7206,12 @@ export class DescribeModelsResponseBody extends $tea.Model {
|
|
|
6519
7206
|
|
|
6520
7207
|
export class DescribeModelsResponse extends $tea.Model {
|
|
6521
7208
|
headers: { [key: string]: string };
|
|
7209
|
+
statusCode: number;
|
|
6522
7210
|
body: DescribeModelsResponseBody;
|
|
6523
7211
|
static names(): { [key: string]: string } {
|
|
6524
7212
|
return {
|
|
6525
7213
|
headers: 'headers',
|
|
7214
|
+
statusCode: 'statusCode',
|
|
6526
7215
|
body: 'body',
|
|
6527
7216
|
};
|
|
6528
7217
|
}
|
|
@@ -6530,6 +7219,7 @@ export class DescribeModelsResponse extends $tea.Model {
|
|
|
6530
7219
|
static types(): { [key: string]: any } {
|
|
6531
7220
|
return {
|
|
6532
7221
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7222
|
+
statusCode: 'number',
|
|
6533
7223
|
body: DescribeModelsResponseBody,
|
|
6534
7224
|
};
|
|
6535
7225
|
}
|
|
@@ -6585,10 +7275,12 @@ export class DescribePluginSchemasResponseBody extends $tea.Model {
|
|
|
6585
7275
|
|
|
6586
7276
|
export class DescribePluginSchemasResponse extends $tea.Model {
|
|
6587
7277
|
headers: { [key: string]: string };
|
|
7278
|
+
statusCode: number;
|
|
6588
7279
|
body: DescribePluginSchemasResponseBody;
|
|
6589
7280
|
static names(): { [key: string]: string } {
|
|
6590
7281
|
return {
|
|
6591
7282
|
headers: 'headers',
|
|
7283
|
+
statusCode: 'statusCode',
|
|
6592
7284
|
body: 'body',
|
|
6593
7285
|
};
|
|
6594
7286
|
}
|
|
@@ -6596,6 +7288,7 @@ export class DescribePluginSchemasResponse extends $tea.Model {
|
|
|
6596
7288
|
static types(): { [key: string]: any } {
|
|
6597
7289
|
return {
|
|
6598
7290
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7291
|
+
statusCode: 'number',
|
|
6599
7292
|
body: DescribePluginSchemasResponseBody,
|
|
6600
7293
|
};
|
|
6601
7294
|
}
|
|
@@ -6654,10 +7347,12 @@ export class DescribePluginTemplatesResponseBody extends $tea.Model {
|
|
|
6654
7347
|
|
|
6655
7348
|
export class DescribePluginTemplatesResponse extends $tea.Model {
|
|
6656
7349
|
headers: { [key: string]: string };
|
|
7350
|
+
statusCode: number;
|
|
6657
7351
|
body: DescribePluginTemplatesResponseBody;
|
|
6658
7352
|
static names(): { [key: string]: string } {
|
|
6659
7353
|
return {
|
|
6660
7354
|
headers: 'headers',
|
|
7355
|
+
statusCode: 'statusCode',
|
|
6661
7356
|
body: 'body',
|
|
6662
7357
|
};
|
|
6663
7358
|
}
|
|
@@ -6665,6 +7360,7 @@ export class DescribePluginTemplatesResponse extends $tea.Model {
|
|
|
6665
7360
|
static types(): { [key: string]: any } {
|
|
6666
7361
|
return {
|
|
6667
7362
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7363
|
+
statusCode: 'number',
|
|
6668
7364
|
body: DescribePluginTemplatesResponseBody,
|
|
6669
7365
|
};
|
|
6670
7366
|
}
|
|
@@ -6744,10 +7440,12 @@ export class DescribePluginsResponseBody extends $tea.Model {
|
|
|
6744
7440
|
|
|
6745
7441
|
export class DescribePluginsResponse extends $tea.Model {
|
|
6746
7442
|
headers: { [key: string]: string };
|
|
7443
|
+
statusCode: number;
|
|
6747
7444
|
body: DescribePluginsResponseBody;
|
|
6748
7445
|
static names(): { [key: string]: string } {
|
|
6749
7446
|
return {
|
|
6750
7447
|
headers: 'headers',
|
|
7448
|
+
statusCode: 'statusCode',
|
|
6751
7449
|
body: 'body',
|
|
6752
7450
|
};
|
|
6753
7451
|
}
|
|
@@ -6755,6 +7453,7 @@ export class DescribePluginsResponse extends $tea.Model {
|
|
|
6755
7453
|
static types(): { [key: string]: any } {
|
|
6756
7454
|
return {
|
|
6757
7455
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7456
|
+
statusCode: 'number',
|
|
6758
7457
|
body: DescribePluginsResponseBody,
|
|
6759
7458
|
};
|
|
6760
7459
|
}
|
|
@@ -6825,10 +7524,12 @@ export class DescribePluginsByApiResponseBody extends $tea.Model {
|
|
|
6825
7524
|
|
|
6826
7525
|
export class DescribePluginsByApiResponse extends $tea.Model {
|
|
6827
7526
|
headers: { [key: string]: string };
|
|
7527
|
+
statusCode: number;
|
|
6828
7528
|
body: DescribePluginsByApiResponseBody;
|
|
6829
7529
|
static names(): { [key: string]: string } {
|
|
6830
7530
|
return {
|
|
6831
7531
|
headers: 'headers',
|
|
7532
|
+
statusCode: 'statusCode',
|
|
6832
7533
|
body: 'body',
|
|
6833
7534
|
};
|
|
6834
7535
|
}
|
|
@@ -6836,6 +7537,7 @@ export class DescribePluginsByApiResponse extends $tea.Model {
|
|
|
6836
7537
|
static types(): { [key: string]: any } {
|
|
6837
7538
|
return {
|
|
6838
7539
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7540
|
+
statusCode: 'number',
|
|
6839
7541
|
body: DescribePluginsByApiResponseBody,
|
|
6840
7542
|
};
|
|
6841
7543
|
}
|
|
@@ -6909,10 +7611,12 @@ export class DescribePurchasedApiGroupResponseBody extends $tea.Model {
|
|
|
6909
7611
|
|
|
6910
7612
|
export class DescribePurchasedApiGroupResponse extends $tea.Model {
|
|
6911
7613
|
headers: { [key: string]: string };
|
|
7614
|
+
statusCode: number;
|
|
6912
7615
|
body: DescribePurchasedApiGroupResponseBody;
|
|
6913
7616
|
static names(): { [key: string]: string } {
|
|
6914
7617
|
return {
|
|
6915
7618
|
headers: 'headers',
|
|
7619
|
+
statusCode: 'statusCode',
|
|
6916
7620
|
body: 'body',
|
|
6917
7621
|
};
|
|
6918
7622
|
}
|
|
@@ -6920,6 +7624,7 @@ export class DescribePurchasedApiGroupResponse extends $tea.Model {
|
|
|
6920
7624
|
static types(): { [key: string]: any } {
|
|
6921
7625
|
return {
|
|
6922
7626
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7627
|
+
statusCode: 'number',
|
|
6923
7628
|
body: DescribePurchasedApiGroupResponseBody,
|
|
6924
7629
|
};
|
|
6925
7630
|
}
|
|
@@ -6987,10 +7692,12 @@ export class DescribePurchasedApiGroupsResponseBody extends $tea.Model {
|
|
|
6987
7692
|
|
|
6988
7693
|
export class DescribePurchasedApiGroupsResponse extends $tea.Model {
|
|
6989
7694
|
headers: { [key: string]: string };
|
|
7695
|
+
statusCode: number;
|
|
6990
7696
|
body: DescribePurchasedApiGroupsResponseBody;
|
|
6991
7697
|
static names(): { [key: string]: string } {
|
|
6992
7698
|
return {
|
|
6993
7699
|
headers: 'headers',
|
|
7700
|
+
statusCode: 'statusCode',
|
|
6994
7701
|
body: 'body',
|
|
6995
7702
|
};
|
|
6996
7703
|
}
|
|
@@ -6998,6 +7705,7 @@ export class DescribePurchasedApiGroupsResponse extends $tea.Model {
|
|
|
6998
7705
|
static types(): { [key: string]: any } {
|
|
6999
7706
|
return {
|
|
7000
7707
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7708
|
+
statusCode: 'number',
|
|
7001
7709
|
body: DescribePurchasedApiGroupsResponseBody,
|
|
7002
7710
|
};
|
|
7003
7711
|
}
|
|
@@ -7080,10 +7788,12 @@ export class DescribePurchasedApisResponseBody extends $tea.Model {
|
|
|
7080
7788
|
|
|
7081
7789
|
export class DescribePurchasedApisResponse extends $tea.Model {
|
|
7082
7790
|
headers: { [key: string]: string };
|
|
7791
|
+
statusCode: number;
|
|
7083
7792
|
body: DescribePurchasedApisResponseBody;
|
|
7084
7793
|
static names(): { [key: string]: string } {
|
|
7085
7794
|
return {
|
|
7086
7795
|
headers: 'headers',
|
|
7796
|
+
statusCode: 'statusCode',
|
|
7087
7797
|
body: 'body',
|
|
7088
7798
|
};
|
|
7089
7799
|
}
|
|
@@ -7091,6 +7801,7 @@ export class DescribePurchasedApisResponse extends $tea.Model {
|
|
|
7091
7801
|
static types(): { [key: string]: any } {
|
|
7092
7802
|
return {
|
|
7093
7803
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7804
|
+
statusCode: 'number',
|
|
7094
7805
|
body: DescribePurchasedApisResponseBody,
|
|
7095
7806
|
};
|
|
7096
7807
|
}
|
|
@@ -7146,10 +7857,12 @@ export class DescribeRegionsResponseBody extends $tea.Model {
|
|
|
7146
7857
|
|
|
7147
7858
|
export class DescribeRegionsResponse extends $tea.Model {
|
|
7148
7859
|
headers: { [key: string]: string };
|
|
7860
|
+
statusCode: number;
|
|
7149
7861
|
body: DescribeRegionsResponseBody;
|
|
7150
7862
|
static names(): { [key: string]: string } {
|
|
7151
7863
|
return {
|
|
7152
7864
|
headers: 'headers',
|
|
7865
|
+
statusCode: 'statusCode',
|
|
7153
7866
|
body: 'body',
|
|
7154
7867
|
};
|
|
7155
7868
|
}
|
|
@@ -7157,6 +7870,7 @@ export class DescribeRegionsResponse extends $tea.Model {
|
|
|
7157
7870
|
static types(): { [key: string]: any } {
|
|
7158
7871
|
return {
|
|
7159
7872
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7873
|
+
statusCode: 'number',
|
|
7160
7874
|
body: DescribeRegionsResponseBody,
|
|
7161
7875
|
};
|
|
7162
7876
|
}
|
|
@@ -7230,10 +7944,12 @@ export class DescribeSignaturesResponseBody extends $tea.Model {
|
|
|
7230
7944
|
|
|
7231
7945
|
export class DescribeSignaturesResponse extends $tea.Model {
|
|
7232
7946
|
headers: { [key: string]: string };
|
|
7947
|
+
statusCode: number;
|
|
7233
7948
|
body: DescribeSignaturesResponseBody;
|
|
7234
7949
|
static names(): { [key: string]: string } {
|
|
7235
7950
|
return {
|
|
7236
7951
|
headers: 'headers',
|
|
7952
|
+
statusCode: 'statusCode',
|
|
7237
7953
|
body: 'body',
|
|
7238
7954
|
};
|
|
7239
7955
|
}
|
|
@@ -7241,6 +7957,7 @@ export class DescribeSignaturesResponse extends $tea.Model {
|
|
|
7241
7957
|
static types(): { [key: string]: any } {
|
|
7242
7958
|
return {
|
|
7243
7959
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7960
|
+
statusCode: 'number',
|
|
7244
7961
|
body: DescribeSignaturesResponseBody,
|
|
7245
7962
|
};
|
|
7246
7963
|
}
|
|
@@ -7302,10 +8019,12 @@ export class DescribeSignaturesByApiResponseBody extends $tea.Model {
|
|
|
7302
8019
|
|
|
7303
8020
|
export class DescribeSignaturesByApiResponse extends $tea.Model {
|
|
7304
8021
|
headers: { [key: string]: string };
|
|
8022
|
+
statusCode: number;
|
|
7305
8023
|
body: DescribeSignaturesByApiResponseBody;
|
|
7306
8024
|
static names(): { [key: string]: string } {
|
|
7307
8025
|
return {
|
|
7308
8026
|
headers: 'headers',
|
|
8027
|
+
statusCode: 'statusCode',
|
|
7309
8028
|
body: 'body',
|
|
7310
8029
|
};
|
|
7311
8030
|
}
|
|
@@ -7313,6 +8032,7 @@ export class DescribeSignaturesByApiResponse extends $tea.Model {
|
|
|
7313
8032
|
static types(): { [key: string]: any } {
|
|
7314
8033
|
return {
|
|
7315
8034
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8035
|
+
statusCode: 'number',
|
|
7316
8036
|
body: DescribeSignaturesByApiResponseBody,
|
|
7317
8037
|
};
|
|
7318
8038
|
}
|
|
@@ -7365,10 +8085,12 @@ export class DescribeSystemParametersResponseBody extends $tea.Model {
|
|
|
7365
8085
|
|
|
7366
8086
|
export class DescribeSystemParametersResponse extends $tea.Model {
|
|
7367
8087
|
headers: { [key: string]: string };
|
|
8088
|
+
statusCode: number;
|
|
7368
8089
|
body: DescribeSystemParametersResponseBody;
|
|
7369
8090
|
static names(): { [key: string]: string } {
|
|
7370
8091
|
return {
|
|
7371
8092
|
headers: 'headers',
|
|
8093
|
+
statusCode: 'statusCode',
|
|
7372
8094
|
body: 'body',
|
|
7373
8095
|
};
|
|
7374
8096
|
}
|
|
@@ -7376,6 +8098,7 @@ export class DescribeSystemParametersResponse extends $tea.Model {
|
|
|
7376
8098
|
static types(): { [key: string]: any } {
|
|
7377
8099
|
return {
|
|
7378
8100
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8101
|
+
statusCode: 'number',
|
|
7379
8102
|
body: DescribeSystemParametersResponseBody,
|
|
7380
8103
|
};
|
|
7381
8104
|
}
|
|
@@ -7458,10 +8181,12 @@ export class DescribeTrafficControlsResponseBody extends $tea.Model {
|
|
|
7458
8181
|
|
|
7459
8182
|
export class DescribeTrafficControlsResponse extends $tea.Model {
|
|
7460
8183
|
headers: { [key: string]: string };
|
|
8184
|
+
statusCode: number;
|
|
7461
8185
|
body: DescribeTrafficControlsResponseBody;
|
|
7462
8186
|
static names(): { [key: string]: string } {
|
|
7463
8187
|
return {
|
|
7464
8188
|
headers: 'headers',
|
|
8189
|
+
statusCode: 'statusCode',
|
|
7465
8190
|
body: 'body',
|
|
7466
8191
|
};
|
|
7467
8192
|
}
|
|
@@ -7469,6 +8194,7 @@ export class DescribeTrafficControlsResponse extends $tea.Model {
|
|
|
7469
8194
|
static types(): { [key: string]: any } {
|
|
7470
8195
|
return {
|
|
7471
8196
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8197
|
+
statusCode: 'number',
|
|
7472
8198
|
body: DescribeTrafficControlsResponseBody,
|
|
7473
8199
|
};
|
|
7474
8200
|
}
|
|
@@ -7530,10 +8256,12 @@ export class DescribeTrafficControlsByApiResponseBody extends $tea.Model {
|
|
|
7530
8256
|
|
|
7531
8257
|
export class DescribeTrafficControlsByApiResponse extends $tea.Model {
|
|
7532
8258
|
headers: { [key: string]: string };
|
|
8259
|
+
statusCode: number;
|
|
7533
8260
|
body: DescribeTrafficControlsByApiResponseBody;
|
|
7534
8261
|
static names(): { [key: string]: string } {
|
|
7535
8262
|
return {
|
|
7536
8263
|
headers: 'headers',
|
|
8264
|
+
statusCode: 'statusCode',
|
|
7537
8265
|
body: 'body',
|
|
7538
8266
|
};
|
|
7539
8267
|
}
|
|
@@ -7541,6 +8269,7 @@ export class DescribeTrafficControlsByApiResponse extends $tea.Model {
|
|
|
7541
8269
|
static types(): { [key: string]: any } {
|
|
7542
8270
|
return {
|
|
7543
8271
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8272
|
+
statusCode: 'number',
|
|
7544
8273
|
body: DescribeTrafficControlsByApiResponseBody,
|
|
7545
8274
|
};
|
|
7546
8275
|
}
|
|
@@ -7596,10 +8325,12 @@ export class DescribeUpdateBackendTaskResponseBody extends $tea.Model {
|
|
|
7596
8325
|
|
|
7597
8326
|
export class DescribeUpdateBackendTaskResponse extends $tea.Model {
|
|
7598
8327
|
headers: { [key: string]: string };
|
|
8328
|
+
statusCode: number;
|
|
7599
8329
|
body: DescribeUpdateBackendTaskResponseBody;
|
|
7600
8330
|
static names(): { [key: string]: string } {
|
|
7601
8331
|
return {
|
|
7602
8332
|
headers: 'headers',
|
|
8333
|
+
statusCode: 'statusCode',
|
|
7603
8334
|
body: 'body',
|
|
7604
8335
|
};
|
|
7605
8336
|
}
|
|
@@ -7607,6 +8338,7 @@ export class DescribeUpdateBackendTaskResponse extends $tea.Model {
|
|
|
7607
8338
|
static types(): { [key: string]: any } {
|
|
7608
8339
|
return {
|
|
7609
8340
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8341
|
+
statusCode: 'number',
|
|
7610
8342
|
body: DescribeUpdateBackendTaskResponseBody,
|
|
7611
8343
|
};
|
|
7612
8344
|
}
|
|
@@ -7662,10 +8394,12 @@ export class DescribeUpdateVpcInfoTaskResponseBody extends $tea.Model {
|
|
|
7662
8394
|
|
|
7663
8395
|
export class DescribeUpdateVpcInfoTaskResponse extends $tea.Model {
|
|
7664
8396
|
headers: { [key: string]: string };
|
|
8397
|
+
statusCode: number;
|
|
7665
8398
|
body: DescribeUpdateVpcInfoTaskResponseBody;
|
|
7666
8399
|
static names(): { [key: string]: string } {
|
|
7667
8400
|
return {
|
|
7668
8401
|
headers: 'headers',
|
|
8402
|
+
statusCode: 'statusCode',
|
|
7669
8403
|
body: 'body',
|
|
7670
8404
|
};
|
|
7671
8405
|
}
|
|
@@ -7673,6 +8407,7 @@ export class DescribeUpdateVpcInfoTaskResponse extends $tea.Model {
|
|
|
7673
8407
|
static types(): { [key: string]: any } {
|
|
7674
8408
|
return {
|
|
7675
8409
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8410
|
+
statusCode: 'number',
|
|
7676
8411
|
body: DescribeUpdateVpcInfoTaskResponseBody,
|
|
7677
8412
|
};
|
|
7678
8413
|
}
|
|
@@ -7755,10 +8490,12 @@ export class DescribeVpcAccessesResponseBody extends $tea.Model {
|
|
|
7755
8490
|
|
|
7756
8491
|
export class DescribeVpcAccessesResponse extends $tea.Model {
|
|
7757
8492
|
headers: { [key: string]: string };
|
|
8493
|
+
statusCode: number;
|
|
7758
8494
|
body: DescribeVpcAccessesResponseBody;
|
|
7759
8495
|
static names(): { [key: string]: string } {
|
|
7760
8496
|
return {
|
|
7761
8497
|
headers: 'headers',
|
|
8498
|
+
statusCode: 'statusCode',
|
|
7762
8499
|
body: 'body',
|
|
7763
8500
|
};
|
|
7764
8501
|
}
|
|
@@ -7766,6 +8503,7 @@ export class DescribeVpcAccessesResponse extends $tea.Model {
|
|
|
7766
8503
|
static types(): { [key: string]: any } {
|
|
7767
8504
|
return {
|
|
7768
8505
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8506
|
+
statusCode: 'number',
|
|
7769
8507
|
body: DescribeVpcAccessesResponseBody,
|
|
7770
8508
|
};
|
|
7771
8509
|
}
|
|
@@ -7821,10 +8559,12 @@ export class DescribeZonesResponseBody extends $tea.Model {
|
|
|
7821
8559
|
|
|
7822
8560
|
export class DescribeZonesResponse extends $tea.Model {
|
|
7823
8561
|
headers: { [key: string]: string };
|
|
8562
|
+
statusCode: number;
|
|
7824
8563
|
body: DescribeZonesResponseBody;
|
|
7825
8564
|
static names(): { [key: string]: string } {
|
|
7826
8565
|
return {
|
|
7827
8566
|
headers: 'headers',
|
|
8567
|
+
statusCode: 'statusCode',
|
|
7828
8568
|
body: 'body',
|
|
7829
8569
|
};
|
|
7830
8570
|
}
|
|
@@ -7832,6 +8572,7 @@ export class DescribeZonesResponse extends $tea.Model {
|
|
|
7832
8572
|
static types(): { [key: string]: any } {
|
|
7833
8573
|
return {
|
|
7834
8574
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8575
|
+
statusCode: 'number',
|
|
7835
8576
|
body: DescribeZonesResponseBody,
|
|
7836
8577
|
};
|
|
7837
8578
|
}
|
|
@@ -7893,10 +8634,12 @@ export class DetachPluginResponseBody extends $tea.Model {
|
|
|
7893
8634
|
|
|
7894
8635
|
export class DetachPluginResponse extends $tea.Model {
|
|
7895
8636
|
headers: { [key: string]: string };
|
|
8637
|
+
statusCode: number;
|
|
7896
8638
|
body: DetachPluginResponseBody;
|
|
7897
8639
|
static names(): { [key: string]: string } {
|
|
7898
8640
|
return {
|
|
7899
8641
|
headers: 'headers',
|
|
8642
|
+
statusCode: 'statusCode',
|
|
7900
8643
|
body: 'body',
|
|
7901
8644
|
};
|
|
7902
8645
|
}
|
|
@@ -7904,6 +8647,7 @@ export class DetachPluginResponse extends $tea.Model {
|
|
|
7904
8647
|
static types(): { [key: string]: any } {
|
|
7905
8648
|
return {
|
|
7906
8649
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8650
|
+
statusCode: 'number',
|
|
7907
8651
|
body: DetachPluginResponseBody,
|
|
7908
8652
|
};
|
|
7909
8653
|
}
|
|
@@ -7913,6 +8657,75 @@ export class DetachPluginResponse extends $tea.Model {
|
|
|
7913
8657
|
}
|
|
7914
8658
|
}
|
|
7915
8659
|
|
|
8660
|
+
export class DisableInstanceAccessControlRequest extends $tea.Model {
|
|
8661
|
+
aclId?: string;
|
|
8662
|
+
instanceId?: string;
|
|
8663
|
+
securityToken?: string;
|
|
8664
|
+
static names(): { [key: string]: string } {
|
|
8665
|
+
return {
|
|
8666
|
+
aclId: 'AclId',
|
|
8667
|
+
instanceId: 'InstanceId',
|
|
8668
|
+
securityToken: 'SecurityToken',
|
|
8669
|
+
};
|
|
8670
|
+
}
|
|
8671
|
+
|
|
8672
|
+
static types(): { [key: string]: any } {
|
|
8673
|
+
return {
|
|
8674
|
+
aclId: 'string',
|
|
8675
|
+
instanceId: 'string',
|
|
8676
|
+
securityToken: 'string',
|
|
8677
|
+
};
|
|
8678
|
+
}
|
|
8679
|
+
|
|
8680
|
+
constructor(map?: { [key: string]: any }) {
|
|
8681
|
+
super(map);
|
|
8682
|
+
}
|
|
8683
|
+
}
|
|
8684
|
+
|
|
8685
|
+
export class DisableInstanceAccessControlResponseBody extends $tea.Model {
|
|
8686
|
+
requestId?: string;
|
|
8687
|
+
static names(): { [key: string]: string } {
|
|
8688
|
+
return {
|
|
8689
|
+
requestId: 'RequestId',
|
|
8690
|
+
};
|
|
8691
|
+
}
|
|
8692
|
+
|
|
8693
|
+
static types(): { [key: string]: any } {
|
|
8694
|
+
return {
|
|
8695
|
+
requestId: 'string',
|
|
8696
|
+
};
|
|
8697
|
+
}
|
|
8698
|
+
|
|
8699
|
+
constructor(map?: { [key: string]: any }) {
|
|
8700
|
+
super(map);
|
|
8701
|
+
}
|
|
8702
|
+
}
|
|
8703
|
+
|
|
8704
|
+
export class DisableInstanceAccessControlResponse extends $tea.Model {
|
|
8705
|
+
headers: { [key: string]: string };
|
|
8706
|
+
statusCode: number;
|
|
8707
|
+
body: DisableInstanceAccessControlResponseBody;
|
|
8708
|
+
static names(): { [key: string]: string } {
|
|
8709
|
+
return {
|
|
8710
|
+
headers: 'headers',
|
|
8711
|
+
statusCode: 'statusCode',
|
|
8712
|
+
body: 'body',
|
|
8713
|
+
};
|
|
8714
|
+
}
|
|
8715
|
+
|
|
8716
|
+
static types(): { [key: string]: any } {
|
|
8717
|
+
return {
|
|
8718
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8719
|
+
statusCode: 'number',
|
|
8720
|
+
body: DisableInstanceAccessControlResponseBody,
|
|
8721
|
+
};
|
|
8722
|
+
}
|
|
8723
|
+
|
|
8724
|
+
constructor(map?: { [key: string]: any }) {
|
|
8725
|
+
super(map);
|
|
8726
|
+
}
|
|
8727
|
+
}
|
|
8728
|
+
|
|
7916
8729
|
export class DryRunSwaggerRequest extends $tea.Model {
|
|
7917
8730
|
data?: string;
|
|
7918
8731
|
dataFormat?: string;
|
|
@@ -8017,10 +8830,12 @@ export class DryRunSwaggerResponseBody extends $tea.Model {
|
|
|
8017
8830
|
|
|
8018
8831
|
export class DryRunSwaggerResponse extends $tea.Model {
|
|
8019
8832
|
headers: { [key: string]: string };
|
|
8833
|
+
statusCode: number;
|
|
8020
8834
|
body: DryRunSwaggerResponseBody;
|
|
8021
8835
|
static names(): { [key: string]: string } {
|
|
8022
8836
|
return {
|
|
8023
8837
|
headers: 'headers',
|
|
8838
|
+
statusCode: 'statusCode',
|
|
8024
8839
|
body: 'body',
|
|
8025
8840
|
};
|
|
8026
8841
|
}
|
|
@@ -8028,6 +8843,7 @@ export class DryRunSwaggerResponse extends $tea.Model {
|
|
|
8028
8843
|
static types(): { [key: string]: any } {
|
|
8029
8844
|
return {
|
|
8030
8845
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8846
|
+
statusCode: 'number',
|
|
8031
8847
|
body: DryRunSwaggerResponseBody,
|
|
8032
8848
|
};
|
|
8033
8849
|
}
|
|
@@ -8037,6 +8853,78 @@ export class DryRunSwaggerResponse extends $tea.Model {
|
|
|
8037
8853
|
}
|
|
8038
8854
|
}
|
|
8039
8855
|
|
|
8856
|
+
export class EnableInstanceAccessControlRequest extends $tea.Model {
|
|
8857
|
+
aclId?: string;
|
|
8858
|
+
aclType?: string;
|
|
8859
|
+
instanceId?: string;
|
|
8860
|
+
securityToken?: string;
|
|
8861
|
+
static names(): { [key: string]: string } {
|
|
8862
|
+
return {
|
|
8863
|
+
aclId: 'AclId',
|
|
8864
|
+
aclType: 'AclType',
|
|
8865
|
+
instanceId: 'InstanceId',
|
|
8866
|
+
securityToken: 'SecurityToken',
|
|
8867
|
+
};
|
|
8868
|
+
}
|
|
8869
|
+
|
|
8870
|
+
static types(): { [key: string]: any } {
|
|
8871
|
+
return {
|
|
8872
|
+
aclId: 'string',
|
|
8873
|
+
aclType: 'string',
|
|
8874
|
+
instanceId: 'string',
|
|
8875
|
+
securityToken: 'string',
|
|
8876
|
+
};
|
|
8877
|
+
}
|
|
8878
|
+
|
|
8879
|
+
constructor(map?: { [key: string]: any }) {
|
|
8880
|
+
super(map);
|
|
8881
|
+
}
|
|
8882
|
+
}
|
|
8883
|
+
|
|
8884
|
+
export class EnableInstanceAccessControlResponseBody extends $tea.Model {
|
|
8885
|
+
requestId?: string;
|
|
8886
|
+
static names(): { [key: string]: string } {
|
|
8887
|
+
return {
|
|
8888
|
+
requestId: 'RequestId',
|
|
8889
|
+
};
|
|
8890
|
+
}
|
|
8891
|
+
|
|
8892
|
+
static types(): { [key: string]: any } {
|
|
8893
|
+
return {
|
|
8894
|
+
requestId: 'string',
|
|
8895
|
+
};
|
|
8896
|
+
}
|
|
8897
|
+
|
|
8898
|
+
constructor(map?: { [key: string]: any }) {
|
|
8899
|
+
super(map);
|
|
8900
|
+
}
|
|
8901
|
+
}
|
|
8902
|
+
|
|
8903
|
+
export class EnableInstanceAccessControlResponse extends $tea.Model {
|
|
8904
|
+
headers: { [key: string]: string };
|
|
8905
|
+
statusCode: number;
|
|
8906
|
+
body: EnableInstanceAccessControlResponseBody;
|
|
8907
|
+
static names(): { [key: string]: string } {
|
|
8908
|
+
return {
|
|
8909
|
+
headers: 'headers',
|
|
8910
|
+
statusCode: 'statusCode',
|
|
8911
|
+
body: 'body',
|
|
8912
|
+
};
|
|
8913
|
+
}
|
|
8914
|
+
|
|
8915
|
+
static types(): { [key: string]: any } {
|
|
8916
|
+
return {
|
|
8917
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8918
|
+
statusCode: 'number',
|
|
8919
|
+
body: EnableInstanceAccessControlResponseBody,
|
|
8920
|
+
};
|
|
8921
|
+
}
|
|
8922
|
+
|
|
8923
|
+
constructor(map?: { [key: string]: any }) {
|
|
8924
|
+
super(map);
|
|
8925
|
+
}
|
|
8926
|
+
}
|
|
8927
|
+
|
|
8040
8928
|
export class ImportSwaggerRequest extends $tea.Model {
|
|
8041
8929
|
data?: string;
|
|
8042
8930
|
dataFormat?: string;
|
|
@@ -8144,10 +9032,12 @@ export class ImportSwaggerResponseBody extends $tea.Model {
|
|
|
8144
9032
|
|
|
8145
9033
|
export class ImportSwaggerResponse extends $tea.Model {
|
|
8146
9034
|
headers: { [key: string]: string };
|
|
9035
|
+
statusCode: number;
|
|
8147
9036
|
body: ImportSwaggerResponseBody;
|
|
8148
9037
|
static names(): { [key: string]: string } {
|
|
8149
9038
|
return {
|
|
8150
9039
|
headers: 'headers',
|
|
9040
|
+
statusCode: 'statusCode',
|
|
8151
9041
|
body: 'body',
|
|
8152
9042
|
};
|
|
8153
9043
|
}
|
|
@@ -8155,6 +9045,7 @@ export class ImportSwaggerResponse extends $tea.Model {
|
|
|
8155
9045
|
static types(): { [key: string]: any } {
|
|
8156
9046
|
return {
|
|
8157
9047
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9048
|
+
statusCode: 'number',
|
|
8158
9049
|
body: ImportSwaggerResponseBody,
|
|
8159
9050
|
};
|
|
8160
9051
|
}
|
|
@@ -8219,10 +9110,12 @@ export class ListTagResourcesResponseBody extends $tea.Model {
|
|
|
8219
9110
|
|
|
8220
9111
|
export class ListTagResourcesResponse extends $tea.Model {
|
|
8221
9112
|
headers: { [key: string]: string };
|
|
9113
|
+
statusCode: number;
|
|
8222
9114
|
body: ListTagResourcesResponseBody;
|
|
8223
9115
|
static names(): { [key: string]: string } {
|
|
8224
9116
|
return {
|
|
8225
9117
|
headers: 'headers',
|
|
9118
|
+
statusCode: 'statusCode',
|
|
8226
9119
|
body: 'body',
|
|
8227
9120
|
};
|
|
8228
9121
|
}
|
|
@@ -8230,6 +9123,7 @@ export class ListTagResourcesResponse extends $tea.Model {
|
|
|
8230
9123
|
static types(): { [key: string]: any } {
|
|
8231
9124
|
return {
|
|
8232
9125
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9126
|
+
statusCode: 'number',
|
|
8233
9127
|
body: ListTagResourcesResponseBody,
|
|
8234
9128
|
};
|
|
8235
9129
|
}
|
|
@@ -8360,10 +9254,12 @@ export class ModifyApiResponseBody extends $tea.Model {
|
|
|
8360
9254
|
|
|
8361
9255
|
export class ModifyApiResponse extends $tea.Model {
|
|
8362
9256
|
headers: { [key: string]: string };
|
|
9257
|
+
statusCode: number;
|
|
8363
9258
|
body: ModifyApiResponseBody;
|
|
8364
9259
|
static names(): { [key: string]: string } {
|
|
8365
9260
|
return {
|
|
8366
9261
|
headers: 'headers',
|
|
9262
|
+
statusCode: 'statusCode',
|
|
8367
9263
|
body: 'body',
|
|
8368
9264
|
};
|
|
8369
9265
|
}
|
|
@@ -8371,6 +9267,7 @@ export class ModifyApiResponse extends $tea.Model {
|
|
|
8371
9267
|
static types(): { [key: string]: any } {
|
|
8372
9268
|
return {
|
|
8373
9269
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9270
|
+
statusCode: 'number',
|
|
8374
9271
|
body: ModifyApiResponseBody,
|
|
8375
9272
|
};
|
|
8376
9273
|
}
|
|
@@ -8525,10 +9422,12 @@ export class ModifyApiConfigurationResponseBody extends $tea.Model {
|
|
|
8525
9422
|
|
|
8526
9423
|
export class ModifyApiConfigurationResponse extends $tea.Model {
|
|
8527
9424
|
headers: { [key: string]: string };
|
|
9425
|
+
statusCode: number;
|
|
8528
9426
|
body: ModifyApiConfigurationResponseBody;
|
|
8529
9427
|
static names(): { [key: string]: string } {
|
|
8530
9428
|
return {
|
|
8531
9429
|
headers: 'headers',
|
|
9430
|
+
statusCode: 'statusCode',
|
|
8532
9431
|
body: 'body',
|
|
8533
9432
|
};
|
|
8534
9433
|
}
|
|
@@ -8536,6 +9435,7 @@ export class ModifyApiConfigurationResponse extends $tea.Model {
|
|
|
8536
9435
|
static types(): { [key: string]: any } {
|
|
8537
9436
|
return {
|
|
8538
9437
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9438
|
+
statusCode: 'number',
|
|
8539
9439
|
body: ModifyApiConfigurationResponseBody,
|
|
8540
9440
|
};
|
|
8541
9441
|
}
|
|
@@ -8636,10 +9536,12 @@ export class ModifyApiGroupResponseBody extends $tea.Model {
|
|
|
8636
9536
|
|
|
8637
9537
|
export class ModifyApiGroupResponse extends $tea.Model {
|
|
8638
9538
|
headers: { [key: string]: string };
|
|
9539
|
+
statusCode: number;
|
|
8639
9540
|
body: ModifyApiGroupResponseBody;
|
|
8640
9541
|
static names(): { [key: string]: string } {
|
|
8641
9542
|
return {
|
|
8642
9543
|
headers: 'headers',
|
|
9544
|
+
statusCode: 'statusCode',
|
|
8643
9545
|
body: 'body',
|
|
8644
9546
|
};
|
|
8645
9547
|
}
|
|
@@ -8647,6 +9549,7 @@ export class ModifyApiGroupResponse extends $tea.Model {
|
|
|
8647
9549
|
static types(): { [key: string]: any } {
|
|
8648
9550
|
return {
|
|
8649
9551
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9552
|
+
statusCode: 'number',
|
|
8650
9553
|
body: ModifyApiGroupResponseBody,
|
|
8651
9554
|
};
|
|
8652
9555
|
}
|
|
@@ -8702,10 +9605,12 @@ export class ModifyApiGroupVpcWhitelistResponseBody extends $tea.Model {
|
|
|
8702
9605
|
|
|
8703
9606
|
export class ModifyApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
8704
9607
|
headers: { [key: string]: string };
|
|
9608
|
+
statusCode: number;
|
|
8705
9609
|
body: ModifyApiGroupVpcWhitelistResponseBody;
|
|
8706
9610
|
static names(): { [key: string]: string } {
|
|
8707
9611
|
return {
|
|
8708
9612
|
headers: 'headers',
|
|
9613
|
+
statusCode: 'statusCode',
|
|
8709
9614
|
body: 'body',
|
|
8710
9615
|
};
|
|
8711
9616
|
}
|
|
@@ -8713,6 +9618,7 @@ export class ModifyApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
|
8713
9618
|
static types(): { [key: string]: any } {
|
|
8714
9619
|
return {
|
|
8715
9620
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9621
|
+
statusCode: 'number',
|
|
8716
9622
|
body: ModifyApiGroupVpcWhitelistResponseBody,
|
|
8717
9623
|
};
|
|
8718
9624
|
}
|
|
@@ -8774,10 +9680,12 @@ export class ModifyAppResponseBody extends $tea.Model {
|
|
|
8774
9680
|
|
|
8775
9681
|
export class ModifyAppResponse extends $tea.Model {
|
|
8776
9682
|
headers: { [key: string]: string };
|
|
9683
|
+
statusCode: number;
|
|
8777
9684
|
body: ModifyAppResponseBody;
|
|
8778
9685
|
static names(): { [key: string]: string } {
|
|
8779
9686
|
return {
|
|
8780
9687
|
headers: 'headers',
|
|
9688
|
+
statusCode: 'statusCode',
|
|
8781
9689
|
body: 'body',
|
|
8782
9690
|
};
|
|
8783
9691
|
}
|
|
@@ -8785,6 +9693,7 @@ export class ModifyAppResponse extends $tea.Model {
|
|
|
8785
9693
|
static types(): { [key: string]: any } {
|
|
8786
9694
|
return {
|
|
8787
9695
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9696
|
+
statusCode: 'number',
|
|
8788
9697
|
body: ModifyAppResponseBody,
|
|
8789
9698
|
};
|
|
8790
9699
|
}
|
|
@@ -8846,10 +9755,12 @@ export class ModifyBackendResponseBody extends $tea.Model {
|
|
|
8846
9755
|
|
|
8847
9756
|
export class ModifyBackendResponse extends $tea.Model {
|
|
8848
9757
|
headers: { [key: string]: string };
|
|
9758
|
+
statusCode: number;
|
|
8849
9759
|
body: ModifyBackendResponseBody;
|
|
8850
9760
|
static names(): { [key: string]: string } {
|
|
8851
9761
|
return {
|
|
8852
9762
|
headers: 'headers',
|
|
9763
|
+
statusCode: 'statusCode',
|
|
8853
9764
|
body: 'body',
|
|
8854
9765
|
};
|
|
8855
9766
|
}
|
|
@@ -8857,6 +9768,7 @@ export class ModifyBackendResponse extends $tea.Model {
|
|
|
8857
9768
|
static types(): { [key: string]: any } {
|
|
8858
9769
|
return {
|
|
8859
9770
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9771
|
+
statusCode: 'number',
|
|
8860
9772
|
body: ModifyBackendResponseBody,
|
|
8861
9773
|
};
|
|
8862
9774
|
}
|
|
@@ -8927,10 +9839,12 @@ export class ModifyBackendModelResponseBody extends $tea.Model {
|
|
|
8927
9839
|
|
|
8928
9840
|
export class ModifyBackendModelResponse extends $tea.Model {
|
|
8929
9841
|
headers: { [key: string]: string };
|
|
9842
|
+
statusCode: number;
|
|
8930
9843
|
body: ModifyBackendModelResponseBody;
|
|
8931
9844
|
static names(): { [key: string]: string } {
|
|
8932
9845
|
return {
|
|
8933
9846
|
headers: 'headers',
|
|
9847
|
+
statusCode: 'statusCode',
|
|
8934
9848
|
body: 'body',
|
|
8935
9849
|
};
|
|
8936
9850
|
}
|
|
@@ -8938,6 +9852,7 @@ export class ModifyBackendModelResponse extends $tea.Model {
|
|
|
8938
9852
|
static types(): { [key: string]: any } {
|
|
8939
9853
|
return {
|
|
8940
9854
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9855
|
+
statusCode: 'number',
|
|
8941
9856
|
body: ModifyBackendModelResponseBody,
|
|
8942
9857
|
};
|
|
8943
9858
|
}
|
|
@@ -8996,10 +9911,12 @@ export class ModifyInstanceSpecResponseBody extends $tea.Model {
|
|
|
8996
9911
|
|
|
8997
9912
|
export class ModifyInstanceSpecResponse extends $tea.Model {
|
|
8998
9913
|
headers: { [key: string]: string };
|
|
9914
|
+
statusCode: number;
|
|
8999
9915
|
body: ModifyInstanceSpecResponseBody;
|
|
9000
9916
|
static names(): { [key: string]: string } {
|
|
9001
9917
|
return {
|
|
9002
9918
|
headers: 'headers',
|
|
9919
|
+
statusCode: 'statusCode',
|
|
9003
9920
|
body: 'body',
|
|
9004
9921
|
};
|
|
9005
9922
|
}
|
|
@@ -9007,6 +9924,7 @@ export class ModifyInstanceSpecResponse extends $tea.Model {
|
|
|
9007
9924
|
static types(): { [key: string]: any } {
|
|
9008
9925
|
return {
|
|
9009
9926
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9927
|
+
statusCode: 'number',
|
|
9010
9928
|
body: ModifyInstanceSpecResponseBody,
|
|
9011
9929
|
};
|
|
9012
9930
|
}
|
|
@@ -9065,10 +9983,12 @@ export class ModifyIpControlResponseBody extends $tea.Model {
|
|
|
9065
9983
|
|
|
9066
9984
|
export class ModifyIpControlResponse extends $tea.Model {
|
|
9067
9985
|
headers: { [key: string]: string };
|
|
9986
|
+
statusCode: number;
|
|
9068
9987
|
body: ModifyIpControlResponseBody;
|
|
9069
9988
|
static names(): { [key: string]: string } {
|
|
9070
9989
|
return {
|
|
9071
9990
|
headers: 'headers',
|
|
9991
|
+
statusCode: 'statusCode',
|
|
9072
9992
|
body: 'body',
|
|
9073
9993
|
};
|
|
9074
9994
|
}
|
|
@@ -9076,6 +9996,7 @@ export class ModifyIpControlResponse extends $tea.Model {
|
|
|
9076
9996
|
static types(): { [key: string]: any } {
|
|
9077
9997
|
return {
|
|
9078
9998
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9999
|
+
statusCode: 'number',
|
|
9079
10000
|
body: ModifyIpControlResponseBody,
|
|
9080
10001
|
};
|
|
9081
10002
|
}
|
|
@@ -9137,10 +10058,12 @@ export class ModifyIpControlPolicyItemResponseBody extends $tea.Model {
|
|
|
9137
10058
|
|
|
9138
10059
|
export class ModifyIpControlPolicyItemResponse extends $tea.Model {
|
|
9139
10060
|
headers: { [key: string]: string };
|
|
10061
|
+
statusCode: number;
|
|
9140
10062
|
body: ModifyIpControlPolicyItemResponseBody;
|
|
9141
10063
|
static names(): { [key: string]: string } {
|
|
9142
10064
|
return {
|
|
9143
10065
|
headers: 'headers',
|
|
10066
|
+
statusCode: 'statusCode',
|
|
9144
10067
|
body: 'body',
|
|
9145
10068
|
};
|
|
9146
10069
|
}
|
|
@@ -9148,6 +10071,7 @@ export class ModifyIpControlPolicyItemResponse extends $tea.Model {
|
|
|
9148
10071
|
static types(): { [key: string]: any } {
|
|
9149
10072
|
return {
|
|
9150
10073
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10074
|
+
statusCode: 'number',
|
|
9151
10075
|
body: ModifyIpControlPolicyItemResponseBody,
|
|
9152
10076
|
};
|
|
9153
10077
|
}
|
|
@@ -9206,10 +10130,12 @@ export class ModifyLogConfigResponseBody extends $tea.Model {
|
|
|
9206
10130
|
|
|
9207
10131
|
export class ModifyLogConfigResponse extends $tea.Model {
|
|
9208
10132
|
headers: { [key: string]: string };
|
|
10133
|
+
statusCode: number;
|
|
9209
10134
|
body: ModifyLogConfigResponseBody;
|
|
9210
10135
|
static names(): { [key: string]: string } {
|
|
9211
10136
|
return {
|
|
9212
10137
|
headers: 'headers',
|
|
10138
|
+
statusCode: 'statusCode',
|
|
9213
10139
|
body: 'body',
|
|
9214
10140
|
};
|
|
9215
10141
|
}
|
|
@@ -9217,6 +10143,7 @@ export class ModifyLogConfigResponse extends $tea.Model {
|
|
|
9217
10143
|
static types(): { [key: string]: any } {
|
|
9218
10144
|
return {
|
|
9219
10145
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10146
|
+
statusCode: 'number',
|
|
9220
10147
|
body: ModifyLogConfigResponseBody,
|
|
9221
10148
|
};
|
|
9222
10149
|
}
|
|
@@ -9278,10 +10205,12 @@ export class ModifyModelResponseBody extends $tea.Model {
|
|
|
9278
10205
|
|
|
9279
10206
|
export class ModifyModelResponse extends $tea.Model {
|
|
9280
10207
|
headers: { [key: string]: string };
|
|
10208
|
+
statusCode: number;
|
|
9281
10209
|
body: ModifyModelResponseBody;
|
|
9282
10210
|
static names(): { [key: string]: string } {
|
|
9283
10211
|
return {
|
|
9284
10212
|
headers: 'headers',
|
|
10213
|
+
statusCode: 'statusCode',
|
|
9285
10214
|
body: 'body',
|
|
9286
10215
|
};
|
|
9287
10216
|
}
|
|
@@ -9289,6 +10218,7 @@ export class ModifyModelResponse extends $tea.Model {
|
|
|
9289
10218
|
static types(): { [key: string]: any } {
|
|
9290
10219
|
return {
|
|
9291
10220
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10221
|
+
statusCode: 'number',
|
|
9292
10222
|
body: ModifyModelResponseBody,
|
|
9293
10223
|
};
|
|
9294
10224
|
}
|
|
@@ -9353,10 +10283,12 @@ export class ModifyPluginResponseBody extends $tea.Model {
|
|
|
9353
10283
|
|
|
9354
10284
|
export class ModifyPluginResponse extends $tea.Model {
|
|
9355
10285
|
headers: { [key: string]: string };
|
|
10286
|
+
statusCode: number;
|
|
9356
10287
|
body: ModifyPluginResponseBody;
|
|
9357
10288
|
static names(): { [key: string]: string } {
|
|
9358
10289
|
return {
|
|
9359
10290
|
headers: 'headers',
|
|
10291
|
+
statusCode: 'statusCode',
|
|
9360
10292
|
body: 'body',
|
|
9361
10293
|
};
|
|
9362
10294
|
}
|
|
@@ -9364,6 +10296,7 @@ export class ModifyPluginResponse extends $tea.Model {
|
|
|
9364
10296
|
static types(): { [key: string]: any } {
|
|
9365
10297
|
return {
|
|
9366
10298
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10299
|
+
statusCode: 'number',
|
|
9367
10300
|
body: ModifyPluginResponseBody,
|
|
9368
10301
|
};
|
|
9369
10302
|
}
|
|
@@ -9431,10 +10364,12 @@ export class ModifySignatureResponseBody extends $tea.Model {
|
|
|
9431
10364
|
|
|
9432
10365
|
export class ModifySignatureResponse extends $tea.Model {
|
|
9433
10366
|
headers: { [key: string]: string };
|
|
10367
|
+
statusCode: number;
|
|
9434
10368
|
body: ModifySignatureResponseBody;
|
|
9435
10369
|
static names(): { [key: string]: string } {
|
|
9436
10370
|
return {
|
|
9437
10371
|
headers: 'headers',
|
|
10372
|
+
statusCode: 'statusCode',
|
|
9438
10373
|
body: 'body',
|
|
9439
10374
|
};
|
|
9440
10375
|
}
|
|
@@ -9442,6 +10377,7 @@ export class ModifySignatureResponse extends $tea.Model {
|
|
|
9442
10377
|
static types(): { [key: string]: any } {
|
|
9443
10378
|
return {
|
|
9444
10379
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10380
|
+
statusCode: 'number',
|
|
9445
10381
|
body: ModifySignatureResponseBody,
|
|
9446
10382
|
};
|
|
9447
10383
|
}
|
|
@@ -9512,10 +10448,12 @@ export class ModifyTrafficControlResponseBody extends $tea.Model {
|
|
|
9512
10448
|
|
|
9513
10449
|
export class ModifyTrafficControlResponse extends $tea.Model {
|
|
9514
10450
|
headers: { [key: string]: string };
|
|
10451
|
+
statusCode: number;
|
|
9515
10452
|
body: ModifyTrafficControlResponseBody;
|
|
9516
10453
|
static names(): { [key: string]: string } {
|
|
9517
10454
|
return {
|
|
9518
10455
|
headers: 'headers',
|
|
10456
|
+
statusCode: 'statusCode',
|
|
9519
10457
|
body: 'body',
|
|
9520
10458
|
};
|
|
9521
10459
|
}
|
|
@@ -9523,6 +10461,7 @@ export class ModifyTrafficControlResponse extends $tea.Model {
|
|
|
9523
10461
|
static types(): { [key: string]: any } {
|
|
9524
10462
|
return {
|
|
9525
10463
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10464
|
+
statusCode: 'number',
|
|
9526
10465
|
body: ModifyTrafficControlResponseBody,
|
|
9527
10466
|
};
|
|
9528
10467
|
}
|
|
@@ -9556,10 +10495,12 @@ export class OpenApiGatewayServiceResponseBody extends $tea.Model {
|
|
|
9556
10495
|
|
|
9557
10496
|
export class OpenApiGatewayServiceResponse extends $tea.Model {
|
|
9558
10497
|
headers: { [key: string]: string };
|
|
10498
|
+
statusCode: number;
|
|
9559
10499
|
body: OpenApiGatewayServiceResponseBody;
|
|
9560
10500
|
static names(): { [key: string]: string } {
|
|
9561
10501
|
return {
|
|
9562
10502
|
headers: 'headers',
|
|
10503
|
+
statusCode: 'statusCode',
|
|
9563
10504
|
body: 'body',
|
|
9564
10505
|
};
|
|
9565
10506
|
}
|
|
@@ -9567,6 +10508,7 @@ export class OpenApiGatewayServiceResponse extends $tea.Model {
|
|
|
9567
10508
|
static types(): { [key: string]: any } {
|
|
9568
10509
|
return {
|
|
9569
10510
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10511
|
+
statusCode: 'number',
|
|
9570
10512
|
body: OpenApiGatewayServiceResponseBody,
|
|
9571
10513
|
};
|
|
9572
10514
|
}
|
|
@@ -9622,10 +10564,12 @@ export class ReactivateDomainResponseBody extends $tea.Model {
|
|
|
9622
10564
|
|
|
9623
10565
|
export class ReactivateDomainResponse extends $tea.Model {
|
|
9624
10566
|
headers: { [key: string]: string };
|
|
10567
|
+
statusCode: number;
|
|
9625
10568
|
body: ReactivateDomainResponseBody;
|
|
9626
10569
|
static names(): { [key: string]: string } {
|
|
9627
10570
|
return {
|
|
9628
10571
|
headers: 'headers',
|
|
10572
|
+
statusCode: 'statusCode',
|
|
9629
10573
|
body: 'body',
|
|
9630
10574
|
};
|
|
9631
10575
|
}
|
|
@@ -9633,6 +10577,7 @@ export class ReactivateDomainResponse extends $tea.Model {
|
|
|
9633
10577
|
static types(): { [key: string]: any } {
|
|
9634
10578
|
return {
|
|
9635
10579
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10580
|
+
statusCode: 'number',
|
|
9636
10581
|
body: ReactivateDomainResponseBody,
|
|
9637
10582
|
};
|
|
9638
10583
|
}
|
|
@@ -9642,6 +10587,75 @@ export class ReactivateDomainResponse extends $tea.Model {
|
|
|
9642
10587
|
}
|
|
9643
10588
|
}
|
|
9644
10589
|
|
|
10590
|
+
export class RemoveAccessControlListEntryRequest extends $tea.Model {
|
|
10591
|
+
aclEntrys?: string;
|
|
10592
|
+
aclId?: string;
|
|
10593
|
+
securityToken?: string;
|
|
10594
|
+
static names(): { [key: string]: string } {
|
|
10595
|
+
return {
|
|
10596
|
+
aclEntrys: 'AclEntrys',
|
|
10597
|
+
aclId: 'AclId',
|
|
10598
|
+
securityToken: 'SecurityToken',
|
|
10599
|
+
};
|
|
10600
|
+
}
|
|
10601
|
+
|
|
10602
|
+
static types(): { [key: string]: any } {
|
|
10603
|
+
return {
|
|
10604
|
+
aclEntrys: 'string',
|
|
10605
|
+
aclId: 'string',
|
|
10606
|
+
securityToken: 'string',
|
|
10607
|
+
};
|
|
10608
|
+
}
|
|
10609
|
+
|
|
10610
|
+
constructor(map?: { [key: string]: any }) {
|
|
10611
|
+
super(map);
|
|
10612
|
+
}
|
|
10613
|
+
}
|
|
10614
|
+
|
|
10615
|
+
export class RemoveAccessControlListEntryResponseBody extends $tea.Model {
|
|
10616
|
+
requestId?: string;
|
|
10617
|
+
static names(): { [key: string]: string } {
|
|
10618
|
+
return {
|
|
10619
|
+
requestId: 'RequestId',
|
|
10620
|
+
};
|
|
10621
|
+
}
|
|
10622
|
+
|
|
10623
|
+
static types(): { [key: string]: any } {
|
|
10624
|
+
return {
|
|
10625
|
+
requestId: 'string',
|
|
10626
|
+
};
|
|
10627
|
+
}
|
|
10628
|
+
|
|
10629
|
+
constructor(map?: { [key: string]: any }) {
|
|
10630
|
+
super(map);
|
|
10631
|
+
}
|
|
10632
|
+
}
|
|
10633
|
+
|
|
10634
|
+
export class RemoveAccessControlListEntryResponse extends $tea.Model {
|
|
10635
|
+
headers: { [key: string]: string };
|
|
10636
|
+
statusCode: number;
|
|
10637
|
+
body: RemoveAccessControlListEntryResponseBody;
|
|
10638
|
+
static names(): { [key: string]: string } {
|
|
10639
|
+
return {
|
|
10640
|
+
headers: 'headers',
|
|
10641
|
+
statusCode: 'statusCode',
|
|
10642
|
+
body: 'body',
|
|
10643
|
+
};
|
|
10644
|
+
}
|
|
10645
|
+
|
|
10646
|
+
static types(): { [key: string]: any } {
|
|
10647
|
+
return {
|
|
10648
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10649
|
+
statusCode: 'number',
|
|
10650
|
+
body: RemoveAccessControlListEntryResponseBody,
|
|
10651
|
+
};
|
|
10652
|
+
}
|
|
10653
|
+
|
|
10654
|
+
constructor(map?: { [key: string]: any }) {
|
|
10655
|
+
super(map);
|
|
10656
|
+
}
|
|
10657
|
+
}
|
|
10658
|
+
|
|
9645
10659
|
export class RemoveApisAuthoritiesRequest extends $tea.Model {
|
|
9646
10660
|
apiIds?: string;
|
|
9647
10661
|
appId?: number;
|
|
@@ -9697,10 +10711,12 @@ export class RemoveApisAuthoritiesResponseBody extends $tea.Model {
|
|
|
9697
10711
|
|
|
9698
10712
|
export class RemoveApisAuthoritiesResponse extends $tea.Model {
|
|
9699
10713
|
headers: { [key: string]: string };
|
|
10714
|
+
statusCode: number;
|
|
9700
10715
|
body: RemoveApisAuthoritiesResponseBody;
|
|
9701
10716
|
static names(): { [key: string]: string } {
|
|
9702
10717
|
return {
|
|
9703
10718
|
headers: 'headers',
|
|
10719
|
+
statusCode: 'statusCode',
|
|
9704
10720
|
body: 'body',
|
|
9705
10721
|
};
|
|
9706
10722
|
}
|
|
@@ -9708,6 +10724,7 @@ export class RemoveApisAuthoritiesResponse extends $tea.Model {
|
|
|
9708
10724
|
static types(): { [key: string]: any } {
|
|
9709
10725
|
return {
|
|
9710
10726
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10727
|
+
statusCode: 'number',
|
|
9711
10728
|
body: RemoveApisAuthoritiesResponseBody,
|
|
9712
10729
|
};
|
|
9713
10730
|
}
|
|
@@ -9769,10 +10786,12 @@ export class RemoveAppsAuthoritiesResponseBody extends $tea.Model {
|
|
|
9769
10786
|
|
|
9770
10787
|
export class RemoveAppsAuthoritiesResponse extends $tea.Model {
|
|
9771
10788
|
headers: { [key: string]: string };
|
|
10789
|
+
statusCode: number;
|
|
9772
10790
|
body: RemoveAppsAuthoritiesResponseBody;
|
|
9773
10791
|
static names(): { [key: string]: string } {
|
|
9774
10792
|
return {
|
|
9775
10793
|
headers: 'headers',
|
|
10794
|
+
statusCode: 'statusCode',
|
|
9776
10795
|
body: 'body',
|
|
9777
10796
|
};
|
|
9778
10797
|
}
|
|
@@ -9780,6 +10799,7 @@ export class RemoveAppsAuthoritiesResponse extends $tea.Model {
|
|
|
9780
10799
|
static types(): { [key: string]: any } {
|
|
9781
10800
|
return {
|
|
9782
10801
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10802
|
+
statusCode: 'number',
|
|
9783
10803
|
body: RemoveAppsAuthoritiesResponseBody,
|
|
9784
10804
|
};
|
|
9785
10805
|
}
|
|
@@ -9841,10 +10861,12 @@ export class RemoveIpControlApisResponseBody extends $tea.Model {
|
|
|
9841
10861
|
|
|
9842
10862
|
export class RemoveIpControlApisResponse extends $tea.Model {
|
|
9843
10863
|
headers: { [key: string]: string };
|
|
10864
|
+
statusCode: number;
|
|
9844
10865
|
body: RemoveIpControlApisResponseBody;
|
|
9845
10866
|
static names(): { [key: string]: string } {
|
|
9846
10867
|
return {
|
|
9847
10868
|
headers: 'headers',
|
|
10869
|
+
statusCode: 'statusCode',
|
|
9848
10870
|
body: 'body',
|
|
9849
10871
|
};
|
|
9850
10872
|
}
|
|
@@ -9852,6 +10874,7 @@ export class RemoveIpControlApisResponse extends $tea.Model {
|
|
|
9852
10874
|
static types(): { [key: string]: any } {
|
|
9853
10875
|
return {
|
|
9854
10876
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10877
|
+
statusCode: 'number',
|
|
9855
10878
|
body: RemoveIpControlApisResponseBody,
|
|
9856
10879
|
};
|
|
9857
10880
|
}
|
|
@@ -9907,10 +10930,12 @@ export class RemoveIpControlPolicyItemResponseBody extends $tea.Model {
|
|
|
9907
10930
|
|
|
9908
10931
|
export class RemoveIpControlPolicyItemResponse extends $tea.Model {
|
|
9909
10932
|
headers: { [key: string]: string };
|
|
10933
|
+
statusCode: number;
|
|
9910
10934
|
body: RemoveIpControlPolicyItemResponseBody;
|
|
9911
10935
|
static names(): { [key: string]: string } {
|
|
9912
10936
|
return {
|
|
9913
10937
|
headers: 'headers',
|
|
10938
|
+
statusCode: 'statusCode',
|
|
9914
10939
|
body: 'body',
|
|
9915
10940
|
};
|
|
9916
10941
|
}
|
|
@@ -9918,6 +10943,7 @@ export class RemoveIpControlPolicyItemResponse extends $tea.Model {
|
|
|
9918
10943
|
static types(): { [key: string]: any } {
|
|
9919
10944
|
return {
|
|
9920
10945
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10946
|
+
statusCode: 'number',
|
|
9921
10947
|
body: RemoveIpControlPolicyItemResponseBody,
|
|
9922
10948
|
};
|
|
9923
10949
|
}
|
|
@@ -9979,10 +11005,12 @@ export class RemoveSignatureApisResponseBody extends $tea.Model {
|
|
|
9979
11005
|
|
|
9980
11006
|
export class RemoveSignatureApisResponse extends $tea.Model {
|
|
9981
11007
|
headers: { [key: string]: string };
|
|
11008
|
+
statusCode: number;
|
|
9982
11009
|
body: RemoveSignatureApisResponseBody;
|
|
9983
11010
|
static names(): { [key: string]: string } {
|
|
9984
11011
|
return {
|
|
9985
11012
|
headers: 'headers',
|
|
11013
|
+
statusCode: 'statusCode',
|
|
9986
11014
|
body: 'body',
|
|
9987
11015
|
};
|
|
9988
11016
|
}
|
|
@@ -9990,6 +11018,7 @@ export class RemoveSignatureApisResponse extends $tea.Model {
|
|
|
9990
11018
|
static types(): { [key: string]: any } {
|
|
9991
11019
|
return {
|
|
9992
11020
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11021
|
+
statusCode: 'number',
|
|
9993
11022
|
body: RemoveSignatureApisResponseBody,
|
|
9994
11023
|
};
|
|
9995
11024
|
}
|
|
@@ -10051,10 +11080,12 @@ export class RemoveTrafficControlApisResponseBody extends $tea.Model {
|
|
|
10051
11080
|
|
|
10052
11081
|
export class RemoveTrafficControlApisResponse extends $tea.Model {
|
|
10053
11082
|
headers: { [key: string]: string };
|
|
11083
|
+
statusCode: number;
|
|
10054
11084
|
body: RemoveTrafficControlApisResponseBody;
|
|
10055
11085
|
static names(): { [key: string]: string } {
|
|
10056
11086
|
return {
|
|
10057
11087
|
headers: 'headers',
|
|
11088
|
+
statusCode: 'statusCode',
|
|
10058
11089
|
body: 'body',
|
|
10059
11090
|
};
|
|
10060
11091
|
}
|
|
@@ -10062,6 +11093,7 @@ export class RemoveTrafficControlApisResponse extends $tea.Model {
|
|
|
10062
11093
|
static types(): { [key: string]: any } {
|
|
10063
11094
|
return {
|
|
10064
11095
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11096
|
+
statusCode: 'number',
|
|
10065
11097
|
body: RemoveTrafficControlApisResponseBody,
|
|
10066
11098
|
};
|
|
10067
11099
|
}
|
|
@@ -10126,10 +11158,12 @@ export class RemoveVpcAccessResponseBody extends $tea.Model {
|
|
|
10126
11158
|
|
|
10127
11159
|
export class RemoveVpcAccessResponse extends $tea.Model {
|
|
10128
11160
|
headers: { [key: string]: string };
|
|
11161
|
+
statusCode: number;
|
|
10129
11162
|
body: RemoveVpcAccessResponseBody;
|
|
10130
11163
|
static names(): { [key: string]: string } {
|
|
10131
11164
|
return {
|
|
10132
11165
|
headers: 'headers',
|
|
11166
|
+
statusCode: 'statusCode',
|
|
10133
11167
|
body: 'body',
|
|
10134
11168
|
};
|
|
10135
11169
|
}
|
|
@@ -10137,6 +11171,7 @@ export class RemoveVpcAccessResponse extends $tea.Model {
|
|
|
10137
11171
|
static types(): { [key: string]: any } {
|
|
10138
11172
|
return {
|
|
10139
11173
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11174
|
+
statusCode: 'number',
|
|
10140
11175
|
body: RemoveVpcAccessResponseBody,
|
|
10141
11176
|
};
|
|
10142
11177
|
}
|
|
@@ -10201,10 +11236,12 @@ export class RemoveVpcAccessAndAbolishApisResponseBody extends $tea.Model {
|
|
|
10201
11236
|
|
|
10202
11237
|
export class RemoveVpcAccessAndAbolishApisResponse extends $tea.Model {
|
|
10203
11238
|
headers: { [key: string]: string };
|
|
11239
|
+
statusCode: number;
|
|
10204
11240
|
body: RemoveVpcAccessAndAbolishApisResponseBody;
|
|
10205
11241
|
static names(): { [key: string]: string } {
|
|
10206
11242
|
return {
|
|
10207
11243
|
headers: 'headers',
|
|
11244
|
+
statusCode: 'statusCode',
|
|
10208
11245
|
body: 'body',
|
|
10209
11246
|
};
|
|
10210
11247
|
}
|
|
@@ -10212,6 +11249,7 @@ export class RemoveVpcAccessAndAbolishApisResponse extends $tea.Model {
|
|
|
10212
11249
|
static types(): { [key: string]: any } {
|
|
10213
11250
|
return {
|
|
10214
11251
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11252
|
+
statusCode: 'number',
|
|
10215
11253
|
body: RemoveVpcAccessAndAbolishApisResponseBody,
|
|
10216
11254
|
};
|
|
10217
11255
|
}
|
|
@@ -10264,10 +11302,12 @@ export class ResetAppCodeResponseBody extends $tea.Model {
|
|
|
10264
11302
|
|
|
10265
11303
|
export class ResetAppCodeResponse extends $tea.Model {
|
|
10266
11304
|
headers: { [key: string]: string };
|
|
11305
|
+
statusCode: number;
|
|
10267
11306
|
body: ResetAppCodeResponseBody;
|
|
10268
11307
|
static names(): { [key: string]: string } {
|
|
10269
11308
|
return {
|
|
10270
11309
|
headers: 'headers',
|
|
11310
|
+
statusCode: 'statusCode',
|
|
10271
11311
|
body: 'body',
|
|
10272
11312
|
};
|
|
10273
11313
|
}
|
|
@@ -10275,6 +11315,7 @@ export class ResetAppCodeResponse extends $tea.Model {
|
|
|
10275
11315
|
static types(): { [key: string]: any } {
|
|
10276
11316
|
return {
|
|
10277
11317
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11318
|
+
statusCode: 'number',
|
|
10278
11319
|
body: ResetAppCodeResponseBody,
|
|
10279
11320
|
};
|
|
10280
11321
|
}
|
|
@@ -10284,19 +11325,88 @@ export class ResetAppCodeResponse extends $tea.Model {
|
|
|
10284
11325
|
}
|
|
10285
11326
|
}
|
|
10286
11327
|
|
|
10287
|
-
export class ResetAppSecretRequest extends $tea.Model {
|
|
10288
|
-
appKey?: string;
|
|
11328
|
+
export class ResetAppSecretRequest extends $tea.Model {
|
|
11329
|
+
appKey?: string;
|
|
11330
|
+
securityToken?: string;
|
|
11331
|
+
static names(): { [key: string]: string } {
|
|
11332
|
+
return {
|
|
11333
|
+
appKey: 'AppKey',
|
|
11334
|
+
securityToken: 'SecurityToken',
|
|
11335
|
+
};
|
|
11336
|
+
}
|
|
11337
|
+
|
|
11338
|
+
static types(): { [key: string]: any } {
|
|
11339
|
+
return {
|
|
11340
|
+
appKey: 'string',
|
|
11341
|
+
securityToken: 'string',
|
|
11342
|
+
};
|
|
11343
|
+
}
|
|
11344
|
+
|
|
11345
|
+
constructor(map?: { [key: string]: any }) {
|
|
11346
|
+
super(map);
|
|
11347
|
+
}
|
|
11348
|
+
}
|
|
11349
|
+
|
|
11350
|
+
export class ResetAppSecretResponseBody extends $tea.Model {
|
|
11351
|
+
requestId?: string;
|
|
11352
|
+
static names(): { [key: string]: string } {
|
|
11353
|
+
return {
|
|
11354
|
+
requestId: 'RequestId',
|
|
11355
|
+
};
|
|
11356
|
+
}
|
|
11357
|
+
|
|
11358
|
+
static types(): { [key: string]: any } {
|
|
11359
|
+
return {
|
|
11360
|
+
requestId: 'string',
|
|
11361
|
+
};
|
|
11362
|
+
}
|
|
11363
|
+
|
|
11364
|
+
constructor(map?: { [key: string]: any }) {
|
|
11365
|
+
super(map);
|
|
11366
|
+
}
|
|
11367
|
+
}
|
|
11368
|
+
|
|
11369
|
+
export class ResetAppSecretResponse extends $tea.Model {
|
|
11370
|
+
headers: { [key: string]: string };
|
|
11371
|
+
statusCode: number;
|
|
11372
|
+
body: ResetAppSecretResponseBody;
|
|
11373
|
+
static names(): { [key: string]: string } {
|
|
11374
|
+
return {
|
|
11375
|
+
headers: 'headers',
|
|
11376
|
+
statusCode: 'statusCode',
|
|
11377
|
+
body: 'body',
|
|
11378
|
+
};
|
|
11379
|
+
}
|
|
11380
|
+
|
|
11381
|
+
static types(): { [key: string]: any } {
|
|
11382
|
+
return {
|
|
11383
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11384
|
+
statusCode: 'number',
|
|
11385
|
+
body: ResetAppSecretResponseBody,
|
|
11386
|
+
};
|
|
11387
|
+
}
|
|
11388
|
+
|
|
11389
|
+
constructor(map?: { [key: string]: any }) {
|
|
11390
|
+
super(map);
|
|
11391
|
+
}
|
|
11392
|
+
}
|
|
11393
|
+
|
|
11394
|
+
export class SdkGenerateByAppRequest extends $tea.Model {
|
|
11395
|
+
appId?: number;
|
|
11396
|
+
language?: string;
|
|
10289
11397
|
securityToken?: string;
|
|
10290
11398
|
static names(): { [key: string]: string } {
|
|
10291
11399
|
return {
|
|
10292
|
-
|
|
11400
|
+
appId: 'AppId',
|
|
11401
|
+
language: 'Language',
|
|
10293
11402
|
securityToken: 'SecurityToken',
|
|
10294
11403
|
};
|
|
10295
11404
|
}
|
|
10296
11405
|
|
|
10297
11406
|
static types(): { [key: string]: any } {
|
|
10298
11407
|
return {
|
|
10299
|
-
|
|
11408
|
+
appId: 'number',
|
|
11409
|
+
language: 'string',
|
|
10300
11410
|
securityToken: 'string',
|
|
10301
11411
|
};
|
|
10302
11412
|
}
|
|
@@ -10306,16 +11416,19 @@ export class ResetAppSecretRequest extends $tea.Model {
|
|
|
10306
11416
|
}
|
|
10307
11417
|
}
|
|
10308
11418
|
|
|
10309
|
-
export class
|
|
11419
|
+
export class SdkGenerateByAppResponseBody extends $tea.Model {
|
|
11420
|
+
downloadLink?: string;
|
|
10310
11421
|
requestId?: string;
|
|
10311
11422
|
static names(): { [key: string]: string } {
|
|
10312
11423
|
return {
|
|
11424
|
+
downloadLink: 'DownloadLink',
|
|
10313
11425
|
requestId: 'RequestId',
|
|
10314
11426
|
};
|
|
10315
11427
|
}
|
|
10316
11428
|
|
|
10317
11429
|
static types(): { [key: string]: any } {
|
|
10318
11430
|
return {
|
|
11431
|
+
downloadLink: 'string',
|
|
10319
11432
|
requestId: 'string',
|
|
10320
11433
|
};
|
|
10321
11434
|
}
|
|
@@ -10325,12 +11438,14 @@ export class ResetAppSecretResponseBody extends $tea.Model {
|
|
|
10325
11438
|
}
|
|
10326
11439
|
}
|
|
10327
11440
|
|
|
10328
|
-
export class
|
|
11441
|
+
export class SdkGenerateByAppResponse extends $tea.Model {
|
|
10329
11442
|
headers: { [key: string]: string };
|
|
10330
|
-
|
|
11443
|
+
statusCode: number;
|
|
11444
|
+
body: SdkGenerateByAppResponseBody;
|
|
10331
11445
|
static names(): { [key: string]: string } {
|
|
10332
11446
|
return {
|
|
10333
11447
|
headers: 'headers',
|
|
11448
|
+
statusCode: 'statusCode',
|
|
10334
11449
|
body: 'body',
|
|
10335
11450
|
};
|
|
10336
11451
|
}
|
|
@@ -10338,7 +11453,8 @@ export class ResetAppSecretResponse extends $tea.Model {
|
|
|
10338
11453
|
static types(): { [key: string]: any } {
|
|
10339
11454
|
return {
|
|
10340
11455
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10341
|
-
|
|
11456
|
+
statusCode: 'number',
|
|
11457
|
+
body: SdkGenerateByAppResponseBody,
|
|
10342
11458
|
};
|
|
10343
11459
|
}
|
|
10344
11460
|
|
|
@@ -10347,7 +11463,7 @@ export class ResetAppSecretResponse extends $tea.Model {
|
|
|
10347
11463
|
}
|
|
10348
11464
|
}
|
|
10349
11465
|
|
|
10350
|
-
export class
|
|
11466
|
+
export class SdkGenerateByAppForRegionRequest extends $tea.Model {
|
|
10351
11467
|
appId?: number;
|
|
10352
11468
|
language?: string;
|
|
10353
11469
|
securityToken?: string;
|
|
@@ -10372,7 +11488,7 @@ export class SdkGenerateByAppRequest extends $tea.Model {
|
|
|
10372
11488
|
}
|
|
10373
11489
|
}
|
|
10374
11490
|
|
|
10375
|
-
export class
|
|
11491
|
+
export class SdkGenerateByAppForRegionResponseBody extends $tea.Model {
|
|
10376
11492
|
downloadLink?: string;
|
|
10377
11493
|
requestId?: string;
|
|
10378
11494
|
static names(): { [key: string]: string } {
|
|
@@ -10394,12 +11510,14 @@ export class SdkGenerateByAppResponseBody extends $tea.Model {
|
|
|
10394
11510
|
}
|
|
10395
11511
|
}
|
|
10396
11512
|
|
|
10397
|
-
export class
|
|
11513
|
+
export class SdkGenerateByAppForRegionResponse extends $tea.Model {
|
|
10398
11514
|
headers: { [key: string]: string };
|
|
10399
|
-
|
|
11515
|
+
statusCode: number;
|
|
11516
|
+
body: SdkGenerateByAppForRegionResponseBody;
|
|
10400
11517
|
static names(): { [key: string]: string } {
|
|
10401
11518
|
return {
|
|
10402
11519
|
headers: 'headers',
|
|
11520
|
+
statusCode: 'statusCode',
|
|
10403
11521
|
body: 'body',
|
|
10404
11522
|
};
|
|
10405
11523
|
}
|
|
@@ -10407,7 +11525,8 @@ export class SdkGenerateByAppResponse extends $tea.Model {
|
|
|
10407
11525
|
static types(): { [key: string]: any } {
|
|
10408
11526
|
return {
|
|
10409
11527
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10410
|
-
|
|
11528
|
+
statusCode: 'number',
|
|
11529
|
+
body: SdkGenerateByAppForRegionResponseBody,
|
|
10411
11530
|
};
|
|
10412
11531
|
}
|
|
10413
11532
|
|
|
@@ -10465,10 +11584,12 @@ export class SdkGenerateByGroupResponseBody extends $tea.Model {
|
|
|
10465
11584
|
|
|
10466
11585
|
export class SdkGenerateByGroupResponse extends $tea.Model {
|
|
10467
11586
|
headers: { [key: string]: string };
|
|
11587
|
+
statusCode: number;
|
|
10468
11588
|
body: SdkGenerateByGroupResponseBody;
|
|
10469
11589
|
static names(): { [key: string]: string } {
|
|
10470
11590
|
return {
|
|
10471
11591
|
headers: 'headers',
|
|
11592
|
+
statusCode: 'statusCode',
|
|
10472
11593
|
body: 'body',
|
|
10473
11594
|
};
|
|
10474
11595
|
}
|
|
@@ -10476,6 +11597,7 @@ export class SdkGenerateByGroupResponse extends $tea.Model {
|
|
|
10476
11597
|
static types(): { [key: string]: any } {
|
|
10477
11598
|
return {
|
|
10478
11599
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11600
|
+
statusCode: 'number',
|
|
10479
11601
|
body: SdkGenerateByGroupResponseBody,
|
|
10480
11602
|
};
|
|
10481
11603
|
}
|
|
@@ -10543,10 +11665,12 @@ export class SetApisAuthoritiesResponseBody extends $tea.Model {
|
|
|
10543
11665
|
|
|
10544
11666
|
export class SetApisAuthoritiesResponse extends $tea.Model {
|
|
10545
11667
|
headers: { [key: string]: string };
|
|
11668
|
+
statusCode: number;
|
|
10546
11669
|
body: SetApisAuthoritiesResponseBody;
|
|
10547
11670
|
static names(): { [key: string]: string } {
|
|
10548
11671
|
return {
|
|
10549
11672
|
headers: 'headers',
|
|
11673
|
+
statusCode: 'statusCode',
|
|
10550
11674
|
body: 'body',
|
|
10551
11675
|
};
|
|
10552
11676
|
}
|
|
@@ -10554,6 +11678,7 @@ export class SetApisAuthoritiesResponse extends $tea.Model {
|
|
|
10554
11678
|
static types(): { [key: string]: any } {
|
|
10555
11679
|
return {
|
|
10556
11680
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11681
|
+
statusCode: 'number',
|
|
10557
11682
|
body: SetApisAuthoritiesResponseBody,
|
|
10558
11683
|
};
|
|
10559
11684
|
}
|
|
@@ -10621,10 +11746,12 @@ export class SetAppsAuthoritiesResponseBody extends $tea.Model {
|
|
|
10621
11746
|
|
|
10622
11747
|
export class SetAppsAuthoritiesResponse extends $tea.Model {
|
|
10623
11748
|
headers: { [key: string]: string };
|
|
11749
|
+
statusCode: number;
|
|
10624
11750
|
body: SetAppsAuthoritiesResponseBody;
|
|
10625
11751
|
static names(): { [key: string]: string } {
|
|
10626
11752
|
return {
|
|
10627
11753
|
headers: 'headers',
|
|
11754
|
+
statusCode: 'statusCode',
|
|
10628
11755
|
body: 'body',
|
|
10629
11756
|
};
|
|
10630
11757
|
}
|
|
@@ -10632,6 +11759,7 @@ export class SetAppsAuthoritiesResponse extends $tea.Model {
|
|
|
10632
11759
|
static types(): { [key: string]: any } {
|
|
10633
11760
|
return {
|
|
10634
11761
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11762
|
+
statusCode: 'number',
|
|
10635
11763
|
body: SetAppsAuthoritiesResponseBody,
|
|
10636
11764
|
};
|
|
10637
11765
|
}
|
|
@@ -10714,10 +11842,12 @@ export class SetDomainResponseBody extends $tea.Model {
|
|
|
10714
11842
|
|
|
10715
11843
|
export class SetDomainResponse extends $tea.Model {
|
|
10716
11844
|
headers: { [key: string]: string };
|
|
11845
|
+
statusCode: number;
|
|
10717
11846
|
body: SetDomainResponseBody;
|
|
10718
11847
|
static names(): { [key: string]: string } {
|
|
10719
11848
|
return {
|
|
10720
11849
|
headers: 'headers',
|
|
11850
|
+
statusCode: 'statusCode',
|
|
10721
11851
|
body: 'body',
|
|
10722
11852
|
};
|
|
10723
11853
|
}
|
|
@@ -10725,6 +11855,7 @@ export class SetDomainResponse extends $tea.Model {
|
|
|
10725
11855
|
static types(): { [key: string]: any } {
|
|
10726
11856
|
return {
|
|
10727
11857
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11858
|
+
statusCode: 'number',
|
|
10728
11859
|
body: SetDomainResponseBody,
|
|
10729
11860
|
};
|
|
10730
11861
|
}
|
|
@@ -10742,6 +11873,7 @@ export class SetDomainCertificateRequest extends $tea.Model {
|
|
|
10742
11873
|
domainName?: string;
|
|
10743
11874
|
groupId?: string;
|
|
10744
11875
|
securityToken?: string;
|
|
11876
|
+
sslVerifyDepth?: string;
|
|
10745
11877
|
static names(): { [key: string]: string } {
|
|
10746
11878
|
return {
|
|
10747
11879
|
caCertificateBody: 'CaCertificateBody',
|
|
@@ -10751,6 +11883,7 @@ export class SetDomainCertificateRequest extends $tea.Model {
|
|
|
10751
11883
|
domainName: 'DomainName',
|
|
10752
11884
|
groupId: 'GroupId',
|
|
10753
11885
|
securityToken: 'SecurityToken',
|
|
11886
|
+
sslVerifyDepth: 'SslVerifyDepth',
|
|
10754
11887
|
};
|
|
10755
11888
|
}
|
|
10756
11889
|
|
|
@@ -10763,6 +11896,7 @@ export class SetDomainCertificateRequest extends $tea.Model {
|
|
|
10763
11896
|
domainName: 'string',
|
|
10764
11897
|
groupId: 'string',
|
|
10765
11898
|
securityToken: 'string',
|
|
11899
|
+
sslVerifyDepth: 'string',
|
|
10766
11900
|
};
|
|
10767
11901
|
}
|
|
10768
11902
|
|
|
@@ -10792,10 +11926,12 @@ export class SetDomainCertificateResponseBody extends $tea.Model {
|
|
|
10792
11926
|
|
|
10793
11927
|
export class SetDomainCertificateResponse extends $tea.Model {
|
|
10794
11928
|
headers: { [key: string]: string };
|
|
11929
|
+
statusCode: number;
|
|
10795
11930
|
body: SetDomainCertificateResponseBody;
|
|
10796
11931
|
static names(): { [key: string]: string } {
|
|
10797
11932
|
return {
|
|
10798
11933
|
headers: 'headers',
|
|
11934
|
+
statusCode: 'statusCode',
|
|
10799
11935
|
body: 'body',
|
|
10800
11936
|
};
|
|
10801
11937
|
}
|
|
@@ -10803,6 +11939,7 @@ export class SetDomainCertificateResponse extends $tea.Model {
|
|
|
10803
11939
|
static types(): { [key: string]: any } {
|
|
10804
11940
|
return {
|
|
10805
11941
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
11942
|
+
statusCode: 'number',
|
|
10806
11943
|
body: SetDomainCertificateResponseBody,
|
|
10807
11944
|
};
|
|
10808
11945
|
}
|
|
@@ -10861,10 +11998,12 @@ export class SetDomainWebSocketStatusResponseBody extends $tea.Model {
|
|
|
10861
11998
|
|
|
10862
11999
|
export class SetDomainWebSocketStatusResponse extends $tea.Model {
|
|
10863
12000
|
headers: { [key: string]: string };
|
|
12001
|
+
statusCode: number;
|
|
10864
12002
|
body: SetDomainWebSocketStatusResponseBody;
|
|
10865
12003
|
static names(): { [key: string]: string } {
|
|
10866
12004
|
return {
|
|
10867
12005
|
headers: 'headers',
|
|
12006
|
+
statusCode: 'statusCode',
|
|
10868
12007
|
body: 'body',
|
|
10869
12008
|
};
|
|
10870
12009
|
}
|
|
@@ -10872,6 +12011,7 @@ export class SetDomainWebSocketStatusResponse extends $tea.Model {
|
|
|
10872
12011
|
static types(): { [key: string]: any } {
|
|
10873
12012
|
return {
|
|
10874
12013
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
12014
|
+
statusCode: 'number',
|
|
10875
12015
|
body: SetDomainWebSocketStatusResponseBody,
|
|
10876
12016
|
};
|
|
10877
12017
|
}
|
|
@@ -10933,10 +12073,12 @@ export class SetIpControlApisResponseBody extends $tea.Model {
|
|
|
10933
12073
|
|
|
10934
12074
|
export class SetIpControlApisResponse extends $tea.Model {
|
|
10935
12075
|
headers: { [key: string]: string };
|
|
12076
|
+
statusCode: number;
|
|
10936
12077
|
body: SetIpControlApisResponseBody;
|
|
10937
12078
|
static names(): { [key: string]: string } {
|
|
10938
12079
|
return {
|
|
10939
12080
|
headers: 'headers',
|
|
12081
|
+
statusCode: 'statusCode',
|
|
10940
12082
|
body: 'body',
|
|
10941
12083
|
};
|
|
10942
12084
|
}
|
|
@@ -10944,6 +12086,7 @@ export class SetIpControlApisResponse extends $tea.Model {
|
|
|
10944
12086
|
static types(): { [key: string]: any } {
|
|
10945
12087
|
return {
|
|
10946
12088
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
12089
|
+
statusCode: 'number',
|
|
10947
12090
|
body: SetIpControlApisResponseBody,
|
|
10948
12091
|
};
|
|
10949
12092
|
}
|
|
@@ -11005,10 +12148,12 @@ export class SetSignatureApisResponseBody extends $tea.Model {
|
|
|
11005
12148
|
|
|
11006
12149
|
export class SetSignatureApisResponse extends $tea.Model {
|
|
11007
12150
|
headers: { [key: string]: string };
|
|
12151
|
+
statusCode: number;
|
|
11008
12152
|
body: SetSignatureApisResponseBody;
|
|
11009
12153
|
static names(): { [key: string]: string } {
|
|
11010
12154
|
return {
|
|
11011
12155
|
headers: 'headers',
|
|
12156
|
+
statusCode: 'statusCode',
|
|
11012
12157
|
body: 'body',
|
|
11013
12158
|
};
|
|
11014
12159
|
}
|
|
@@ -11016,6 +12161,7 @@ export class SetSignatureApisResponse extends $tea.Model {
|
|
|
11016
12161
|
static types(): { [key: string]: any } {
|
|
11017
12162
|
return {
|
|
11018
12163
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
12164
|
+
statusCode: 'number',
|
|
11019
12165
|
body: SetSignatureApisResponseBody,
|
|
11020
12166
|
};
|
|
11021
12167
|
}
|
|
@@ -11077,10 +12223,12 @@ export class SetTrafficControlApisResponseBody extends $tea.Model {
|
|
|
11077
12223
|
|
|
11078
12224
|
export class SetTrafficControlApisResponse extends $tea.Model {
|
|
11079
12225
|
headers: { [key: string]: string };
|
|
12226
|
+
statusCode: number;
|
|
11080
12227
|
body: SetTrafficControlApisResponseBody;
|
|
11081
12228
|
static names(): { [key: string]: string } {
|
|
11082
12229
|
return {
|
|
11083
12230
|
headers: 'headers',
|
|
12231
|
+
statusCode: 'statusCode',
|
|
11084
12232
|
body: 'body',
|
|
11085
12233
|
};
|
|
11086
12234
|
}
|
|
@@ -11088,6 +12236,7 @@ export class SetTrafficControlApisResponse extends $tea.Model {
|
|
|
11088
12236
|
static types(): { [key: string]: any } {
|
|
11089
12237
|
return {
|
|
11090
12238
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
12239
|
+
statusCode: 'number',
|
|
11091
12240
|
body: SetTrafficControlApisResponseBody,
|
|
11092
12241
|
};
|
|
11093
12242
|
}
|
|
@@ -11155,10 +12304,12 @@ export class SetVpcAccessResponseBody extends $tea.Model {
|
|
|
11155
12304
|
|
|
11156
12305
|
export class SetVpcAccessResponse extends $tea.Model {
|
|
11157
12306
|
headers: { [key: string]: string };
|
|
12307
|
+
statusCode: number;
|
|
11158
12308
|
body: SetVpcAccessResponseBody;
|
|
11159
12309
|
static names(): { [key: string]: string } {
|
|
11160
12310
|
return {
|
|
11161
12311
|
headers: 'headers',
|
|
12312
|
+
statusCode: 'statusCode',
|
|
11162
12313
|
body: 'body',
|
|
11163
12314
|
};
|
|
11164
12315
|
}
|
|
@@ -11166,6 +12317,7 @@ export class SetVpcAccessResponse extends $tea.Model {
|
|
|
11166
12317
|
static types(): { [key: string]: any } {
|
|
11167
12318
|
return {
|
|
11168
12319
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
12320
|
+
statusCode: 'number',
|
|
11169
12321
|
body: SetVpcAccessResponseBody,
|
|
11170
12322
|
};
|
|
11171
12323
|
}
|
|
@@ -11224,10 +12376,12 @@ export class SetWildcardDomainPatternsResponseBody extends $tea.Model {
|
|
|
11224
12376
|
|
|
11225
12377
|
export class SetWildcardDomainPatternsResponse extends $tea.Model {
|
|
11226
12378
|
headers: { [key: string]: string };
|
|
12379
|
+
statusCode: number;
|
|
11227
12380
|
body: SetWildcardDomainPatternsResponseBody;
|
|
11228
12381
|
static names(): { [key: string]: string } {
|
|
11229
12382
|
return {
|
|
11230
12383
|
headers: 'headers',
|
|
12384
|
+
statusCode: 'statusCode',
|
|
11231
12385
|
body: 'body',
|
|
11232
12386
|
};
|
|
11233
12387
|
}
|
|
@@ -11235,6 +12389,7 @@ export class SetWildcardDomainPatternsResponse extends $tea.Model {
|
|
|
11235
12389
|
static types(): { [key: string]: any } {
|
|
11236
12390
|
return {
|
|
11237
12391
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
12392
|
+
statusCode: 'number',
|
|
11238
12393
|
body: SetWildcardDomainPatternsResponseBody,
|
|
11239
12394
|
};
|
|
11240
12395
|
}
|
|
@@ -11299,10 +12454,12 @@ export class SwitchApiResponseBody extends $tea.Model {
|
|
|
11299
12454
|
|
|
11300
12455
|
export class SwitchApiResponse extends $tea.Model {
|
|
11301
12456
|
headers: { [key: string]: string };
|
|
12457
|
+
statusCode: number;
|
|
11302
12458
|
body: SwitchApiResponseBody;
|
|
11303
12459
|
static names(): { [key: string]: string } {
|
|
11304
12460
|
return {
|
|
11305
12461
|
headers: 'headers',
|
|
12462
|
+
statusCode: 'statusCode',
|
|
11306
12463
|
body: 'body',
|
|
11307
12464
|
};
|
|
11308
12465
|
}
|
|
@@ -11310,6 +12467,7 @@ export class SwitchApiResponse extends $tea.Model {
|
|
|
11310
12467
|
static types(): { [key: string]: any } {
|
|
11311
12468
|
return {
|
|
11312
12469
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
12470
|
+
statusCode: 'number',
|
|
11313
12471
|
body: SwitchApiResponseBody,
|
|
11314
12472
|
};
|
|
11315
12473
|
}
|
|
@@ -11368,10 +12526,12 @@ export class TagResourcesResponseBody extends $tea.Model {
|
|
|
11368
12526
|
|
|
11369
12527
|
export class TagResourcesResponse extends $tea.Model {
|
|
11370
12528
|
headers: { [key: string]: string };
|
|
12529
|
+
statusCode: number;
|
|
11371
12530
|
body: TagResourcesResponseBody;
|
|
11372
12531
|
static names(): { [key: string]: string } {
|
|
11373
12532
|
return {
|
|
11374
12533
|
headers: 'headers',
|
|
12534
|
+
statusCode: 'statusCode',
|
|
11375
12535
|
body: 'body',
|
|
11376
12536
|
};
|
|
11377
12537
|
}
|
|
@@ -11379,6 +12539,7 @@ export class TagResourcesResponse extends $tea.Model {
|
|
|
11379
12539
|
static types(): { [key: string]: any } {
|
|
11380
12540
|
return {
|
|
11381
12541
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
12542
|
+
statusCode: 'number',
|
|
11382
12543
|
body: TagResourcesResponseBody,
|
|
11383
12544
|
};
|
|
11384
12545
|
}
|
|
@@ -11440,10 +12601,12 @@ export class UntagResourcesResponseBody extends $tea.Model {
|
|
|
11440
12601
|
|
|
11441
12602
|
export class UntagResourcesResponse extends $tea.Model {
|
|
11442
12603
|
headers: { [key: string]: string };
|
|
12604
|
+
statusCode: number;
|
|
11443
12605
|
body: UntagResourcesResponseBody;
|
|
11444
12606
|
static names(): { [key: string]: string } {
|
|
11445
12607
|
return {
|
|
11446
12608
|
headers: 'headers',
|
|
12609
|
+
statusCode: 'statusCode',
|
|
11447
12610
|
body: 'body',
|
|
11448
12611
|
};
|
|
11449
12612
|
}
|
|
@@ -11451,6 +12614,7 @@ export class UntagResourcesResponse extends $tea.Model {
|
|
|
11451
12614
|
static types(): { [key: string]: any } {
|
|
11452
12615
|
return {
|
|
11453
12616
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
12617
|
+
statusCode: 'number',
|
|
11454
12618
|
body: UntagResourcesResponseBody,
|
|
11455
12619
|
};
|
|
11456
12620
|
}
|
|
@@ -11742,6 +12906,88 @@ export class DescribeAbolishApiTaskResponseBodyApiAbolishResults extends $tea.Mo
|
|
|
11742
12906
|
}
|
|
11743
12907
|
}
|
|
11744
12908
|
|
|
12909
|
+
export class DescribeAccessControlListAttributeResponseBodyAclEntrysAclEntry extends $tea.Model {
|
|
12910
|
+
aclEntryComment?: string;
|
|
12911
|
+
aclEntryIp?: string;
|
|
12912
|
+
static names(): { [key: string]: string } {
|
|
12913
|
+
return {
|
|
12914
|
+
aclEntryComment: 'AclEntryComment',
|
|
12915
|
+
aclEntryIp: 'AclEntryIp',
|
|
12916
|
+
};
|
|
12917
|
+
}
|
|
12918
|
+
|
|
12919
|
+
static types(): { [key: string]: any } {
|
|
12920
|
+
return {
|
|
12921
|
+
aclEntryComment: 'string',
|
|
12922
|
+
aclEntryIp: 'string',
|
|
12923
|
+
};
|
|
12924
|
+
}
|
|
12925
|
+
|
|
12926
|
+
constructor(map?: { [key: string]: any }) {
|
|
12927
|
+
super(map);
|
|
12928
|
+
}
|
|
12929
|
+
}
|
|
12930
|
+
|
|
12931
|
+
export class DescribeAccessControlListAttributeResponseBodyAclEntrys extends $tea.Model {
|
|
12932
|
+
aclEntry?: DescribeAccessControlListAttributeResponseBodyAclEntrysAclEntry[];
|
|
12933
|
+
static names(): { [key: string]: string } {
|
|
12934
|
+
return {
|
|
12935
|
+
aclEntry: 'AclEntry',
|
|
12936
|
+
};
|
|
12937
|
+
}
|
|
12938
|
+
|
|
12939
|
+
static types(): { [key: string]: any } {
|
|
12940
|
+
return {
|
|
12941
|
+
aclEntry: { 'type': 'array', 'itemType': DescribeAccessControlListAttributeResponseBodyAclEntrysAclEntry },
|
|
12942
|
+
};
|
|
12943
|
+
}
|
|
12944
|
+
|
|
12945
|
+
constructor(map?: { [key: string]: any }) {
|
|
12946
|
+
super(map);
|
|
12947
|
+
}
|
|
12948
|
+
}
|
|
12949
|
+
|
|
12950
|
+
export class DescribeAccessControlListsResponseBodyAclsAcl extends $tea.Model {
|
|
12951
|
+
aclId?: string;
|
|
12952
|
+
aclName?: string;
|
|
12953
|
+
static names(): { [key: string]: string } {
|
|
12954
|
+
return {
|
|
12955
|
+
aclId: 'AclId',
|
|
12956
|
+
aclName: 'AclName',
|
|
12957
|
+
};
|
|
12958
|
+
}
|
|
12959
|
+
|
|
12960
|
+
static types(): { [key: string]: any } {
|
|
12961
|
+
return {
|
|
12962
|
+
aclId: 'string',
|
|
12963
|
+
aclName: 'string',
|
|
12964
|
+
};
|
|
12965
|
+
}
|
|
12966
|
+
|
|
12967
|
+
constructor(map?: { [key: string]: any }) {
|
|
12968
|
+
super(map);
|
|
12969
|
+
}
|
|
12970
|
+
}
|
|
12971
|
+
|
|
12972
|
+
export class DescribeAccessControlListsResponseBodyAcls extends $tea.Model {
|
|
12973
|
+
acl?: DescribeAccessControlListsResponseBodyAclsAcl[];
|
|
12974
|
+
static names(): { [key: string]: string } {
|
|
12975
|
+
return {
|
|
12976
|
+
acl: 'Acl',
|
|
12977
|
+
};
|
|
12978
|
+
}
|
|
12979
|
+
|
|
12980
|
+
static types(): { [key: string]: any } {
|
|
12981
|
+
return {
|
|
12982
|
+
acl: { 'type': 'array', 'itemType': DescribeAccessControlListsResponseBodyAclsAcl },
|
|
12983
|
+
};
|
|
12984
|
+
}
|
|
12985
|
+
|
|
12986
|
+
constructor(map?: { [key: string]: any }) {
|
|
12987
|
+
super(map);
|
|
12988
|
+
}
|
|
12989
|
+
}
|
|
12990
|
+
|
|
11745
12991
|
export class DescribeApiResponseBodyBackendConfig extends $tea.Model {
|
|
11746
12992
|
backendId?: string;
|
|
11747
12993
|
backendName?: string;
|
|
@@ -16061,6 +17307,191 @@ export class DescribeHistoryApisResponseBodyApiHisItems extends $tea.Model {
|
|
|
16061
17307
|
}
|
|
16062
17308
|
}
|
|
16063
17309
|
|
|
17310
|
+
export class DescribeInstancesRequestTag extends $tea.Model {
|
|
17311
|
+
key?: string;
|
|
17312
|
+
value?: string;
|
|
17313
|
+
static names(): { [key: string]: string } {
|
|
17314
|
+
return {
|
|
17315
|
+
key: 'Key',
|
|
17316
|
+
value: 'Value',
|
|
17317
|
+
};
|
|
17318
|
+
}
|
|
17319
|
+
|
|
17320
|
+
static types(): { [key: string]: any } {
|
|
17321
|
+
return {
|
|
17322
|
+
key: 'string',
|
|
17323
|
+
value: 'string',
|
|
17324
|
+
};
|
|
17325
|
+
}
|
|
17326
|
+
|
|
17327
|
+
constructor(map?: { [key: string]: any }) {
|
|
17328
|
+
super(map);
|
|
17329
|
+
}
|
|
17330
|
+
}
|
|
17331
|
+
|
|
17332
|
+
export class DescribeInstancesResponseBodyInstancesInstanceAttributeInstanceSpecAttributesSpecAttribute extends $tea.Model {
|
|
17333
|
+
localName?: string;
|
|
17334
|
+
value?: string;
|
|
17335
|
+
static names(): { [key: string]: string } {
|
|
17336
|
+
return {
|
|
17337
|
+
localName: 'LocalName',
|
|
17338
|
+
value: 'Value',
|
|
17339
|
+
};
|
|
17340
|
+
}
|
|
17341
|
+
|
|
17342
|
+
static types(): { [key: string]: any } {
|
|
17343
|
+
return {
|
|
17344
|
+
localName: 'string',
|
|
17345
|
+
value: 'string',
|
|
17346
|
+
};
|
|
17347
|
+
}
|
|
17348
|
+
|
|
17349
|
+
constructor(map?: { [key: string]: any }) {
|
|
17350
|
+
super(map);
|
|
17351
|
+
}
|
|
17352
|
+
}
|
|
17353
|
+
|
|
17354
|
+
export class DescribeInstancesResponseBodyInstancesInstanceAttributeInstanceSpecAttributes extends $tea.Model {
|
|
17355
|
+
specAttribute?: DescribeInstancesResponseBodyInstancesInstanceAttributeInstanceSpecAttributesSpecAttribute[];
|
|
17356
|
+
static names(): { [key: string]: string } {
|
|
17357
|
+
return {
|
|
17358
|
+
specAttribute: 'SpecAttribute',
|
|
17359
|
+
};
|
|
17360
|
+
}
|
|
17361
|
+
|
|
17362
|
+
static types(): { [key: string]: any } {
|
|
17363
|
+
return {
|
|
17364
|
+
specAttribute: { 'type': 'array', 'itemType': DescribeInstancesResponseBodyInstancesInstanceAttributeInstanceSpecAttributesSpecAttribute },
|
|
17365
|
+
};
|
|
17366
|
+
}
|
|
17367
|
+
|
|
17368
|
+
constructor(map?: { [key: string]: any }) {
|
|
17369
|
+
super(map);
|
|
17370
|
+
}
|
|
17371
|
+
}
|
|
17372
|
+
|
|
17373
|
+
export class DescribeInstancesResponseBodyInstancesInstanceAttribute extends $tea.Model {
|
|
17374
|
+
aclId?: string;
|
|
17375
|
+
aclName?: string;
|
|
17376
|
+
aclStatus?: string;
|
|
17377
|
+
aclType?: string;
|
|
17378
|
+
classicEgressAddress?: string;
|
|
17379
|
+
createdTime?: string;
|
|
17380
|
+
egressIpv6Enable?: boolean;
|
|
17381
|
+
expiredTime?: string;
|
|
17382
|
+
httpsPolicies?: string;
|
|
17383
|
+
instanceChargeType?: string;
|
|
17384
|
+
instanceId?: string;
|
|
17385
|
+
instanceName?: string;
|
|
17386
|
+
instanceRpsLimit?: number;
|
|
17387
|
+
instanceSpec?: string;
|
|
17388
|
+
instanceSpecAttributes?: DescribeInstancesResponseBodyInstancesInstanceAttributeInstanceSpecAttributes;
|
|
17389
|
+
instanceType?: string;
|
|
17390
|
+
internetEgressAddress?: string;
|
|
17391
|
+
regionId?: string;
|
|
17392
|
+
status?: string;
|
|
17393
|
+
supportIpv6?: boolean;
|
|
17394
|
+
userVpcId?: string;
|
|
17395
|
+
userVswitchId?: string;
|
|
17396
|
+
vipTypeList?: string;
|
|
17397
|
+
vpcEgressAddress?: string;
|
|
17398
|
+
vpcIntranetEnable?: boolean;
|
|
17399
|
+
vpcOwnerId?: number;
|
|
17400
|
+
vpcSlbIntranetEnable?: boolean;
|
|
17401
|
+
zoneId?: string;
|
|
17402
|
+
zoneLocalName?: string;
|
|
17403
|
+
static names(): { [key: string]: string } {
|
|
17404
|
+
return {
|
|
17405
|
+
aclId: 'AclId',
|
|
17406
|
+
aclName: 'AclName',
|
|
17407
|
+
aclStatus: 'AclStatus',
|
|
17408
|
+
aclType: 'AclType',
|
|
17409
|
+
classicEgressAddress: 'ClassicEgressAddress',
|
|
17410
|
+
createdTime: 'CreatedTime',
|
|
17411
|
+
egressIpv6Enable: 'EgressIpv6Enable',
|
|
17412
|
+
expiredTime: 'ExpiredTime',
|
|
17413
|
+
httpsPolicies: 'HttpsPolicies',
|
|
17414
|
+
instanceChargeType: 'InstanceChargeType',
|
|
17415
|
+
instanceId: 'InstanceId',
|
|
17416
|
+
instanceName: 'InstanceName',
|
|
17417
|
+
instanceRpsLimit: 'InstanceRpsLimit',
|
|
17418
|
+
instanceSpec: 'InstanceSpec',
|
|
17419
|
+
instanceSpecAttributes: 'InstanceSpecAttributes',
|
|
17420
|
+
instanceType: 'InstanceType',
|
|
17421
|
+
internetEgressAddress: 'InternetEgressAddress',
|
|
17422
|
+
regionId: 'RegionId',
|
|
17423
|
+
status: 'Status',
|
|
17424
|
+
supportIpv6: 'SupportIpv6',
|
|
17425
|
+
userVpcId: 'UserVpcId',
|
|
17426
|
+
userVswitchId: 'UserVswitchId',
|
|
17427
|
+
vipTypeList: 'VipTypeList',
|
|
17428
|
+
vpcEgressAddress: 'VpcEgressAddress',
|
|
17429
|
+
vpcIntranetEnable: 'VpcIntranetEnable',
|
|
17430
|
+
vpcOwnerId: 'VpcOwnerId',
|
|
17431
|
+
vpcSlbIntranetEnable: 'VpcSlbIntranetEnable',
|
|
17432
|
+
zoneId: 'ZoneId',
|
|
17433
|
+
zoneLocalName: 'ZoneLocalName',
|
|
17434
|
+
};
|
|
17435
|
+
}
|
|
17436
|
+
|
|
17437
|
+
static types(): { [key: string]: any } {
|
|
17438
|
+
return {
|
|
17439
|
+
aclId: 'string',
|
|
17440
|
+
aclName: 'string',
|
|
17441
|
+
aclStatus: 'string',
|
|
17442
|
+
aclType: 'string',
|
|
17443
|
+
classicEgressAddress: 'string',
|
|
17444
|
+
createdTime: 'string',
|
|
17445
|
+
egressIpv6Enable: 'boolean',
|
|
17446
|
+
expiredTime: 'string',
|
|
17447
|
+
httpsPolicies: 'string',
|
|
17448
|
+
instanceChargeType: 'string',
|
|
17449
|
+
instanceId: 'string',
|
|
17450
|
+
instanceName: 'string',
|
|
17451
|
+
instanceRpsLimit: 'number',
|
|
17452
|
+
instanceSpec: 'string',
|
|
17453
|
+
instanceSpecAttributes: DescribeInstancesResponseBodyInstancesInstanceAttributeInstanceSpecAttributes,
|
|
17454
|
+
instanceType: 'string',
|
|
17455
|
+
internetEgressAddress: 'string',
|
|
17456
|
+
regionId: 'string',
|
|
17457
|
+
status: 'string',
|
|
17458
|
+
supportIpv6: 'boolean',
|
|
17459
|
+
userVpcId: 'string',
|
|
17460
|
+
userVswitchId: 'string',
|
|
17461
|
+
vipTypeList: 'string',
|
|
17462
|
+
vpcEgressAddress: 'string',
|
|
17463
|
+
vpcIntranetEnable: 'boolean',
|
|
17464
|
+
vpcOwnerId: 'number',
|
|
17465
|
+
vpcSlbIntranetEnable: 'boolean',
|
|
17466
|
+
zoneId: 'string',
|
|
17467
|
+
zoneLocalName: 'string',
|
|
17468
|
+
};
|
|
17469
|
+
}
|
|
17470
|
+
|
|
17471
|
+
constructor(map?: { [key: string]: any }) {
|
|
17472
|
+
super(map);
|
|
17473
|
+
}
|
|
17474
|
+
}
|
|
17475
|
+
|
|
17476
|
+
export class DescribeInstancesResponseBodyInstances extends $tea.Model {
|
|
17477
|
+
instanceAttribute?: DescribeInstancesResponseBodyInstancesInstanceAttribute[];
|
|
17478
|
+
static names(): { [key: string]: string } {
|
|
17479
|
+
return {
|
|
17480
|
+
instanceAttribute: 'InstanceAttribute',
|
|
17481
|
+
};
|
|
17482
|
+
}
|
|
17483
|
+
|
|
17484
|
+
static types(): { [key: string]: any } {
|
|
17485
|
+
return {
|
|
17486
|
+
instanceAttribute: { 'type': 'array', 'itemType': DescribeInstancesResponseBodyInstancesInstanceAttribute },
|
|
17487
|
+
};
|
|
17488
|
+
}
|
|
17489
|
+
|
|
17490
|
+
constructor(map?: { [key: string]: any }) {
|
|
17491
|
+
super(map);
|
|
17492
|
+
}
|
|
17493
|
+
}
|
|
17494
|
+
|
|
16064
17495
|
export class DescribeIpControlPolicyItemsResponseBodyIpControlPolicyItemsIpControlPolicyItem extends $tea.Model {
|
|
16065
17496
|
appId?: string;
|
|
16066
17497
|
cidrIp?: string;
|
|
@@ -17992,6 +19423,43 @@ export default class Client extends OpenApi {
|
|
|
17992
19423
|
return await this.abolishApiWithOptions(request, runtime);
|
|
17993
19424
|
}
|
|
17994
19425
|
|
|
19426
|
+
async addAccessControlListEntryWithOptions(request: AddAccessControlListEntryRequest, runtime: $Util.RuntimeOptions): Promise<AddAccessControlListEntryResponse> {
|
|
19427
|
+
Util.validateModel(request);
|
|
19428
|
+
let query = { };
|
|
19429
|
+
if (!Util.isUnset(request.aclEntrys)) {
|
|
19430
|
+
query["AclEntrys"] = request.aclEntrys;
|
|
19431
|
+
}
|
|
19432
|
+
|
|
19433
|
+
if (!Util.isUnset(request.aclId)) {
|
|
19434
|
+
query["AclId"] = request.aclId;
|
|
19435
|
+
}
|
|
19436
|
+
|
|
19437
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
19438
|
+
query["SecurityToken"] = request.securityToken;
|
|
19439
|
+
}
|
|
19440
|
+
|
|
19441
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
19442
|
+
query: OpenApiUtil.query(query),
|
|
19443
|
+
});
|
|
19444
|
+
let params = new $OpenApi.Params({
|
|
19445
|
+
action: "AddAccessControlListEntry",
|
|
19446
|
+
version: "2016-07-14",
|
|
19447
|
+
protocol: "HTTPS",
|
|
19448
|
+
pathname: "/",
|
|
19449
|
+
method: "POST",
|
|
19450
|
+
authType: "AK",
|
|
19451
|
+
style: "RPC",
|
|
19452
|
+
reqBodyType: "formData",
|
|
19453
|
+
bodyType: "json",
|
|
19454
|
+
});
|
|
19455
|
+
return $tea.cast<AddAccessControlListEntryResponse>(await this.callApi(params, req, runtime), new AddAccessControlListEntryResponse({}));
|
|
19456
|
+
}
|
|
19457
|
+
|
|
19458
|
+
async addAccessControlListEntry(request: AddAccessControlListEntryRequest): Promise<AddAccessControlListEntryResponse> {
|
|
19459
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
19460
|
+
return await this.addAccessControlListEntryWithOptions(request, runtime);
|
|
19461
|
+
}
|
|
19462
|
+
|
|
17995
19463
|
async addIpControlPolicyItemWithOptions(request: AddIpControlPolicyItemRequest, runtime: $Util.RuntimeOptions): Promise<AddIpControlPolicyItemResponse> {
|
|
17996
19464
|
Util.validateModel(request);
|
|
17997
19465
|
let query = { };
|
|
@@ -18183,7 +19651,40 @@ export default class Client extends OpenApi {
|
|
|
18183
19651
|
query: OpenApiUtil.query(query),
|
|
18184
19652
|
});
|
|
18185
19653
|
let params = new $OpenApi.Params({
|
|
18186
|
-
action: "BatchDeployApis",
|
|
19654
|
+
action: "BatchDeployApis",
|
|
19655
|
+
version: "2016-07-14",
|
|
19656
|
+
protocol: "HTTPS",
|
|
19657
|
+
pathname: "/",
|
|
19658
|
+
method: "POST",
|
|
19659
|
+
authType: "AK",
|
|
19660
|
+
style: "RPC",
|
|
19661
|
+
reqBodyType: "formData",
|
|
19662
|
+
bodyType: "json",
|
|
19663
|
+
});
|
|
19664
|
+
return $tea.cast<BatchDeployApisResponse>(await this.callApi(params, req, runtime), new BatchDeployApisResponse({}));
|
|
19665
|
+
}
|
|
19666
|
+
|
|
19667
|
+
async batchDeployApis(request: BatchDeployApisRequest): Promise<BatchDeployApisResponse> {
|
|
19668
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
19669
|
+
return await this.batchDeployApisWithOptions(request, runtime);
|
|
19670
|
+
}
|
|
19671
|
+
|
|
19672
|
+
async createAccessControlListWithOptions(request: CreateAccessControlListRequest, runtime: $Util.RuntimeOptions): Promise<CreateAccessControlListResponse> {
|
|
19673
|
+
Util.validateModel(request);
|
|
19674
|
+
let query = { };
|
|
19675
|
+
if (!Util.isUnset(request.aclName)) {
|
|
19676
|
+
query["AclName"] = request.aclName;
|
|
19677
|
+
}
|
|
19678
|
+
|
|
19679
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
19680
|
+
query["SecurityToken"] = request.securityToken;
|
|
19681
|
+
}
|
|
19682
|
+
|
|
19683
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
19684
|
+
query: OpenApiUtil.query(query),
|
|
19685
|
+
});
|
|
19686
|
+
let params = new $OpenApi.Params({
|
|
19687
|
+
action: "CreateAccessControlList",
|
|
18187
19688
|
version: "2016-07-14",
|
|
18188
19689
|
protocol: "HTTPS",
|
|
18189
19690
|
pathname: "/",
|
|
@@ -18193,12 +19694,12 @@ export default class Client extends OpenApi {
|
|
|
18193
19694
|
reqBodyType: "formData",
|
|
18194
19695
|
bodyType: "json",
|
|
18195
19696
|
});
|
|
18196
|
-
return $tea.cast<
|
|
19697
|
+
return $tea.cast<CreateAccessControlListResponse>(await this.callApi(params, req, runtime), new CreateAccessControlListResponse({}));
|
|
18197
19698
|
}
|
|
18198
19699
|
|
|
18199
|
-
async
|
|
19700
|
+
async createAccessControlList(request: CreateAccessControlListRequest): Promise<CreateAccessControlListResponse> {
|
|
18200
19701
|
let runtime = new $Util.RuntimeOptions({ });
|
|
18201
|
-
return await this.
|
|
19702
|
+
return await this.createAccessControlListWithOptions(request, runtime);
|
|
18202
19703
|
}
|
|
18203
19704
|
|
|
18204
19705
|
async createApiWithOptions(request: CreateApiRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiResponse> {
|
|
@@ -18980,6 +20481,39 @@ export default class Client extends OpenApi {
|
|
|
18980
20481
|
return await this.createTrafficControlWithOptions(request, runtime);
|
|
18981
20482
|
}
|
|
18982
20483
|
|
|
20484
|
+
async deleteAccessControlListWithOptions(request: DeleteAccessControlListRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAccessControlListResponse> {
|
|
20485
|
+
Util.validateModel(request);
|
|
20486
|
+
let query = { };
|
|
20487
|
+
if (!Util.isUnset(request.aclId)) {
|
|
20488
|
+
query["AclId"] = request.aclId;
|
|
20489
|
+
}
|
|
20490
|
+
|
|
20491
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
20492
|
+
query["SecurityToken"] = request.securityToken;
|
|
20493
|
+
}
|
|
20494
|
+
|
|
20495
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
20496
|
+
query: OpenApiUtil.query(query),
|
|
20497
|
+
});
|
|
20498
|
+
let params = new $OpenApi.Params({
|
|
20499
|
+
action: "DeleteAccessControlList",
|
|
20500
|
+
version: "2016-07-14",
|
|
20501
|
+
protocol: "HTTPS",
|
|
20502
|
+
pathname: "/",
|
|
20503
|
+
method: "POST",
|
|
20504
|
+
authType: "AK",
|
|
20505
|
+
style: "RPC",
|
|
20506
|
+
reqBodyType: "formData",
|
|
20507
|
+
bodyType: "json",
|
|
20508
|
+
});
|
|
20509
|
+
return $tea.cast<DeleteAccessControlListResponse>(await this.callApi(params, req, runtime), new DeleteAccessControlListResponse({}));
|
|
20510
|
+
}
|
|
20511
|
+
|
|
20512
|
+
async deleteAccessControlList(request: DeleteAccessControlListRequest): Promise<DeleteAccessControlListResponse> {
|
|
20513
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
20514
|
+
return await this.deleteAccessControlListWithOptions(request, runtime);
|
|
20515
|
+
}
|
|
20516
|
+
|
|
18983
20517
|
async deleteAllTrafficSpecialControlWithOptions(request: DeleteAllTrafficSpecialControlRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAllTrafficSpecialControlResponse> {
|
|
18984
20518
|
Util.validateModel(request);
|
|
18985
20519
|
let query = { };
|
|
@@ -19708,6 +21242,80 @@ export default class Client extends OpenApi {
|
|
|
19708
21242
|
return await this.describeAbolishApiTaskWithOptions(request, runtime);
|
|
19709
21243
|
}
|
|
19710
21244
|
|
|
21245
|
+
async describeAccessControlListAttributeWithOptions(request: DescribeAccessControlListAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessControlListAttributeResponse> {
|
|
21246
|
+
Util.validateModel(request);
|
|
21247
|
+
let query = { };
|
|
21248
|
+
if (!Util.isUnset(request.aclId)) {
|
|
21249
|
+
query["AclId"] = request.aclId;
|
|
21250
|
+
}
|
|
21251
|
+
|
|
21252
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
21253
|
+
query["SecurityToken"] = request.securityToken;
|
|
21254
|
+
}
|
|
21255
|
+
|
|
21256
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
21257
|
+
query: OpenApiUtil.query(query),
|
|
21258
|
+
});
|
|
21259
|
+
let params = new $OpenApi.Params({
|
|
21260
|
+
action: "DescribeAccessControlListAttribute",
|
|
21261
|
+
version: "2016-07-14",
|
|
21262
|
+
protocol: "HTTPS",
|
|
21263
|
+
pathname: "/",
|
|
21264
|
+
method: "POST",
|
|
21265
|
+
authType: "AK",
|
|
21266
|
+
style: "RPC",
|
|
21267
|
+
reqBodyType: "formData",
|
|
21268
|
+
bodyType: "json",
|
|
21269
|
+
});
|
|
21270
|
+
return $tea.cast<DescribeAccessControlListAttributeResponse>(await this.callApi(params, req, runtime), new DescribeAccessControlListAttributeResponse({}));
|
|
21271
|
+
}
|
|
21272
|
+
|
|
21273
|
+
async describeAccessControlListAttribute(request: DescribeAccessControlListAttributeRequest): Promise<DescribeAccessControlListAttributeResponse> {
|
|
21274
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
21275
|
+
return await this.describeAccessControlListAttributeWithOptions(request, runtime);
|
|
21276
|
+
}
|
|
21277
|
+
|
|
21278
|
+
async describeAccessControlListsWithOptions(request: DescribeAccessControlListsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessControlListsResponse> {
|
|
21279
|
+
Util.validateModel(request);
|
|
21280
|
+
let query = { };
|
|
21281
|
+
if (!Util.isUnset(request.aclName)) {
|
|
21282
|
+
query["AclName"] = request.aclName;
|
|
21283
|
+
}
|
|
21284
|
+
|
|
21285
|
+
if (!Util.isUnset(request.pageNumber)) {
|
|
21286
|
+
query["PageNumber"] = request.pageNumber;
|
|
21287
|
+
}
|
|
21288
|
+
|
|
21289
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
21290
|
+
query["PageSize"] = request.pageSize;
|
|
21291
|
+
}
|
|
21292
|
+
|
|
21293
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
21294
|
+
query["SecurityToken"] = request.securityToken;
|
|
21295
|
+
}
|
|
21296
|
+
|
|
21297
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
21298
|
+
query: OpenApiUtil.query(query),
|
|
21299
|
+
});
|
|
21300
|
+
let params = new $OpenApi.Params({
|
|
21301
|
+
action: "DescribeAccessControlLists",
|
|
21302
|
+
version: "2016-07-14",
|
|
21303
|
+
protocol: "HTTPS",
|
|
21304
|
+
pathname: "/",
|
|
21305
|
+
method: "POST",
|
|
21306
|
+
authType: "AK",
|
|
21307
|
+
style: "RPC",
|
|
21308
|
+
reqBodyType: "formData",
|
|
21309
|
+
bodyType: "json",
|
|
21310
|
+
});
|
|
21311
|
+
return $tea.cast<DescribeAccessControlListsResponse>(await this.callApi(params, req, runtime), new DescribeAccessControlListsResponse({}));
|
|
21312
|
+
}
|
|
21313
|
+
|
|
21314
|
+
async describeAccessControlLists(request: DescribeAccessControlListsRequest): Promise<DescribeAccessControlListsResponse> {
|
|
21315
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
21316
|
+
return await this.describeAccessControlListsWithOptions(request, runtime);
|
|
21317
|
+
}
|
|
21318
|
+
|
|
19711
21319
|
async describeApiWithOptions(request: DescribeApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiResponse> {
|
|
19712
21320
|
Util.validateModel(request);
|
|
19713
21321
|
let query = { };
|
|
@@ -20426,6 +22034,10 @@ export default class Client extends OpenApi {
|
|
|
20426
22034
|
query["AppId"] = request.appId;
|
|
20427
22035
|
}
|
|
20428
22036
|
|
|
22037
|
+
if (!Util.isUnset(request.description)) {
|
|
22038
|
+
query["Description"] = request.description;
|
|
22039
|
+
}
|
|
22040
|
+
|
|
20429
22041
|
if (!Util.isUnset(request.method)) {
|
|
20430
22042
|
query["Method"] = request.method;
|
|
20431
22043
|
}
|
|
@@ -21221,6 +22833,51 @@ export default class Client extends OpenApi {
|
|
|
21221
22833
|
return await this.describeHistoryApisWithOptions(request, runtime);
|
|
21222
22834
|
}
|
|
21223
22835
|
|
|
22836
|
+
async describeInstancesWithOptions(request: DescribeInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstancesResponse> {
|
|
22837
|
+
Util.validateModel(request);
|
|
22838
|
+
let query = { };
|
|
22839
|
+
if (!Util.isUnset(request.enableTagAuthorization)) {
|
|
22840
|
+
query["EnableTagAuthorization"] = request.enableTagAuthorization;
|
|
22841
|
+
}
|
|
22842
|
+
|
|
22843
|
+
if (!Util.isUnset(request.instanceId)) {
|
|
22844
|
+
query["InstanceId"] = request.instanceId;
|
|
22845
|
+
}
|
|
22846
|
+
|
|
22847
|
+
if (!Util.isUnset(request.language)) {
|
|
22848
|
+
query["Language"] = request.language;
|
|
22849
|
+
}
|
|
22850
|
+
|
|
22851
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
22852
|
+
query["SecurityToken"] = request.securityToken;
|
|
22853
|
+
}
|
|
22854
|
+
|
|
22855
|
+
if (!Util.isUnset(request.tag)) {
|
|
22856
|
+
query["Tag"] = request.tag;
|
|
22857
|
+
}
|
|
22858
|
+
|
|
22859
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
22860
|
+
query: OpenApiUtil.query(query),
|
|
22861
|
+
});
|
|
22862
|
+
let params = new $OpenApi.Params({
|
|
22863
|
+
action: "DescribeInstances",
|
|
22864
|
+
version: "2016-07-14",
|
|
22865
|
+
protocol: "HTTPS",
|
|
22866
|
+
pathname: "/",
|
|
22867
|
+
method: "POST",
|
|
22868
|
+
authType: "AK",
|
|
22869
|
+
style: "RPC",
|
|
22870
|
+
reqBodyType: "formData",
|
|
22871
|
+
bodyType: "json",
|
|
22872
|
+
});
|
|
22873
|
+
return $tea.cast<DescribeInstancesResponse>(await this.callApi(params, req, runtime), new DescribeInstancesResponse({}));
|
|
22874
|
+
}
|
|
22875
|
+
|
|
22876
|
+
async describeInstances(request: DescribeInstancesRequest): Promise<DescribeInstancesResponse> {
|
|
22877
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
22878
|
+
return await this.describeInstancesWithOptions(request, runtime);
|
|
22879
|
+
}
|
|
22880
|
+
|
|
21224
22881
|
async describeIpControlPolicyItemsWithOptions(request: DescribeIpControlPolicyItemsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIpControlPolicyItemsResponse> {
|
|
21225
22882
|
Util.validateModel(request);
|
|
21226
22883
|
let query = { };
|
|
@@ -22164,6 +23821,43 @@ export default class Client extends OpenApi {
|
|
|
22164
23821
|
return await this.detachPluginWithOptions(request, runtime);
|
|
22165
23822
|
}
|
|
22166
23823
|
|
|
23824
|
+
async disableInstanceAccessControlWithOptions(request: DisableInstanceAccessControlRequest, runtime: $Util.RuntimeOptions): Promise<DisableInstanceAccessControlResponse> {
|
|
23825
|
+
Util.validateModel(request);
|
|
23826
|
+
let query = { };
|
|
23827
|
+
if (!Util.isUnset(request.aclId)) {
|
|
23828
|
+
query["AclId"] = request.aclId;
|
|
23829
|
+
}
|
|
23830
|
+
|
|
23831
|
+
if (!Util.isUnset(request.instanceId)) {
|
|
23832
|
+
query["InstanceId"] = request.instanceId;
|
|
23833
|
+
}
|
|
23834
|
+
|
|
23835
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
23836
|
+
query["SecurityToken"] = request.securityToken;
|
|
23837
|
+
}
|
|
23838
|
+
|
|
23839
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
23840
|
+
query: OpenApiUtil.query(query),
|
|
23841
|
+
});
|
|
23842
|
+
let params = new $OpenApi.Params({
|
|
23843
|
+
action: "DisableInstanceAccessControl",
|
|
23844
|
+
version: "2016-07-14",
|
|
23845
|
+
protocol: "HTTPS",
|
|
23846
|
+
pathname: "/",
|
|
23847
|
+
method: "POST",
|
|
23848
|
+
authType: "AK",
|
|
23849
|
+
style: "RPC",
|
|
23850
|
+
reqBodyType: "formData",
|
|
23851
|
+
bodyType: "json",
|
|
23852
|
+
});
|
|
23853
|
+
return $tea.cast<DisableInstanceAccessControlResponse>(await this.callApi(params, req, runtime), new DisableInstanceAccessControlResponse({}));
|
|
23854
|
+
}
|
|
23855
|
+
|
|
23856
|
+
async disableInstanceAccessControl(request: DisableInstanceAccessControlRequest): Promise<DisableInstanceAccessControlResponse> {
|
|
23857
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
23858
|
+
return await this.disableInstanceAccessControlWithOptions(request, runtime);
|
|
23859
|
+
}
|
|
23860
|
+
|
|
22167
23861
|
async dryRunSwaggerWithOptions(tmpReq: DryRunSwaggerRequest, runtime: $Util.RuntimeOptions): Promise<DryRunSwaggerResponse> {
|
|
22168
23862
|
Util.validateModel(tmpReq);
|
|
22169
23863
|
let request = new DryRunSwaggerShrinkRequest({ });
|
|
@@ -22221,6 +23915,47 @@ export default class Client extends OpenApi {
|
|
|
22221
23915
|
return await this.dryRunSwaggerWithOptions(request, runtime);
|
|
22222
23916
|
}
|
|
22223
23917
|
|
|
23918
|
+
async enableInstanceAccessControlWithOptions(request: EnableInstanceAccessControlRequest, runtime: $Util.RuntimeOptions): Promise<EnableInstanceAccessControlResponse> {
|
|
23919
|
+
Util.validateModel(request);
|
|
23920
|
+
let query = { };
|
|
23921
|
+
if (!Util.isUnset(request.aclId)) {
|
|
23922
|
+
query["AclId"] = request.aclId;
|
|
23923
|
+
}
|
|
23924
|
+
|
|
23925
|
+
if (!Util.isUnset(request.aclType)) {
|
|
23926
|
+
query["AclType"] = request.aclType;
|
|
23927
|
+
}
|
|
23928
|
+
|
|
23929
|
+
if (!Util.isUnset(request.instanceId)) {
|
|
23930
|
+
query["InstanceId"] = request.instanceId;
|
|
23931
|
+
}
|
|
23932
|
+
|
|
23933
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
23934
|
+
query["SecurityToken"] = request.securityToken;
|
|
23935
|
+
}
|
|
23936
|
+
|
|
23937
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
23938
|
+
query: OpenApiUtil.query(query),
|
|
23939
|
+
});
|
|
23940
|
+
let params = new $OpenApi.Params({
|
|
23941
|
+
action: "EnableInstanceAccessControl",
|
|
23942
|
+
version: "2016-07-14",
|
|
23943
|
+
protocol: "HTTPS",
|
|
23944
|
+
pathname: "/",
|
|
23945
|
+
method: "POST",
|
|
23946
|
+
authType: "AK",
|
|
23947
|
+
style: "RPC",
|
|
23948
|
+
reqBodyType: "formData",
|
|
23949
|
+
bodyType: "json",
|
|
23950
|
+
});
|
|
23951
|
+
return $tea.cast<EnableInstanceAccessControlResponse>(await this.callApi(params, req, runtime), new EnableInstanceAccessControlResponse({}));
|
|
23952
|
+
}
|
|
23953
|
+
|
|
23954
|
+
async enableInstanceAccessControl(request: EnableInstanceAccessControlRequest): Promise<EnableInstanceAccessControlResponse> {
|
|
23955
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
23956
|
+
return await this.enableInstanceAccessControlWithOptions(request, runtime);
|
|
23957
|
+
}
|
|
23958
|
+
|
|
22224
23959
|
async importSwaggerWithOptions(tmpReq: ImportSwaggerRequest, runtime: $Util.RuntimeOptions): Promise<ImportSwaggerResponse> {
|
|
22225
23960
|
Util.validateModel(tmpReq);
|
|
22226
23961
|
let request = new ImportSwaggerShrinkRequest({ });
|
|
@@ -23308,6 +25043,43 @@ export default class Client extends OpenApi {
|
|
|
23308
25043
|
return await this.reactivateDomainWithOptions(request, runtime);
|
|
23309
25044
|
}
|
|
23310
25045
|
|
|
25046
|
+
async removeAccessControlListEntryWithOptions(request: RemoveAccessControlListEntryRequest, runtime: $Util.RuntimeOptions): Promise<RemoveAccessControlListEntryResponse> {
|
|
25047
|
+
Util.validateModel(request);
|
|
25048
|
+
let query = { };
|
|
25049
|
+
if (!Util.isUnset(request.aclEntrys)) {
|
|
25050
|
+
query["AclEntrys"] = request.aclEntrys;
|
|
25051
|
+
}
|
|
25052
|
+
|
|
25053
|
+
if (!Util.isUnset(request.aclId)) {
|
|
25054
|
+
query["AclId"] = request.aclId;
|
|
25055
|
+
}
|
|
25056
|
+
|
|
25057
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
25058
|
+
query["SecurityToken"] = request.securityToken;
|
|
25059
|
+
}
|
|
25060
|
+
|
|
25061
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
25062
|
+
query: OpenApiUtil.query(query),
|
|
25063
|
+
});
|
|
25064
|
+
let params = new $OpenApi.Params({
|
|
25065
|
+
action: "RemoveAccessControlListEntry",
|
|
25066
|
+
version: "2016-07-14",
|
|
25067
|
+
protocol: "HTTPS",
|
|
25068
|
+
pathname: "/",
|
|
25069
|
+
method: "POST",
|
|
25070
|
+
authType: "AK",
|
|
25071
|
+
style: "RPC",
|
|
25072
|
+
reqBodyType: "formData",
|
|
25073
|
+
bodyType: "json",
|
|
25074
|
+
});
|
|
25075
|
+
return $tea.cast<RemoveAccessControlListEntryResponse>(await this.callApi(params, req, runtime), new RemoveAccessControlListEntryResponse({}));
|
|
25076
|
+
}
|
|
25077
|
+
|
|
25078
|
+
async removeAccessControlListEntry(request: RemoveAccessControlListEntryRequest): Promise<RemoveAccessControlListEntryResponse> {
|
|
25079
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
25080
|
+
return await this.removeAccessControlListEntryWithOptions(request, runtime);
|
|
25081
|
+
}
|
|
25082
|
+
|
|
23311
25083
|
async removeApisAuthoritiesWithOptions(request: RemoveApisAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<RemoveApisAuthoritiesResponse> {
|
|
23312
25084
|
Util.validateModel(request);
|
|
23313
25085
|
let query = { };
|
|
@@ -23767,6 +25539,43 @@ export default class Client extends OpenApi {
|
|
|
23767
25539
|
return await this.sdkGenerateByAppWithOptions(request, runtime);
|
|
23768
25540
|
}
|
|
23769
25541
|
|
|
25542
|
+
async sdkGenerateByAppForRegionWithOptions(request: SdkGenerateByAppForRegionRequest, runtime: $Util.RuntimeOptions): Promise<SdkGenerateByAppForRegionResponse> {
|
|
25543
|
+
Util.validateModel(request);
|
|
25544
|
+
let query = { };
|
|
25545
|
+
if (!Util.isUnset(request.appId)) {
|
|
25546
|
+
query["AppId"] = request.appId;
|
|
25547
|
+
}
|
|
25548
|
+
|
|
25549
|
+
if (!Util.isUnset(request.language)) {
|
|
25550
|
+
query["Language"] = request.language;
|
|
25551
|
+
}
|
|
25552
|
+
|
|
25553
|
+
if (!Util.isUnset(request.securityToken)) {
|
|
25554
|
+
query["SecurityToken"] = request.securityToken;
|
|
25555
|
+
}
|
|
25556
|
+
|
|
25557
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
25558
|
+
query: OpenApiUtil.query(query),
|
|
25559
|
+
});
|
|
25560
|
+
let params = new $OpenApi.Params({
|
|
25561
|
+
action: "SdkGenerateByAppForRegion",
|
|
25562
|
+
version: "2016-07-14",
|
|
25563
|
+
protocol: "HTTPS",
|
|
25564
|
+
pathname: "/",
|
|
25565
|
+
method: "POST",
|
|
25566
|
+
authType: "AK",
|
|
25567
|
+
style: "RPC",
|
|
25568
|
+
reqBodyType: "formData",
|
|
25569
|
+
bodyType: "json",
|
|
25570
|
+
});
|
|
25571
|
+
return $tea.cast<SdkGenerateByAppForRegionResponse>(await this.callApi(params, req, runtime), new SdkGenerateByAppForRegionResponse({}));
|
|
25572
|
+
}
|
|
25573
|
+
|
|
25574
|
+
async sdkGenerateByAppForRegion(request: SdkGenerateByAppForRegionRequest): Promise<SdkGenerateByAppForRegionResponse> {
|
|
25575
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
25576
|
+
return await this.sdkGenerateByAppForRegionWithOptions(request, runtime);
|
|
25577
|
+
}
|
|
25578
|
+
|
|
23770
25579
|
async sdkGenerateByGroupWithOptions(request: SdkGenerateByGroupRequest, runtime: $Util.RuntimeOptions): Promise<SdkGenerateByGroupResponse> {
|
|
23771
25580
|
Util.validateModel(request);
|
|
23772
25581
|
let query = { };
|
|
@@ -23986,6 +25795,10 @@ export default class Client extends OpenApi {
|
|
|
23986
25795
|
query["SecurityToken"] = request.securityToken;
|
|
23987
25796
|
}
|
|
23988
25797
|
|
|
25798
|
+
if (!Util.isUnset(request.sslVerifyDepth)) {
|
|
25799
|
+
query["SslVerifyDepth"] = request.sslVerifyDepth;
|
|
25800
|
+
}
|
|
25801
|
+
|
|
23989
25802
|
let req = new $OpenApi.OpenApiRequest({
|
|
23990
25803
|
query: OpenApiUtil.query(query),
|
|
23991
25804
|
});
|