@alicloud/ga20191120 1.0.14 → 1.0.16
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 +1061 -48
- package/dist/client.js +2195 -135
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +2920 -341
package/src/client.ts
CHANGED
|
@@ -1121,44 +1121,26 @@ export class CreateBandwidthPackageResponse extends $tea.Model {
|
|
|
1121
1121
|
}
|
|
1122
1122
|
}
|
|
1123
1123
|
|
|
1124
|
-
export class
|
|
1125
|
-
|
|
1126
|
-
autoRenew?: boolean;
|
|
1127
|
-
autoRenewDuration?: number;
|
|
1128
|
-
autoUseCoupon?: string;
|
|
1129
|
-
bandwidthBillingType?: string;
|
|
1124
|
+
export class CreateBasicAccelerateIpRequest extends $tea.Model {
|
|
1125
|
+
acceleratorId?: string;
|
|
1130
1126
|
clientToken?: string;
|
|
1131
|
-
|
|
1132
|
-
pricingCycle?: string;
|
|
1127
|
+
ipSetId?: string;
|
|
1133
1128
|
regionId?: string;
|
|
1134
|
-
resourceGroupId?: string;
|
|
1135
1129
|
static names(): { [key: string]: string } {
|
|
1136
1130
|
return {
|
|
1137
|
-
|
|
1138
|
-
autoRenew: 'AutoRenew',
|
|
1139
|
-
autoRenewDuration: 'AutoRenewDuration',
|
|
1140
|
-
autoUseCoupon: 'AutoUseCoupon',
|
|
1141
|
-
bandwidthBillingType: 'BandwidthBillingType',
|
|
1131
|
+
acceleratorId: 'AcceleratorId',
|
|
1142
1132
|
clientToken: 'ClientToken',
|
|
1143
|
-
|
|
1144
|
-
pricingCycle: 'PricingCycle',
|
|
1133
|
+
ipSetId: 'IpSetId',
|
|
1145
1134
|
regionId: 'RegionId',
|
|
1146
|
-
resourceGroupId: 'ResourceGroupId',
|
|
1147
1135
|
};
|
|
1148
1136
|
}
|
|
1149
1137
|
|
|
1150
1138
|
static types(): { [key: string]: any } {
|
|
1151
1139
|
return {
|
|
1152
|
-
|
|
1153
|
-
autoRenew: 'boolean',
|
|
1154
|
-
autoRenewDuration: 'number',
|
|
1155
|
-
autoUseCoupon: 'string',
|
|
1156
|
-
bandwidthBillingType: 'string',
|
|
1140
|
+
acceleratorId: 'string',
|
|
1157
1141
|
clientToken: 'string',
|
|
1158
|
-
|
|
1159
|
-
pricingCycle: 'string',
|
|
1142
|
+
ipSetId: 'string',
|
|
1160
1143
|
regionId: 'string',
|
|
1161
|
-
resourceGroupId: 'string',
|
|
1162
1144
|
};
|
|
1163
1145
|
}
|
|
1164
1146
|
|
|
@@ -1167,23 +1149,32 @@ export class CreateBasicAcceleratorRequest extends $tea.Model {
|
|
|
1167
1149
|
}
|
|
1168
1150
|
}
|
|
1169
1151
|
|
|
1170
|
-
export class
|
|
1152
|
+
export class CreateBasicAccelerateIpResponseBody extends $tea.Model {
|
|
1153
|
+
accelerateIpAddress?: string;
|
|
1154
|
+
accelerateIpId?: string;
|
|
1171
1155
|
acceleratorId?: string;
|
|
1172
|
-
|
|
1156
|
+
ipSetId?: string;
|
|
1173
1157
|
requestId?: string;
|
|
1158
|
+
state?: string;
|
|
1174
1159
|
static names(): { [key: string]: string } {
|
|
1175
1160
|
return {
|
|
1161
|
+
accelerateIpAddress: 'AccelerateIpAddress',
|
|
1162
|
+
accelerateIpId: 'AccelerateIpId',
|
|
1176
1163
|
acceleratorId: 'AcceleratorId',
|
|
1177
|
-
|
|
1164
|
+
ipSetId: 'IpSetId',
|
|
1178
1165
|
requestId: 'RequestId',
|
|
1166
|
+
state: 'State',
|
|
1179
1167
|
};
|
|
1180
1168
|
}
|
|
1181
1169
|
|
|
1182
1170
|
static types(): { [key: string]: any } {
|
|
1183
1171
|
return {
|
|
1172
|
+
accelerateIpAddress: 'string',
|
|
1173
|
+
accelerateIpId: 'string',
|
|
1184
1174
|
acceleratorId: 'string',
|
|
1185
|
-
|
|
1175
|
+
ipSetId: 'string',
|
|
1186
1176
|
requestId: 'string',
|
|
1177
|
+
state: 'string',
|
|
1187
1178
|
};
|
|
1188
1179
|
}
|
|
1189
1180
|
|
|
@@ -1192,10 +1183,10 @@ export class CreateBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
1192
1183
|
}
|
|
1193
1184
|
}
|
|
1194
1185
|
|
|
1195
|
-
export class
|
|
1186
|
+
export class CreateBasicAccelerateIpResponse extends $tea.Model {
|
|
1196
1187
|
headers: { [key: string]: string };
|
|
1197
1188
|
statusCode: number;
|
|
1198
|
-
body:
|
|
1189
|
+
body: CreateBasicAccelerateIpResponseBody;
|
|
1199
1190
|
static names(): { [key: string]: string } {
|
|
1200
1191
|
return {
|
|
1201
1192
|
headers: 'headers',
|
|
@@ -1208,7 +1199,7 @@ export class CreateBasicAcceleratorResponse extends $tea.Model {
|
|
|
1208
1199
|
return {
|
|
1209
1200
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1210
1201
|
statusCode: 'number',
|
|
1211
|
-
body:
|
|
1202
|
+
body: CreateBasicAccelerateIpResponseBody,
|
|
1212
1203
|
};
|
|
1213
1204
|
}
|
|
1214
1205
|
|
|
@@ -1217,40 +1208,28 @@ export class CreateBasicAcceleratorResponse extends $tea.Model {
|
|
|
1217
1208
|
}
|
|
1218
1209
|
}
|
|
1219
1210
|
|
|
1220
|
-
export class
|
|
1211
|
+
export class CreateBasicAccelerateIpEndpointRelationRequest extends $tea.Model {
|
|
1212
|
+
accelerateIpId?: string;
|
|
1221
1213
|
acceleratorId?: string;
|
|
1222
1214
|
clientToken?: string;
|
|
1223
|
-
|
|
1224
|
-
endpointAddress?: string;
|
|
1225
|
-
endpointGroupRegion?: string;
|
|
1226
|
-
endpointSubAddress?: string;
|
|
1227
|
-
endpointType?: string;
|
|
1228
|
-
name?: string;
|
|
1215
|
+
endpointId?: string;
|
|
1229
1216
|
regionId?: string;
|
|
1230
1217
|
static names(): { [key: string]: string } {
|
|
1231
1218
|
return {
|
|
1219
|
+
accelerateIpId: 'AccelerateIpId',
|
|
1232
1220
|
acceleratorId: 'AcceleratorId',
|
|
1233
1221
|
clientToken: 'ClientToken',
|
|
1234
|
-
|
|
1235
|
-
endpointAddress: 'EndpointAddress',
|
|
1236
|
-
endpointGroupRegion: 'EndpointGroupRegion',
|
|
1237
|
-
endpointSubAddress: 'EndpointSubAddress',
|
|
1238
|
-
endpointType: 'EndpointType',
|
|
1239
|
-
name: 'Name',
|
|
1222
|
+
endpointId: 'EndpointId',
|
|
1240
1223
|
regionId: 'RegionId',
|
|
1241
1224
|
};
|
|
1242
1225
|
}
|
|
1243
1226
|
|
|
1244
1227
|
static types(): { [key: string]: any } {
|
|
1245
1228
|
return {
|
|
1229
|
+
accelerateIpId: 'string',
|
|
1246
1230
|
acceleratorId: 'string',
|
|
1247
1231
|
clientToken: 'string',
|
|
1248
|
-
|
|
1249
|
-
endpointAddress: 'string',
|
|
1250
|
-
endpointGroupRegion: 'string',
|
|
1251
|
-
endpointSubAddress: 'string',
|
|
1252
|
-
endpointType: 'string',
|
|
1253
|
-
name: 'string',
|
|
1232
|
+
endpointId: 'string',
|
|
1254
1233
|
regionId: 'string',
|
|
1255
1234
|
};
|
|
1256
1235
|
}
|
|
@@ -1260,20 +1239,29 @@ export class CreateBasicEndpointGroupRequest extends $tea.Model {
|
|
|
1260
1239
|
}
|
|
1261
1240
|
}
|
|
1262
1241
|
|
|
1263
|
-
export class
|
|
1264
|
-
|
|
1242
|
+
export class CreateBasicAccelerateIpEndpointRelationResponseBody extends $tea.Model {
|
|
1243
|
+
accelerateIpId?: string;
|
|
1244
|
+
acceleratorId?: string;
|
|
1245
|
+
endpointId?: string;
|
|
1265
1246
|
requestId?: string;
|
|
1247
|
+
state?: string;
|
|
1266
1248
|
static names(): { [key: string]: string } {
|
|
1267
1249
|
return {
|
|
1268
|
-
|
|
1250
|
+
accelerateIpId: 'AccelerateIpId',
|
|
1251
|
+
acceleratorId: 'AcceleratorId',
|
|
1252
|
+
endpointId: 'EndpointId',
|
|
1269
1253
|
requestId: 'RequestId',
|
|
1254
|
+
state: 'State',
|
|
1270
1255
|
};
|
|
1271
1256
|
}
|
|
1272
1257
|
|
|
1273
1258
|
static types(): { [key: string]: any } {
|
|
1274
1259
|
return {
|
|
1275
|
-
|
|
1260
|
+
accelerateIpId: 'string',
|
|
1261
|
+
acceleratorId: 'string',
|
|
1262
|
+
endpointId: 'string',
|
|
1276
1263
|
requestId: 'string',
|
|
1264
|
+
state: 'string',
|
|
1277
1265
|
};
|
|
1278
1266
|
}
|
|
1279
1267
|
|
|
@@ -1282,10 +1270,10 @@ export class CreateBasicEndpointGroupResponseBody extends $tea.Model {
|
|
|
1282
1270
|
}
|
|
1283
1271
|
}
|
|
1284
1272
|
|
|
1285
|
-
export class
|
|
1273
|
+
export class CreateBasicAccelerateIpEndpointRelationResponse extends $tea.Model {
|
|
1286
1274
|
headers: { [key: string]: string };
|
|
1287
1275
|
statusCode: number;
|
|
1288
|
-
body:
|
|
1276
|
+
body: CreateBasicAccelerateIpEndpointRelationResponseBody;
|
|
1289
1277
|
static names(): { [key: string]: string } {
|
|
1290
1278
|
return {
|
|
1291
1279
|
headers: 'headers',
|
|
@@ -1298,7 +1286,7 @@ export class CreateBasicEndpointGroupResponse extends $tea.Model {
|
|
|
1298
1286
|
return {
|
|
1299
1287
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1300
1288
|
statusCode: 'number',
|
|
1301
|
-
body:
|
|
1289
|
+
body: CreateBasicAccelerateIpEndpointRelationResponseBody,
|
|
1302
1290
|
};
|
|
1303
1291
|
}
|
|
1304
1292
|
|
|
@@ -1307,31 +1295,25 @@ export class CreateBasicEndpointGroupResponse extends $tea.Model {
|
|
|
1307
1295
|
}
|
|
1308
1296
|
}
|
|
1309
1297
|
|
|
1310
|
-
export class
|
|
1311
|
-
|
|
1298
|
+
export class CreateBasicAccelerateIpEndpointRelationsRequest extends $tea.Model {
|
|
1299
|
+
accelerateIpEndpointRelations?: CreateBasicAccelerateIpEndpointRelationsRequestAccelerateIpEndpointRelations[];
|
|
1312
1300
|
acceleratorId?: string;
|
|
1313
|
-
bandwidth?: number;
|
|
1314
1301
|
clientToken?: string;
|
|
1315
|
-
ispType?: string;
|
|
1316
1302
|
regionId?: string;
|
|
1317
1303
|
static names(): { [key: string]: string } {
|
|
1318
1304
|
return {
|
|
1319
|
-
|
|
1305
|
+
accelerateIpEndpointRelations: 'AccelerateIpEndpointRelations',
|
|
1320
1306
|
acceleratorId: 'AcceleratorId',
|
|
1321
|
-
bandwidth: 'Bandwidth',
|
|
1322
1307
|
clientToken: 'ClientToken',
|
|
1323
|
-
ispType: 'IspType',
|
|
1324
1308
|
regionId: 'RegionId',
|
|
1325
1309
|
};
|
|
1326
1310
|
}
|
|
1327
1311
|
|
|
1328
1312
|
static types(): { [key: string]: any } {
|
|
1329
1313
|
return {
|
|
1330
|
-
|
|
1314
|
+
accelerateIpEndpointRelations: { 'type': 'array', 'itemType': CreateBasicAccelerateIpEndpointRelationsRequestAccelerateIpEndpointRelations },
|
|
1331
1315
|
acceleratorId: 'string',
|
|
1332
|
-
bandwidth: 'number',
|
|
1333
1316
|
clientToken: 'string',
|
|
1334
|
-
ispType: 'string',
|
|
1335
1317
|
regionId: 'string',
|
|
1336
1318
|
};
|
|
1337
1319
|
}
|
|
@@ -1341,19 +1323,19 @@ export class CreateBasicIpSetRequest extends $tea.Model {
|
|
|
1341
1323
|
}
|
|
1342
1324
|
}
|
|
1343
1325
|
|
|
1344
|
-
export class
|
|
1345
|
-
|
|
1326
|
+
export class CreateBasicAccelerateIpEndpointRelationsResponseBody extends $tea.Model {
|
|
1327
|
+
acceleratorId?: string;
|
|
1346
1328
|
requestId?: string;
|
|
1347
1329
|
static names(): { [key: string]: string } {
|
|
1348
1330
|
return {
|
|
1349
|
-
|
|
1331
|
+
acceleratorId: 'AcceleratorId',
|
|
1350
1332
|
requestId: 'RequestId',
|
|
1351
1333
|
};
|
|
1352
1334
|
}
|
|
1353
1335
|
|
|
1354
1336
|
static types(): { [key: string]: any } {
|
|
1355
1337
|
return {
|
|
1356
|
-
|
|
1338
|
+
acceleratorId: 'string',
|
|
1357
1339
|
requestId: 'string',
|
|
1358
1340
|
};
|
|
1359
1341
|
}
|
|
@@ -1363,10 +1345,10 @@ export class CreateBasicIpSetResponseBody extends $tea.Model {
|
|
|
1363
1345
|
}
|
|
1364
1346
|
}
|
|
1365
1347
|
|
|
1366
|
-
export class
|
|
1348
|
+
export class CreateBasicAccelerateIpEndpointRelationsResponse extends $tea.Model {
|
|
1367
1349
|
headers: { [key: string]: string };
|
|
1368
1350
|
statusCode: number;
|
|
1369
|
-
body:
|
|
1351
|
+
body: CreateBasicAccelerateIpEndpointRelationsResponseBody;
|
|
1370
1352
|
static names(): { [key: string]: string } {
|
|
1371
1353
|
return {
|
|
1372
1354
|
headers: 'headers',
|
|
@@ -1379,7 +1361,7 @@ export class CreateBasicIpSetResponse extends $tea.Model {
|
|
|
1379
1361
|
return {
|
|
1380
1362
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1381
1363
|
statusCode: 'number',
|
|
1382
|
-
body:
|
|
1364
|
+
body: CreateBasicAccelerateIpEndpointRelationsResponseBody,
|
|
1383
1365
|
};
|
|
1384
1366
|
}
|
|
1385
1367
|
|
|
@@ -1388,29 +1370,44 @@ export class CreateBasicIpSetResponse extends $tea.Model {
|
|
|
1388
1370
|
}
|
|
1389
1371
|
}
|
|
1390
1372
|
|
|
1391
|
-
export class
|
|
1373
|
+
export class CreateBasicAcceleratorRequest extends $tea.Model {
|
|
1374
|
+
autoPay?: boolean;
|
|
1375
|
+
autoRenew?: boolean;
|
|
1376
|
+
autoRenewDuration?: number;
|
|
1377
|
+
autoUseCoupon?: string;
|
|
1378
|
+
bandwidthBillingType?: string;
|
|
1392
1379
|
clientToken?: string;
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
endpointGroupId?: string;
|
|
1380
|
+
duration?: number;
|
|
1381
|
+
pricingCycle?: string;
|
|
1396
1382
|
regionId?: string;
|
|
1383
|
+
resourceGroupId?: string;
|
|
1397
1384
|
static names(): { [key: string]: string } {
|
|
1398
1385
|
return {
|
|
1386
|
+
autoPay: 'AutoPay',
|
|
1387
|
+
autoRenew: 'AutoRenew',
|
|
1388
|
+
autoRenewDuration: 'AutoRenewDuration',
|
|
1389
|
+
autoUseCoupon: 'AutoUseCoupon',
|
|
1390
|
+
bandwidthBillingType: 'BandwidthBillingType',
|
|
1399
1391
|
clientToken: 'ClientToken',
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
endpointGroupId: 'EndpointGroupId',
|
|
1392
|
+
duration: 'Duration',
|
|
1393
|
+
pricingCycle: 'PricingCycle',
|
|
1403
1394
|
regionId: 'RegionId',
|
|
1395
|
+
resourceGroupId: 'ResourceGroupId',
|
|
1404
1396
|
};
|
|
1405
1397
|
}
|
|
1406
1398
|
|
|
1407
1399
|
static types(): { [key: string]: any } {
|
|
1408
1400
|
return {
|
|
1401
|
+
autoPay: 'boolean',
|
|
1402
|
+
autoRenew: 'boolean',
|
|
1403
|
+
autoRenewDuration: 'number',
|
|
1404
|
+
autoUseCoupon: 'string',
|
|
1405
|
+
bandwidthBillingType: 'string',
|
|
1409
1406
|
clientToken: 'string',
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
endpointGroupId: 'string',
|
|
1407
|
+
duration: 'number',
|
|
1408
|
+
pricingCycle: 'string',
|
|
1413
1409
|
regionId: 'string',
|
|
1410
|
+
resourceGroupId: 'string',
|
|
1414
1411
|
};
|
|
1415
1412
|
}
|
|
1416
1413
|
|
|
@@ -1419,19 +1416,22 @@ export class CreateCustomRoutingEndpointGroupDestinationsRequest extends $tea.Mo
|
|
|
1419
1416
|
}
|
|
1420
1417
|
}
|
|
1421
1418
|
|
|
1422
|
-
export class
|
|
1423
|
-
|
|
1419
|
+
export class CreateBasicAcceleratorResponseBody extends $tea.Model {
|
|
1420
|
+
acceleratorId?: string;
|
|
1421
|
+
orderId?: string;
|
|
1424
1422
|
requestId?: string;
|
|
1425
1423
|
static names(): { [key: string]: string } {
|
|
1426
1424
|
return {
|
|
1427
|
-
|
|
1425
|
+
acceleratorId: 'AcceleratorId',
|
|
1426
|
+
orderId: 'OrderId',
|
|
1428
1427
|
requestId: 'RequestId',
|
|
1429
1428
|
};
|
|
1430
1429
|
}
|
|
1431
1430
|
|
|
1432
1431
|
static types(): { [key: string]: any } {
|
|
1433
1432
|
return {
|
|
1434
|
-
|
|
1433
|
+
acceleratorId: 'string',
|
|
1434
|
+
orderId: 'string',
|
|
1435
1435
|
requestId: 'string',
|
|
1436
1436
|
};
|
|
1437
1437
|
}
|
|
@@ -1441,10 +1441,10 @@ export class CreateCustomRoutingEndpointGroupDestinationsResponseBody extends $t
|
|
|
1441
1441
|
}
|
|
1442
1442
|
}
|
|
1443
1443
|
|
|
1444
|
-
export class
|
|
1444
|
+
export class CreateBasicAcceleratorResponse extends $tea.Model {
|
|
1445
1445
|
headers: { [key: string]: string };
|
|
1446
1446
|
statusCode: number;
|
|
1447
|
-
body:
|
|
1447
|
+
body: CreateBasicAcceleratorResponseBody;
|
|
1448
1448
|
static names(): { [key: string]: string } {
|
|
1449
1449
|
return {
|
|
1450
1450
|
headers: 'headers',
|
|
@@ -1457,7 +1457,7 @@ export class CreateCustomRoutingEndpointGroupDestinationsResponse extends $tea.M
|
|
|
1457
1457
|
return {
|
|
1458
1458
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1459
1459
|
statusCode: 'number',
|
|
1460
|
-
body:
|
|
1460
|
+
body: CreateBasicAcceleratorResponseBody,
|
|
1461
1461
|
};
|
|
1462
1462
|
}
|
|
1463
1463
|
|
|
@@ -1466,20 +1466,28 @@ export class CreateCustomRoutingEndpointGroupDestinationsResponse extends $tea.M
|
|
|
1466
1466
|
}
|
|
1467
1467
|
}
|
|
1468
1468
|
|
|
1469
|
-
export class
|
|
1469
|
+
export class CreateBasicEndpointRequest extends $tea.Model {
|
|
1470
1470
|
acceleratorId?: string;
|
|
1471
1471
|
clientToken?: string;
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1472
|
+
endpointAddress?: string;
|
|
1473
|
+
endpointGroupId?: string;
|
|
1474
|
+
endpointSubAddress?: string;
|
|
1475
|
+
endpointSubAddressType?: string;
|
|
1476
|
+
endpointType?: string;
|
|
1477
|
+
endpointZoneId?: string;
|
|
1478
|
+
name?: string;
|
|
1475
1479
|
regionId?: string;
|
|
1476
1480
|
static names(): { [key: string]: string } {
|
|
1477
1481
|
return {
|
|
1478
1482
|
acceleratorId: 'AcceleratorId',
|
|
1479
1483
|
clientToken: 'ClientToken',
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1484
|
+
endpointAddress: 'EndpointAddress',
|
|
1485
|
+
endpointGroupId: 'EndpointGroupId',
|
|
1486
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
1487
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
1488
|
+
endpointType: 'EndpointType',
|
|
1489
|
+
endpointZoneId: 'EndpointZoneId',
|
|
1490
|
+
name: 'Name',
|
|
1483
1491
|
regionId: 'RegionId',
|
|
1484
1492
|
};
|
|
1485
1493
|
}
|
|
@@ -1488,9 +1496,13 @@ export class CreateCustomRoutingEndpointGroupsRequest extends $tea.Model {
|
|
|
1488
1496
|
return {
|
|
1489
1497
|
acceleratorId: 'string',
|
|
1490
1498
|
clientToken: 'string',
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1499
|
+
endpointAddress: 'string',
|
|
1500
|
+
endpointGroupId: 'string',
|
|
1501
|
+
endpointSubAddress: 'string',
|
|
1502
|
+
endpointSubAddressType: 'string',
|
|
1503
|
+
endpointType: 'string',
|
|
1504
|
+
endpointZoneId: 'string',
|
|
1505
|
+
name: 'string',
|
|
1494
1506
|
regionId: 'string',
|
|
1495
1507
|
};
|
|
1496
1508
|
}
|
|
@@ -1500,19 +1512,22 @@ export class CreateCustomRoutingEndpointGroupsRequest extends $tea.Model {
|
|
|
1500
1512
|
}
|
|
1501
1513
|
}
|
|
1502
1514
|
|
|
1503
|
-
export class
|
|
1504
|
-
|
|
1515
|
+
export class CreateBasicEndpointResponseBody extends $tea.Model {
|
|
1516
|
+
endpointGroupId?: string;
|
|
1517
|
+
endpointId?: string;
|
|
1505
1518
|
requestId?: string;
|
|
1506
1519
|
static names(): { [key: string]: string } {
|
|
1507
1520
|
return {
|
|
1508
|
-
|
|
1521
|
+
endpointGroupId: 'EndpointGroupId',
|
|
1522
|
+
endpointId: 'EndpointId',
|
|
1509
1523
|
requestId: 'RequestId',
|
|
1510
1524
|
};
|
|
1511
1525
|
}
|
|
1512
1526
|
|
|
1513
1527
|
static types(): { [key: string]: any } {
|
|
1514
1528
|
return {
|
|
1515
|
-
|
|
1529
|
+
endpointGroupId: 'string',
|
|
1530
|
+
endpointId: 'string',
|
|
1516
1531
|
requestId: 'string',
|
|
1517
1532
|
};
|
|
1518
1533
|
}
|
|
@@ -1522,10 +1537,10 @@ export class CreateCustomRoutingEndpointGroupsResponseBody extends $tea.Model {
|
|
|
1522
1537
|
}
|
|
1523
1538
|
}
|
|
1524
1539
|
|
|
1525
|
-
export class
|
|
1540
|
+
export class CreateBasicEndpointResponse extends $tea.Model {
|
|
1526
1541
|
headers: { [key: string]: string };
|
|
1527
1542
|
statusCode: number;
|
|
1528
|
-
body:
|
|
1543
|
+
body: CreateBasicEndpointResponseBody;
|
|
1529
1544
|
static names(): { [key: string]: string } {
|
|
1530
1545
|
return {
|
|
1531
1546
|
headers: 'headers',
|
|
@@ -1538,7 +1553,7 @@ export class CreateCustomRoutingEndpointGroupsResponse extends $tea.Model {
|
|
|
1538
1553
|
return {
|
|
1539
1554
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1540
1555
|
statusCode: 'number',
|
|
1541
|
-
body:
|
|
1556
|
+
body: CreateBasicEndpointResponseBody,
|
|
1542
1557
|
};
|
|
1543
1558
|
}
|
|
1544
1559
|
|
|
@@ -1547,25 +1562,40 @@ export class CreateCustomRoutingEndpointGroupsResponse extends $tea.Model {
|
|
|
1547
1562
|
}
|
|
1548
1563
|
}
|
|
1549
1564
|
|
|
1550
|
-
export class
|
|
1565
|
+
export class CreateBasicEndpointGroupRequest extends $tea.Model {
|
|
1566
|
+
acceleratorId?: string;
|
|
1551
1567
|
clientToken?: string;
|
|
1552
|
-
|
|
1553
|
-
|
|
1568
|
+
description?: string;
|
|
1569
|
+
endpointAddress?: string;
|
|
1570
|
+
endpointGroupRegion?: string;
|
|
1571
|
+
endpointSubAddress?: string;
|
|
1572
|
+
endpointType?: string;
|
|
1573
|
+
name?: string;
|
|
1554
1574
|
regionId?: string;
|
|
1555
1575
|
static names(): { [key: string]: string } {
|
|
1556
1576
|
return {
|
|
1577
|
+
acceleratorId: 'AcceleratorId',
|
|
1557
1578
|
clientToken: 'ClientToken',
|
|
1558
|
-
|
|
1559
|
-
|
|
1579
|
+
description: 'Description',
|
|
1580
|
+
endpointAddress: 'EndpointAddress',
|
|
1581
|
+
endpointGroupRegion: 'EndpointGroupRegion',
|
|
1582
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
1583
|
+
endpointType: 'EndpointType',
|
|
1584
|
+
name: 'Name',
|
|
1560
1585
|
regionId: 'RegionId',
|
|
1561
1586
|
};
|
|
1562
1587
|
}
|
|
1563
1588
|
|
|
1564
1589
|
static types(): { [key: string]: any } {
|
|
1565
1590
|
return {
|
|
1591
|
+
acceleratorId: 'string',
|
|
1566
1592
|
clientToken: 'string',
|
|
1567
|
-
|
|
1568
|
-
|
|
1593
|
+
description: 'string',
|
|
1594
|
+
endpointAddress: 'string',
|
|
1595
|
+
endpointGroupRegion: 'string',
|
|
1596
|
+
endpointSubAddress: 'string',
|
|
1597
|
+
endpointType: 'string',
|
|
1598
|
+
name: 'string',
|
|
1569
1599
|
regionId: 'string',
|
|
1570
1600
|
};
|
|
1571
1601
|
}
|
|
@@ -1575,19 +1605,19 @@ export class CreateCustomRoutingEndpointTrafficPoliciesRequest extends $tea.Mode
|
|
|
1575
1605
|
}
|
|
1576
1606
|
}
|
|
1577
1607
|
|
|
1578
|
-
export class
|
|
1579
|
-
|
|
1608
|
+
export class CreateBasicEndpointGroupResponseBody extends $tea.Model {
|
|
1609
|
+
endpointGroupId?: string;
|
|
1580
1610
|
requestId?: string;
|
|
1581
1611
|
static names(): { [key: string]: string } {
|
|
1582
1612
|
return {
|
|
1583
|
-
|
|
1613
|
+
endpointGroupId: 'EndpointGroupId',
|
|
1584
1614
|
requestId: 'RequestId',
|
|
1585
1615
|
};
|
|
1586
1616
|
}
|
|
1587
1617
|
|
|
1588
1618
|
static types(): { [key: string]: any } {
|
|
1589
1619
|
return {
|
|
1590
|
-
|
|
1620
|
+
endpointGroupId: 'string',
|
|
1591
1621
|
requestId: 'string',
|
|
1592
1622
|
};
|
|
1593
1623
|
}
|
|
@@ -1597,10 +1627,10 @@ export class CreateCustomRoutingEndpointTrafficPoliciesResponseBody extends $tea
|
|
|
1597
1627
|
}
|
|
1598
1628
|
}
|
|
1599
1629
|
|
|
1600
|
-
export class
|
|
1630
|
+
export class CreateBasicEndpointGroupResponse extends $tea.Model {
|
|
1601
1631
|
headers: { [key: string]: string };
|
|
1602
1632
|
statusCode: number;
|
|
1603
|
-
body:
|
|
1633
|
+
body: CreateBasicEndpointGroupResponseBody;
|
|
1604
1634
|
static names(): { [key: string]: string } {
|
|
1605
1635
|
return {
|
|
1606
1636
|
headers: 'headers',
|
|
@@ -1613,7 +1643,7 @@ export class CreateCustomRoutingEndpointTrafficPoliciesResponse extends $tea.Mod
|
|
|
1613
1643
|
return {
|
|
1614
1644
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1615
1645
|
statusCode: 'number',
|
|
1616
|
-
body:
|
|
1646
|
+
body: CreateBasicEndpointGroupResponseBody,
|
|
1617
1647
|
};
|
|
1618
1648
|
}
|
|
1619
1649
|
|
|
@@ -1622,25 +1652,28 @@ export class CreateCustomRoutingEndpointTrafficPoliciesResponse extends $tea.Mod
|
|
|
1622
1652
|
}
|
|
1623
1653
|
}
|
|
1624
1654
|
|
|
1625
|
-
export class
|
|
1655
|
+
export class CreateBasicEndpointsRequest extends $tea.Model {
|
|
1656
|
+
acceleratorId?: string;
|
|
1626
1657
|
clientToken?: string;
|
|
1627
|
-
endpointConfigurations?: CreateCustomRoutingEndpointsRequestEndpointConfigurations[];
|
|
1628
1658
|
endpointGroupId?: string;
|
|
1659
|
+
endpoints?: CreateBasicEndpointsRequestEndpoints[];
|
|
1629
1660
|
regionId?: string;
|
|
1630
1661
|
static names(): { [key: string]: string } {
|
|
1631
1662
|
return {
|
|
1663
|
+
acceleratorId: 'AcceleratorId',
|
|
1632
1664
|
clientToken: 'ClientToken',
|
|
1633
|
-
endpointConfigurations: 'EndpointConfigurations',
|
|
1634
1665
|
endpointGroupId: 'EndpointGroupId',
|
|
1666
|
+
endpoints: 'Endpoints',
|
|
1635
1667
|
regionId: 'RegionId',
|
|
1636
1668
|
};
|
|
1637
1669
|
}
|
|
1638
1670
|
|
|
1639
1671
|
static types(): { [key: string]: any } {
|
|
1640
1672
|
return {
|
|
1673
|
+
acceleratorId: 'string',
|
|
1641
1674
|
clientToken: 'string',
|
|
1642
|
-
endpointConfigurations: { 'type': 'array', 'itemType': CreateCustomRoutingEndpointsRequestEndpointConfigurations },
|
|
1643
1675
|
endpointGroupId: 'string',
|
|
1676
|
+
endpoints: { 'type': 'array', 'itemType': CreateBasicEndpointsRequestEndpoints },
|
|
1644
1677
|
regionId: 'string',
|
|
1645
1678
|
};
|
|
1646
1679
|
}
|
|
@@ -1650,19 +1683,22 @@ export class CreateCustomRoutingEndpointsRequest extends $tea.Model {
|
|
|
1650
1683
|
}
|
|
1651
1684
|
}
|
|
1652
1685
|
|
|
1653
|
-
export class
|
|
1654
|
-
|
|
1686
|
+
export class CreateBasicEndpointsResponseBody extends $tea.Model {
|
|
1687
|
+
endpointGroupId?: string;
|
|
1688
|
+
endpoints?: CreateBasicEndpointsResponseBodyEndpoints[];
|
|
1655
1689
|
requestId?: string;
|
|
1656
1690
|
static names(): { [key: string]: string } {
|
|
1657
1691
|
return {
|
|
1658
|
-
|
|
1692
|
+
endpointGroupId: 'EndpointGroupId',
|
|
1693
|
+
endpoints: 'Endpoints',
|
|
1659
1694
|
requestId: 'RequestId',
|
|
1660
1695
|
};
|
|
1661
1696
|
}
|
|
1662
1697
|
|
|
1663
1698
|
static types(): { [key: string]: any } {
|
|
1664
1699
|
return {
|
|
1665
|
-
|
|
1700
|
+
endpointGroupId: 'string',
|
|
1701
|
+
endpoints: { 'type': 'array', 'itemType': CreateBasicEndpointsResponseBodyEndpoints },
|
|
1666
1702
|
requestId: 'string',
|
|
1667
1703
|
};
|
|
1668
1704
|
}
|
|
@@ -1672,10 +1708,10 @@ export class CreateCustomRoutingEndpointsResponseBody extends $tea.Model {
|
|
|
1672
1708
|
}
|
|
1673
1709
|
}
|
|
1674
1710
|
|
|
1675
|
-
export class
|
|
1711
|
+
export class CreateBasicEndpointsResponse extends $tea.Model {
|
|
1676
1712
|
headers: { [key: string]: string };
|
|
1677
1713
|
statusCode: number;
|
|
1678
|
-
body:
|
|
1714
|
+
body: CreateBasicEndpointsResponseBody;
|
|
1679
1715
|
static names(): { [key: string]: string } {
|
|
1680
1716
|
return {
|
|
1681
1717
|
headers: 'headers',
|
|
@@ -1688,7 +1724,7 @@ export class CreateCustomRoutingEndpointsResponse extends $tea.Model {
|
|
|
1688
1724
|
return {
|
|
1689
1725
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1690
1726
|
statusCode: 'number',
|
|
1691
|
-
body:
|
|
1727
|
+
body: CreateBasicEndpointsResponseBody,
|
|
1692
1728
|
};
|
|
1693
1729
|
}
|
|
1694
1730
|
|
|
@@ -1697,8 +1733,398 @@ export class CreateCustomRoutingEndpointsResponse extends $tea.Model {
|
|
|
1697
1733
|
}
|
|
1698
1734
|
}
|
|
1699
1735
|
|
|
1700
|
-
export class
|
|
1701
|
-
|
|
1736
|
+
export class CreateBasicIpSetRequest extends $tea.Model {
|
|
1737
|
+
accelerateRegionId?: string;
|
|
1738
|
+
acceleratorId?: string;
|
|
1739
|
+
bandwidth?: number;
|
|
1740
|
+
clientToken?: string;
|
|
1741
|
+
ispType?: string;
|
|
1742
|
+
regionId?: string;
|
|
1743
|
+
static names(): { [key: string]: string } {
|
|
1744
|
+
return {
|
|
1745
|
+
accelerateRegionId: 'AccelerateRegionId',
|
|
1746
|
+
acceleratorId: 'AcceleratorId',
|
|
1747
|
+
bandwidth: 'Bandwidth',
|
|
1748
|
+
clientToken: 'ClientToken',
|
|
1749
|
+
ispType: 'IspType',
|
|
1750
|
+
regionId: 'RegionId',
|
|
1751
|
+
};
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
static types(): { [key: string]: any } {
|
|
1755
|
+
return {
|
|
1756
|
+
accelerateRegionId: 'string',
|
|
1757
|
+
acceleratorId: 'string',
|
|
1758
|
+
bandwidth: 'number',
|
|
1759
|
+
clientToken: 'string',
|
|
1760
|
+
ispType: 'string',
|
|
1761
|
+
regionId: 'string',
|
|
1762
|
+
};
|
|
1763
|
+
}
|
|
1764
|
+
|
|
1765
|
+
constructor(map?: { [key: string]: any }) {
|
|
1766
|
+
super(map);
|
|
1767
|
+
}
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
export class CreateBasicIpSetResponseBody extends $tea.Model {
|
|
1771
|
+
ipSetId?: string;
|
|
1772
|
+
requestId?: string;
|
|
1773
|
+
static names(): { [key: string]: string } {
|
|
1774
|
+
return {
|
|
1775
|
+
ipSetId: 'IpSetId',
|
|
1776
|
+
requestId: 'RequestId',
|
|
1777
|
+
};
|
|
1778
|
+
}
|
|
1779
|
+
|
|
1780
|
+
static types(): { [key: string]: any } {
|
|
1781
|
+
return {
|
|
1782
|
+
ipSetId: 'string',
|
|
1783
|
+
requestId: 'string',
|
|
1784
|
+
};
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1787
|
+
constructor(map?: { [key: string]: any }) {
|
|
1788
|
+
super(map);
|
|
1789
|
+
}
|
|
1790
|
+
}
|
|
1791
|
+
|
|
1792
|
+
export class CreateBasicIpSetResponse extends $tea.Model {
|
|
1793
|
+
headers: { [key: string]: string };
|
|
1794
|
+
statusCode: number;
|
|
1795
|
+
body: CreateBasicIpSetResponseBody;
|
|
1796
|
+
static names(): { [key: string]: string } {
|
|
1797
|
+
return {
|
|
1798
|
+
headers: 'headers',
|
|
1799
|
+
statusCode: 'statusCode',
|
|
1800
|
+
body: 'body',
|
|
1801
|
+
};
|
|
1802
|
+
}
|
|
1803
|
+
|
|
1804
|
+
static types(): { [key: string]: any } {
|
|
1805
|
+
return {
|
|
1806
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1807
|
+
statusCode: 'number',
|
|
1808
|
+
body: CreateBasicIpSetResponseBody,
|
|
1809
|
+
};
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
constructor(map?: { [key: string]: any }) {
|
|
1813
|
+
super(map);
|
|
1814
|
+
}
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
export class CreateCustomRoutingEndpointGroupDestinationsRequest extends $tea.Model {
|
|
1818
|
+
clientToken?: string;
|
|
1819
|
+
destinationConfigurations?: CreateCustomRoutingEndpointGroupDestinationsRequestDestinationConfigurations[];
|
|
1820
|
+
dryRun?: boolean;
|
|
1821
|
+
endpointGroupId?: string;
|
|
1822
|
+
regionId?: string;
|
|
1823
|
+
static names(): { [key: string]: string } {
|
|
1824
|
+
return {
|
|
1825
|
+
clientToken: 'ClientToken',
|
|
1826
|
+
destinationConfigurations: 'DestinationConfigurations',
|
|
1827
|
+
dryRun: 'DryRun',
|
|
1828
|
+
endpointGroupId: 'EndpointGroupId',
|
|
1829
|
+
regionId: 'RegionId',
|
|
1830
|
+
};
|
|
1831
|
+
}
|
|
1832
|
+
|
|
1833
|
+
static types(): { [key: string]: any } {
|
|
1834
|
+
return {
|
|
1835
|
+
clientToken: 'string',
|
|
1836
|
+
destinationConfigurations: { 'type': 'array', 'itemType': CreateCustomRoutingEndpointGroupDestinationsRequestDestinationConfigurations },
|
|
1837
|
+
dryRun: 'boolean',
|
|
1838
|
+
endpointGroupId: 'string',
|
|
1839
|
+
regionId: 'string',
|
|
1840
|
+
};
|
|
1841
|
+
}
|
|
1842
|
+
|
|
1843
|
+
constructor(map?: { [key: string]: any }) {
|
|
1844
|
+
super(map);
|
|
1845
|
+
}
|
|
1846
|
+
}
|
|
1847
|
+
|
|
1848
|
+
export class CreateCustomRoutingEndpointGroupDestinationsResponseBody extends $tea.Model {
|
|
1849
|
+
destinationIds?: string[];
|
|
1850
|
+
requestId?: string;
|
|
1851
|
+
static names(): { [key: string]: string } {
|
|
1852
|
+
return {
|
|
1853
|
+
destinationIds: 'DestinationIds',
|
|
1854
|
+
requestId: 'RequestId',
|
|
1855
|
+
};
|
|
1856
|
+
}
|
|
1857
|
+
|
|
1858
|
+
static types(): { [key: string]: any } {
|
|
1859
|
+
return {
|
|
1860
|
+
destinationIds: { 'type': 'array', 'itemType': 'string' },
|
|
1861
|
+
requestId: 'string',
|
|
1862
|
+
};
|
|
1863
|
+
}
|
|
1864
|
+
|
|
1865
|
+
constructor(map?: { [key: string]: any }) {
|
|
1866
|
+
super(map);
|
|
1867
|
+
}
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
export class CreateCustomRoutingEndpointGroupDestinationsResponse extends $tea.Model {
|
|
1871
|
+
headers: { [key: string]: string };
|
|
1872
|
+
statusCode: number;
|
|
1873
|
+
body: CreateCustomRoutingEndpointGroupDestinationsResponseBody;
|
|
1874
|
+
static names(): { [key: string]: string } {
|
|
1875
|
+
return {
|
|
1876
|
+
headers: 'headers',
|
|
1877
|
+
statusCode: 'statusCode',
|
|
1878
|
+
body: 'body',
|
|
1879
|
+
};
|
|
1880
|
+
}
|
|
1881
|
+
|
|
1882
|
+
static types(): { [key: string]: any } {
|
|
1883
|
+
return {
|
|
1884
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1885
|
+
statusCode: 'number',
|
|
1886
|
+
body: CreateCustomRoutingEndpointGroupDestinationsResponseBody,
|
|
1887
|
+
};
|
|
1888
|
+
}
|
|
1889
|
+
|
|
1890
|
+
constructor(map?: { [key: string]: any }) {
|
|
1891
|
+
super(map);
|
|
1892
|
+
}
|
|
1893
|
+
}
|
|
1894
|
+
|
|
1895
|
+
export class CreateCustomRoutingEndpointGroupsRequest extends $tea.Model {
|
|
1896
|
+
acceleratorId?: string;
|
|
1897
|
+
clientToken?: string;
|
|
1898
|
+
dryRun?: boolean;
|
|
1899
|
+
endpointGroupConfigurations?: CreateCustomRoutingEndpointGroupsRequestEndpointGroupConfigurations[];
|
|
1900
|
+
listenerId?: string;
|
|
1901
|
+
regionId?: string;
|
|
1902
|
+
static names(): { [key: string]: string } {
|
|
1903
|
+
return {
|
|
1904
|
+
acceleratorId: 'AcceleratorId',
|
|
1905
|
+
clientToken: 'ClientToken',
|
|
1906
|
+
dryRun: 'DryRun',
|
|
1907
|
+
endpointGroupConfigurations: 'EndpointGroupConfigurations',
|
|
1908
|
+
listenerId: 'ListenerId',
|
|
1909
|
+
regionId: 'RegionId',
|
|
1910
|
+
};
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1913
|
+
static types(): { [key: string]: any } {
|
|
1914
|
+
return {
|
|
1915
|
+
acceleratorId: 'string',
|
|
1916
|
+
clientToken: 'string',
|
|
1917
|
+
dryRun: 'boolean',
|
|
1918
|
+
endpointGroupConfigurations: { 'type': 'array', 'itemType': CreateCustomRoutingEndpointGroupsRequestEndpointGroupConfigurations },
|
|
1919
|
+
listenerId: 'string',
|
|
1920
|
+
regionId: 'string',
|
|
1921
|
+
};
|
|
1922
|
+
}
|
|
1923
|
+
|
|
1924
|
+
constructor(map?: { [key: string]: any }) {
|
|
1925
|
+
super(map);
|
|
1926
|
+
}
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
export class CreateCustomRoutingEndpointGroupsResponseBody extends $tea.Model {
|
|
1930
|
+
endpointGroupIds?: string[];
|
|
1931
|
+
requestId?: string;
|
|
1932
|
+
static names(): { [key: string]: string } {
|
|
1933
|
+
return {
|
|
1934
|
+
endpointGroupIds: 'EndpointGroupIds',
|
|
1935
|
+
requestId: 'RequestId',
|
|
1936
|
+
};
|
|
1937
|
+
}
|
|
1938
|
+
|
|
1939
|
+
static types(): { [key: string]: any } {
|
|
1940
|
+
return {
|
|
1941
|
+
endpointGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
1942
|
+
requestId: 'string',
|
|
1943
|
+
};
|
|
1944
|
+
}
|
|
1945
|
+
|
|
1946
|
+
constructor(map?: { [key: string]: any }) {
|
|
1947
|
+
super(map);
|
|
1948
|
+
}
|
|
1949
|
+
}
|
|
1950
|
+
|
|
1951
|
+
export class CreateCustomRoutingEndpointGroupsResponse extends $tea.Model {
|
|
1952
|
+
headers: { [key: string]: string };
|
|
1953
|
+
statusCode: number;
|
|
1954
|
+
body: CreateCustomRoutingEndpointGroupsResponseBody;
|
|
1955
|
+
static names(): { [key: string]: string } {
|
|
1956
|
+
return {
|
|
1957
|
+
headers: 'headers',
|
|
1958
|
+
statusCode: 'statusCode',
|
|
1959
|
+
body: 'body',
|
|
1960
|
+
};
|
|
1961
|
+
}
|
|
1962
|
+
|
|
1963
|
+
static types(): { [key: string]: any } {
|
|
1964
|
+
return {
|
|
1965
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1966
|
+
statusCode: 'number',
|
|
1967
|
+
body: CreateCustomRoutingEndpointGroupsResponseBody,
|
|
1968
|
+
};
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
constructor(map?: { [key: string]: any }) {
|
|
1972
|
+
super(map);
|
|
1973
|
+
}
|
|
1974
|
+
}
|
|
1975
|
+
|
|
1976
|
+
export class CreateCustomRoutingEndpointTrafficPoliciesRequest extends $tea.Model {
|
|
1977
|
+
clientToken?: string;
|
|
1978
|
+
endpointId?: string;
|
|
1979
|
+
policyConfigurations?: CreateCustomRoutingEndpointTrafficPoliciesRequestPolicyConfigurations[];
|
|
1980
|
+
regionId?: string;
|
|
1981
|
+
static names(): { [key: string]: string } {
|
|
1982
|
+
return {
|
|
1983
|
+
clientToken: 'ClientToken',
|
|
1984
|
+
endpointId: 'EndpointId',
|
|
1985
|
+
policyConfigurations: 'PolicyConfigurations',
|
|
1986
|
+
regionId: 'RegionId',
|
|
1987
|
+
};
|
|
1988
|
+
}
|
|
1989
|
+
|
|
1990
|
+
static types(): { [key: string]: any } {
|
|
1991
|
+
return {
|
|
1992
|
+
clientToken: 'string',
|
|
1993
|
+
endpointId: 'string',
|
|
1994
|
+
policyConfigurations: { 'type': 'array', 'itemType': CreateCustomRoutingEndpointTrafficPoliciesRequestPolicyConfigurations },
|
|
1995
|
+
regionId: 'string',
|
|
1996
|
+
};
|
|
1997
|
+
}
|
|
1998
|
+
|
|
1999
|
+
constructor(map?: { [key: string]: any }) {
|
|
2000
|
+
super(map);
|
|
2001
|
+
}
|
|
2002
|
+
}
|
|
2003
|
+
|
|
2004
|
+
export class CreateCustomRoutingEndpointTrafficPoliciesResponseBody extends $tea.Model {
|
|
2005
|
+
policyIds?: string[];
|
|
2006
|
+
requestId?: string;
|
|
2007
|
+
static names(): { [key: string]: string } {
|
|
2008
|
+
return {
|
|
2009
|
+
policyIds: 'PolicyIds',
|
|
2010
|
+
requestId: 'RequestId',
|
|
2011
|
+
};
|
|
2012
|
+
}
|
|
2013
|
+
|
|
2014
|
+
static types(): { [key: string]: any } {
|
|
2015
|
+
return {
|
|
2016
|
+
policyIds: { 'type': 'array', 'itemType': 'string' },
|
|
2017
|
+
requestId: 'string',
|
|
2018
|
+
};
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
constructor(map?: { [key: string]: any }) {
|
|
2022
|
+
super(map);
|
|
2023
|
+
}
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
export class CreateCustomRoutingEndpointTrafficPoliciesResponse extends $tea.Model {
|
|
2027
|
+
headers: { [key: string]: string };
|
|
2028
|
+
statusCode: number;
|
|
2029
|
+
body: CreateCustomRoutingEndpointTrafficPoliciesResponseBody;
|
|
2030
|
+
static names(): { [key: string]: string } {
|
|
2031
|
+
return {
|
|
2032
|
+
headers: 'headers',
|
|
2033
|
+
statusCode: 'statusCode',
|
|
2034
|
+
body: 'body',
|
|
2035
|
+
};
|
|
2036
|
+
}
|
|
2037
|
+
|
|
2038
|
+
static types(): { [key: string]: any } {
|
|
2039
|
+
return {
|
|
2040
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2041
|
+
statusCode: 'number',
|
|
2042
|
+
body: CreateCustomRoutingEndpointTrafficPoliciesResponseBody,
|
|
2043
|
+
};
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
constructor(map?: { [key: string]: any }) {
|
|
2047
|
+
super(map);
|
|
2048
|
+
}
|
|
2049
|
+
}
|
|
2050
|
+
|
|
2051
|
+
export class CreateCustomRoutingEndpointsRequest extends $tea.Model {
|
|
2052
|
+
clientToken?: string;
|
|
2053
|
+
endpointConfigurations?: CreateCustomRoutingEndpointsRequestEndpointConfigurations[];
|
|
2054
|
+
endpointGroupId?: string;
|
|
2055
|
+
regionId?: string;
|
|
2056
|
+
static names(): { [key: string]: string } {
|
|
2057
|
+
return {
|
|
2058
|
+
clientToken: 'ClientToken',
|
|
2059
|
+
endpointConfigurations: 'EndpointConfigurations',
|
|
2060
|
+
endpointGroupId: 'EndpointGroupId',
|
|
2061
|
+
regionId: 'RegionId',
|
|
2062
|
+
};
|
|
2063
|
+
}
|
|
2064
|
+
|
|
2065
|
+
static types(): { [key: string]: any } {
|
|
2066
|
+
return {
|
|
2067
|
+
clientToken: 'string',
|
|
2068
|
+
endpointConfigurations: { 'type': 'array', 'itemType': CreateCustomRoutingEndpointsRequestEndpointConfigurations },
|
|
2069
|
+
endpointGroupId: 'string',
|
|
2070
|
+
regionId: 'string',
|
|
2071
|
+
};
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2074
|
+
constructor(map?: { [key: string]: any }) {
|
|
2075
|
+
super(map);
|
|
2076
|
+
}
|
|
2077
|
+
}
|
|
2078
|
+
|
|
2079
|
+
export class CreateCustomRoutingEndpointsResponseBody extends $tea.Model {
|
|
2080
|
+
endpointIds?: string[];
|
|
2081
|
+
requestId?: string;
|
|
2082
|
+
static names(): { [key: string]: string } {
|
|
2083
|
+
return {
|
|
2084
|
+
endpointIds: 'EndpointIds',
|
|
2085
|
+
requestId: 'RequestId',
|
|
2086
|
+
};
|
|
2087
|
+
}
|
|
2088
|
+
|
|
2089
|
+
static types(): { [key: string]: any } {
|
|
2090
|
+
return {
|
|
2091
|
+
endpointIds: { 'type': 'array', 'itemType': 'string' },
|
|
2092
|
+
requestId: 'string',
|
|
2093
|
+
};
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
constructor(map?: { [key: string]: any }) {
|
|
2097
|
+
super(map);
|
|
2098
|
+
}
|
|
2099
|
+
}
|
|
2100
|
+
|
|
2101
|
+
export class CreateCustomRoutingEndpointsResponse extends $tea.Model {
|
|
2102
|
+
headers: { [key: string]: string };
|
|
2103
|
+
statusCode: number;
|
|
2104
|
+
body: CreateCustomRoutingEndpointsResponseBody;
|
|
2105
|
+
static names(): { [key: string]: string } {
|
|
2106
|
+
return {
|
|
2107
|
+
headers: 'headers',
|
|
2108
|
+
statusCode: 'statusCode',
|
|
2109
|
+
body: 'body',
|
|
2110
|
+
};
|
|
2111
|
+
}
|
|
2112
|
+
|
|
2113
|
+
static types(): { [key: string]: any } {
|
|
2114
|
+
return {
|
|
2115
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2116
|
+
statusCode: 'number',
|
|
2117
|
+
body: CreateCustomRoutingEndpointsResponseBody,
|
|
2118
|
+
};
|
|
2119
|
+
}
|
|
2120
|
+
|
|
2121
|
+
constructor(map?: { [key: string]: any }) {
|
|
2122
|
+
super(map);
|
|
2123
|
+
}
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2126
|
+
export class CreateEndpointGroupRequest extends $tea.Model {
|
|
2127
|
+
acceleratorId?: string;
|
|
1702
2128
|
clientToken?: string;
|
|
1703
2129
|
description?: string;
|
|
1704
2130
|
endpointConfigurations?: CreateEndpointGroupRequestEndpointConfigurations[];
|
|
@@ -2484,7 +2910,235 @@ export class DeleteBandwidthPackageResponseBody extends $tea.Model {
|
|
|
2484
2910
|
|
|
2485
2911
|
static types(): { [key: string]: any } {
|
|
2486
2912
|
return {
|
|
2487
|
-
bandwidthPackageId: 'string',
|
|
2913
|
+
bandwidthPackageId: 'string',
|
|
2914
|
+
requestId: 'string',
|
|
2915
|
+
};
|
|
2916
|
+
}
|
|
2917
|
+
|
|
2918
|
+
constructor(map?: { [key: string]: any }) {
|
|
2919
|
+
super(map);
|
|
2920
|
+
}
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2923
|
+
export class DeleteBandwidthPackageResponse extends $tea.Model {
|
|
2924
|
+
headers: { [key: string]: string };
|
|
2925
|
+
statusCode: number;
|
|
2926
|
+
body: DeleteBandwidthPackageResponseBody;
|
|
2927
|
+
static names(): { [key: string]: string } {
|
|
2928
|
+
return {
|
|
2929
|
+
headers: 'headers',
|
|
2930
|
+
statusCode: 'statusCode',
|
|
2931
|
+
body: 'body',
|
|
2932
|
+
};
|
|
2933
|
+
}
|
|
2934
|
+
|
|
2935
|
+
static types(): { [key: string]: any } {
|
|
2936
|
+
return {
|
|
2937
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2938
|
+
statusCode: 'number',
|
|
2939
|
+
body: DeleteBandwidthPackageResponseBody,
|
|
2940
|
+
};
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
constructor(map?: { [key: string]: any }) {
|
|
2944
|
+
super(map);
|
|
2945
|
+
}
|
|
2946
|
+
}
|
|
2947
|
+
|
|
2948
|
+
export class DeleteBasicAccelerateIpRequest extends $tea.Model {
|
|
2949
|
+
accelerateIpId?: string;
|
|
2950
|
+
clientToken?: string;
|
|
2951
|
+
regionId?: string;
|
|
2952
|
+
static names(): { [key: string]: string } {
|
|
2953
|
+
return {
|
|
2954
|
+
accelerateIpId: 'AccelerateIpId',
|
|
2955
|
+
clientToken: 'ClientToken',
|
|
2956
|
+
regionId: 'RegionId',
|
|
2957
|
+
};
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2960
|
+
static types(): { [key: string]: any } {
|
|
2961
|
+
return {
|
|
2962
|
+
accelerateIpId: 'string',
|
|
2963
|
+
clientToken: 'string',
|
|
2964
|
+
regionId: 'string',
|
|
2965
|
+
};
|
|
2966
|
+
}
|
|
2967
|
+
|
|
2968
|
+
constructor(map?: { [key: string]: any }) {
|
|
2969
|
+
super(map);
|
|
2970
|
+
}
|
|
2971
|
+
}
|
|
2972
|
+
|
|
2973
|
+
export class DeleteBasicAccelerateIpResponseBody extends $tea.Model {
|
|
2974
|
+
accelerateIpId?: string;
|
|
2975
|
+
requestId?: string;
|
|
2976
|
+
static names(): { [key: string]: string } {
|
|
2977
|
+
return {
|
|
2978
|
+
accelerateIpId: 'AccelerateIpId',
|
|
2979
|
+
requestId: 'RequestId',
|
|
2980
|
+
};
|
|
2981
|
+
}
|
|
2982
|
+
|
|
2983
|
+
static types(): { [key: string]: any } {
|
|
2984
|
+
return {
|
|
2985
|
+
accelerateIpId: 'string',
|
|
2986
|
+
requestId: 'string',
|
|
2987
|
+
};
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2990
|
+
constructor(map?: { [key: string]: any }) {
|
|
2991
|
+
super(map);
|
|
2992
|
+
}
|
|
2993
|
+
}
|
|
2994
|
+
|
|
2995
|
+
export class DeleteBasicAccelerateIpResponse extends $tea.Model {
|
|
2996
|
+
headers: { [key: string]: string };
|
|
2997
|
+
statusCode: number;
|
|
2998
|
+
body: DeleteBasicAccelerateIpResponseBody;
|
|
2999
|
+
static names(): { [key: string]: string } {
|
|
3000
|
+
return {
|
|
3001
|
+
headers: 'headers',
|
|
3002
|
+
statusCode: 'statusCode',
|
|
3003
|
+
body: 'body',
|
|
3004
|
+
};
|
|
3005
|
+
}
|
|
3006
|
+
|
|
3007
|
+
static types(): { [key: string]: any } {
|
|
3008
|
+
return {
|
|
3009
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3010
|
+
statusCode: 'number',
|
|
3011
|
+
body: DeleteBasicAccelerateIpResponseBody,
|
|
3012
|
+
};
|
|
3013
|
+
}
|
|
3014
|
+
|
|
3015
|
+
constructor(map?: { [key: string]: any }) {
|
|
3016
|
+
super(map);
|
|
3017
|
+
}
|
|
3018
|
+
}
|
|
3019
|
+
|
|
3020
|
+
export class DeleteBasicAccelerateIpEndpointRelationRequest extends $tea.Model {
|
|
3021
|
+
accelerateIpId?: string;
|
|
3022
|
+
acceleratorId?: string;
|
|
3023
|
+
clientToken?: string;
|
|
3024
|
+
endpointId?: string;
|
|
3025
|
+
regionId?: string;
|
|
3026
|
+
static names(): { [key: string]: string } {
|
|
3027
|
+
return {
|
|
3028
|
+
accelerateIpId: 'AccelerateIpId',
|
|
3029
|
+
acceleratorId: 'AcceleratorId',
|
|
3030
|
+
clientToken: 'ClientToken',
|
|
3031
|
+
endpointId: 'EndpointId',
|
|
3032
|
+
regionId: 'RegionId',
|
|
3033
|
+
};
|
|
3034
|
+
}
|
|
3035
|
+
|
|
3036
|
+
static types(): { [key: string]: any } {
|
|
3037
|
+
return {
|
|
3038
|
+
accelerateIpId: 'string',
|
|
3039
|
+
acceleratorId: 'string',
|
|
3040
|
+
clientToken: 'string',
|
|
3041
|
+
endpointId: 'string',
|
|
3042
|
+
regionId: 'string',
|
|
3043
|
+
};
|
|
3044
|
+
}
|
|
3045
|
+
|
|
3046
|
+
constructor(map?: { [key: string]: any }) {
|
|
3047
|
+
super(map);
|
|
3048
|
+
}
|
|
3049
|
+
}
|
|
3050
|
+
|
|
3051
|
+
export class DeleteBasicAccelerateIpEndpointRelationResponseBody extends $tea.Model {
|
|
3052
|
+
accelerateIpId?: string;
|
|
3053
|
+
acceleratorId?: string;
|
|
3054
|
+
endpointId?: string;
|
|
3055
|
+
requestId?: string;
|
|
3056
|
+
state?: string;
|
|
3057
|
+
static names(): { [key: string]: string } {
|
|
3058
|
+
return {
|
|
3059
|
+
accelerateIpId: 'AccelerateIpId',
|
|
3060
|
+
acceleratorId: 'AcceleratorId',
|
|
3061
|
+
endpointId: 'EndpointId',
|
|
3062
|
+
requestId: 'RequestId',
|
|
3063
|
+
state: 'State',
|
|
3064
|
+
};
|
|
3065
|
+
}
|
|
3066
|
+
|
|
3067
|
+
static types(): { [key: string]: any } {
|
|
3068
|
+
return {
|
|
3069
|
+
accelerateIpId: 'string',
|
|
3070
|
+
acceleratorId: 'string',
|
|
3071
|
+
endpointId: 'string',
|
|
3072
|
+
requestId: 'string',
|
|
3073
|
+
state: 'string',
|
|
3074
|
+
};
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
constructor(map?: { [key: string]: any }) {
|
|
3078
|
+
super(map);
|
|
3079
|
+
}
|
|
3080
|
+
}
|
|
3081
|
+
|
|
3082
|
+
export class DeleteBasicAccelerateIpEndpointRelationResponse extends $tea.Model {
|
|
3083
|
+
headers: { [key: string]: string };
|
|
3084
|
+
statusCode: number;
|
|
3085
|
+
body: DeleteBasicAccelerateIpEndpointRelationResponseBody;
|
|
3086
|
+
static names(): { [key: string]: string } {
|
|
3087
|
+
return {
|
|
3088
|
+
headers: 'headers',
|
|
3089
|
+
statusCode: 'statusCode',
|
|
3090
|
+
body: 'body',
|
|
3091
|
+
};
|
|
3092
|
+
}
|
|
3093
|
+
|
|
3094
|
+
static types(): { [key: string]: any } {
|
|
3095
|
+
return {
|
|
3096
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3097
|
+
statusCode: 'number',
|
|
3098
|
+
body: DeleteBasicAccelerateIpEndpointRelationResponseBody,
|
|
3099
|
+
};
|
|
3100
|
+
}
|
|
3101
|
+
|
|
3102
|
+
constructor(map?: { [key: string]: any }) {
|
|
3103
|
+
super(map);
|
|
3104
|
+
}
|
|
3105
|
+
}
|
|
3106
|
+
|
|
3107
|
+
export class DeleteBasicAcceleratorRequest extends $tea.Model {
|
|
3108
|
+
acceleratorId?: string;
|
|
3109
|
+
regionId?: string;
|
|
3110
|
+
static names(): { [key: string]: string } {
|
|
3111
|
+
return {
|
|
3112
|
+
acceleratorId: 'AcceleratorId',
|
|
3113
|
+
regionId: 'RegionId',
|
|
3114
|
+
};
|
|
3115
|
+
}
|
|
3116
|
+
|
|
3117
|
+
static types(): { [key: string]: any } {
|
|
3118
|
+
return {
|
|
3119
|
+
acceleratorId: 'string',
|
|
3120
|
+
regionId: 'string',
|
|
3121
|
+
};
|
|
3122
|
+
}
|
|
3123
|
+
|
|
3124
|
+
constructor(map?: { [key: string]: any }) {
|
|
3125
|
+
super(map);
|
|
3126
|
+
}
|
|
3127
|
+
}
|
|
3128
|
+
|
|
3129
|
+
export class DeleteBasicAcceleratorResponseBody extends $tea.Model {
|
|
3130
|
+
acceleratorId?: string;
|
|
3131
|
+
requestId?: string;
|
|
3132
|
+
static names(): { [key: string]: string } {
|
|
3133
|
+
return {
|
|
3134
|
+
acceleratorId: 'AcceleratorId',
|
|
3135
|
+
requestId: 'RequestId',
|
|
3136
|
+
};
|
|
3137
|
+
}
|
|
3138
|
+
|
|
3139
|
+
static types(): { [key: string]: any } {
|
|
3140
|
+
return {
|
|
3141
|
+
acceleratorId: 'string',
|
|
2488
3142
|
requestId: 'string',
|
|
2489
3143
|
};
|
|
2490
3144
|
}
|
|
@@ -2494,10 +3148,10 @@ export class DeleteBandwidthPackageResponseBody extends $tea.Model {
|
|
|
2494
3148
|
}
|
|
2495
3149
|
}
|
|
2496
3150
|
|
|
2497
|
-
export class
|
|
3151
|
+
export class DeleteBasicAcceleratorResponse extends $tea.Model {
|
|
2498
3152
|
headers: { [key: string]: string };
|
|
2499
3153
|
statusCode: number;
|
|
2500
|
-
body:
|
|
3154
|
+
body: DeleteBasicAcceleratorResponseBody;
|
|
2501
3155
|
static names(): { [key: string]: string } {
|
|
2502
3156
|
return {
|
|
2503
3157
|
headers: 'headers',
|
|
@@ -2510,7 +3164,7 @@ export class DeleteBandwidthPackageResponse extends $tea.Model {
|
|
|
2510
3164
|
return {
|
|
2511
3165
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2512
3166
|
statusCode: 'number',
|
|
2513
|
-
body:
|
|
3167
|
+
body: DeleteBasicAcceleratorResponseBody,
|
|
2514
3168
|
};
|
|
2515
3169
|
}
|
|
2516
3170
|
|
|
@@ -2519,19 +3173,25 @@ export class DeleteBandwidthPackageResponse extends $tea.Model {
|
|
|
2519
3173
|
}
|
|
2520
3174
|
}
|
|
2521
3175
|
|
|
2522
|
-
export class
|
|
2523
|
-
|
|
3176
|
+
export class DeleteBasicEndpointRequest extends $tea.Model {
|
|
3177
|
+
clientToken?: string;
|
|
3178
|
+
endpointGroupId?: string;
|
|
3179
|
+
endpointId?: string;
|
|
2524
3180
|
regionId?: string;
|
|
2525
3181
|
static names(): { [key: string]: string } {
|
|
2526
3182
|
return {
|
|
2527
|
-
|
|
3183
|
+
clientToken: 'ClientToken',
|
|
3184
|
+
endpointGroupId: 'EndpointGroupId',
|
|
3185
|
+
endpointId: 'EndpointId',
|
|
2528
3186
|
regionId: 'RegionId',
|
|
2529
3187
|
};
|
|
2530
3188
|
}
|
|
2531
3189
|
|
|
2532
3190
|
static types(): { [key: string]: any } {
|
|
2533
3191
|
return {
|
|
2534
|
-
|
|
3192
|
+
clientToken: 'string',
|
|
3193
|
+
endpointGroupId: 'string',
|
|
3194
|
+
endpointId: 'string',
|
|
2535
3195
|
regionId: 'string',
|
|
2536
3196
|
};
|
|
2537
3197
|
}
|
|
@@ -2541,19 +3201,19 @@ export class DeleteBasicAcceleratorRequest extends $tea.Model {
|
|
|
2541
3201
|
}
|
|
2542
3202
|
}
|
|
2543
3203
|
|
|
2544
|
-
export class
|
|
2545
|
-
|
|
3204
|
+
export class DeleteBasicEndpointResponseBody extends $tea.Model {
|
|
3205
|
+
endpointId?: string;
|
|
2546
3206
|
requestId?: string;
|
|
2547
3207
|
static names(): { [key: string]: string } {
|
|
2548
3208
|
return {
|
|
2549
|
-
|
|
3209
|
+
endpointId: 'EndpointId',
|
|
2550
3210
|
requestId: 'RequestId',
|
|
2551
3211
|
};
|
|
2552
3212
|
}
|
|
2553
3213
|
|
|
2554
3214
|
static types(): { [key: string]: any } {
|
|
2555
3215
|
return {
|
|
2556
|
-
|
|
3216
|
+
endpointId: 'string',
|
|
2557
3217
|
requestId: 'string',
|
|
2558
3218
|
};
|
|
2559
3219
|
}
|
|
@@ -2563,10 +3223,10 @@ export class DeleteBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
2563
3223
|
}
|
|
2564
3224
|
}
|
|
2565
3225
|
|
|
2566
|
-
export class
|
|
3226
|
+
export class DeleteBasicEndpointResponse extends $tea.Model {
|
|
2567
3227
|
headers: { [key: string]: string };
|
|
2568
3228
|
statusCode: number;
|
|
2569
|
-
body:
|
|
3229
|
+
body: DeleteBasicEndpointResponseBody;
|
|
2570
3230
|
static names(): { [key: string]: string } {
|
|
2571
3231
|
return {
|
|
2572
3232
|
headers: 'headers',
|
|
@@ -2579,7 +3239,7 @@ export class DeleteBasicAcceleratorResponse extends $tea.Model {
|
|
|
2579
3239
|
return {
|
|
2580
3240
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2581
3241
|
statusCode: 'number',
|
|
2582
|
-
body:
|
|
3242
|
+
body: DeleteBasicEndpointResponseBody,
|
|
2583
3243
|
};
|
|
2584
3244
|
}
|
|
2585
3245
|
|
|
@@ -4445,6 +5105,7 @@ export class DescribeEndpointGroupResponseBody extends $tea.Model {
|
|
|
4445
5105
|
slsProjectName?: string;
|
|
4446
5106
|
slsRegion?: string;
|
|
4447
5107
|
state?: string;
|
|
5108
|
+
tags?: DescribeEndpointGroupResponseBodyTags[];
|
|
4448
5109
|
thresholdCount?: number;
|
|
4449
5110
|
totalCount?: number;
|
|
4450
5111
|
trafficPercentage?: number;
|
|
@@ -4475,6 +5136,7 @@ export class DescribeEndpointGroupResponseBody extends $tea.Model {
|
|
|
4475
5136
|
slsProjectName: 'SlsProjectName',
|
|
4476
5137
|
slsRegion: 'SlsRegion',
|
|
4477
5138
|
state: 'State',
|
|
5139
|
+
tags: 'Tags',
|
|
4478
5140
|
thresholdCount: 'ThresholdCount',
|
|
4479
5141
|
totalCount: 'TotalCount',
|
|
4480
5142
|
trafficPercentage: 'TrafficPercentage',
|
|
@@ -4508,6 +5170,7 @@ export class DescribeEndpointGroupResponseBody extends $tea.Model {
|
|
|
4508
5170
|
slsProjectName: 'string',
|
|
4509
5171
|
slsRegion: 'string',
|
|
4510
5172
|
state: 'string',
|
|
5173
|
+
tags: { 'type': 'array', 'itemType': DescribeEndpointGroupResponseBodyTags },
|
|
4511
5174
|
thresholdCount: 'number',
|
|
4512
5175
|
totalCount: 'number',
|
|
4513
5176
|
trafficPercentage: 'number',
|
|
@@ -4977,7 +5640,232 @@ export class DetectApplicationMonitorRequest extends $tea.Model {
|
|
|
4977
5640
|
return {
|
|
4978
5641
|
clientToken: 'string',
|
|
4979
5642
|
regionId: 'string',
|
|
4980
|
-
taskId: 'string',
|
|
5643
|
+
taskId: 'string',
|
|
5644
|
+
};
|
|
5645
|
+
}
|
|
5646
|
+
|
|
5647
|
+
constructor(map?: { [key: string]: any }) {
|
|
5648
|
+
super(map);
|
|
5649
|
+
}
|
|
5650
|
+
}
|
|
5651
|
+
|
|
5652
|
+
export class DetectApplicationMonitorResponseBody extends $tea.Model {
|
|
5653
|
+
requestId?: string;
|
|
5654
|
+
static names(): { [key: string]: string } {
|
|
5655
|
+
return {
|
|
5656
|
+
requestId: 'RequestId',
|
|
5657
|
+
};
|
|
5658
|
+
}
|
|
5659
|
+
|
|
5660
|
+
static types(): { [key: string]: any } {
|
|
5661
|
+
return {
|
|
5662
|
+
requestId: 'string',
|
|
5663
|
+
};
|
|
5664
|
+
}
|
|
5665
|
+
|
|
5666
|
+
constructor(map?: { [key: string]: any }) {
|
|
5667
|
+
super(map);
|
|
5668
|
+
}
|
|
5669
|
+
}
|
|
5670
|
+
|
|
5671
|
+
export class DetectApplicationMonitorResponse extends $tea.Model {
|
|
5672
|
+
headers: { [key: string]: string };
|
|
5673
|
+
statusCode: number;
|
|
5674
|
+
body: DetectApplicationMonitorResponseBody;
|
|
5675
|
+
static names(): { [key: string]: string } {
|
|
5676
|
+
return {
|
|
5677
|
+
headers: 'headers',
|
|
5678
|
+
statusCode: 'statusCode',
|
|
5679
|
+
body: 'body',
|
|
5680
|
+
};
|
|
5681
|
+
}
|
|
5682
|
+
|
|
5683
|
+
static types(): { [key: string]: any } {
|
|
5684
|
+
return {
|
|
5685
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5686
|
+
statusCode: 'number',
|
|
5687
|
+
body: DetectApplicationMonitorResponseBody,
|
|
5688
|
+
};
|
|
5689
|
+
}
|
|
5690
|
+
|
|
5691
|
+
constructor(map?: { [key: string]: any }) {
|
|
5692
|
+
super(map);
|
|
5693
|
+
}
|
|
5694
|
+
}
|
|
5695
|
+
|
|
5696
|
+
export class DisableApplicationMonitorRequest extends $tea.Model {
|
|
5697
|
+
clientToken?: string;
|
|
5698
|
+
regionId?: string;
|
|
5699
|
+
taskId?: string;
|
|
5700
|
+
static names(): { [key: string]: string } {
|
|
5701
|
+
return {
|
|
5702
|
+
clientToken: 'ClientToken',
|
|
5703
|
+
regionId: 'RegionId',
|
|
5704
|
+
taskId: 'TaskId',
|
|
5705
|
+
};
|
|
5706
|
+
}
|
|
5707
|
+
|
|
5708
|
+
static types(): { [key: string]: any } {
|
|
5709
|
+
return {
|
|
5710
|
+
clientToken: 'string',
|
|
5711
|
+
regionId: 'string',
|
|
5712
|
+
taskId: 'string',
|
|
5713
|
+
};
|
|
5714
|
+
}
|
|
5715
|
+
|
|
5716
|
+
constructor(map?: { [key: string]: any }) {
|
|
5717
|
+
super(map);
|
|
5718
|
+
}
|
|
5719
|
+
}
|
|
5720
|
+
|
|
5721
|
+
export class DisableApplicationMonitorResponseBody extends $tea.Model {
|
|
5722
|
+
requestId?: string;
|
|
5723
|
+
static names(): { [key: string]: string } {
|
|
5724
|
+
return {
|
|
5725
|
+
requestId: 'RequestId',
|
|
5726
|
+
};
|
|
5727
|
+
}
|
|
5728
|
+
|
|
5729
|
+
static types(): { [key: string]: any } {
|
|
5730
|
+
return {
|
|
5731
|
+
requestId: 'string',
|
|
5732
|
+
};
|
|
5733
|
+
}
|
|
5734
|
+
|
|
5735
|
+
constructor(map?: { [key: string]: any }) {
|
|
5736
|
+
super(map);
|
|
5737
|
+
}
|
|
5738
|
+
}
|
|
5739
|
+
|
|
5740
|
+
export class DisableApplicationMonitorResponse extends $tea.Model {
|
|
5741
|
+
headers: { [key: string]: string };
|
|
5742
|
+
statusCode: number;
|
|
5743
|
+
body: DisableApplicationMonitorResponseBody;
|
|
5744
|
+
static names(): { [key: string]: string } {
|
|
5745
|
+
return {
|
|
5746
|
+
headers: 'headers',
|
|
5747
|
+
statusCode: 'statusCode',
|
|
5748
|
+
body: 'body',
|
|
5749
|
+
};
|
|
5750
|
+
}
|
|
5751
|
+
|
|
5752
|
+
static types(): { [key: string]: any } {
|
|
5753
|
+
return {
|
|
5754
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5755
|
+
statusCode: 'number',
|
|
5756
|
+
body: DisableApplicationMonitorResponseBody,
|
|
5757
|
+
};
|
|
5758
|
+
}
|
|
5759
|
+
|
|
5760
|
+
constructor(map?: { [key: string]: any }) {
|
|
5761
|
+
super(map);
|
|
5762
|
+
}
|
|
5763
|
+
}
|
|
5764
|
+
|
|
5765
|
+
export class DissociateAclsFromListenerRequest extends $tea.Model {
|
|
5766
|
+
aclIds?: string[];
|
|
5767
|
+
clientToken?: string;
|
|
5768
|
+
dryRun?: boolean;
|
|
5769
|
+
listenerId?: string;
|
|
5770
|
+
regionId?: string;
|
|
5771
|
+
static names(): { [key: string]: string } {
|
|
5772
|
+
return {
|
|
5773
|
+
aclIds: 'AclIds',
|
|
5774
|
+
clientToken: 'ClientToken',
|
|
5775
|
+
dryRun: 'DryRun',
|
|
5776
|
+
listenerId: 'ListenerId',
|
|
5777
|
+
regionId: 'RegionId',
|
|
5778
|
+
};
|
|
5779
|
+
}
|
|
5780
|
+
|
|
5781
|
+
static types(): { [key: string]: any } {
|
|
5782
|
+
return {
|
|
5783
|
+
aclIds: { 'type': 'array', 'itemType': 'string' },
|
|
5784
|
+
clientToken: 'string',
|
|
5785
|
+
dryRun: 'boolean',
|
|
5786
|
+
listenerId: 'string',
|
|
5787
|
+
regionId: 'string',
|
|
5788
|
+
};
|
|
5789
|
+
}
|
|
5790
|
+
|
|
5791
|
+
constructor(map?: { [key: string]: any }) {
|
|
5792
|
+
super(map);
|
|
5793
|
+
}
|
|
5794
|
+
}
|
|
5795
|
+
|
|
5796
|
+
export class DissociateAclsFromListenerResponseBody extends $tea.Model {
|
|
5797
|
+
aclIds?: string[];
|
|
5798
|
+
listenerId?: string;
|
|
5799
|
+
requestId?: string;
|
|
5800
|
+
static names(): { [key: string]: string } {
|
|
5801
|
+
return {
|
|
5802
|
+
aclIds: 'AclIds',
|
|
5803
|
+
listenerId: 'ListenerId',
|
|
5804
|
+
requestId: 'RequestId',
|
|
5805
|
+
};
|
|
5806
|
+
}
|
|
5807
|
+
|
|
5808
|
+
static types(): { [key: string]: any } {
|
|
5809
|
+
return {
|
|
5810
|
+
aclIds: { 'type': 'array', 'itemType': 'string' },
|
|
5811
|
+
listenerId: 'string',
|
|
5812
|
+
requestId: 'string',
|
|
5813
|
+
};
|
|
5814
|
+
}
|
|
5815
|
+
|
|
5816
|
+
constructor(map?: { [key: string]: any }) {
|
|
5817
|
+
super(map);
|
|
5818
|
+
}
|
|
5819
|
+
}
|
|
5820
|
+
|
|
5821
|
+
export class DissociateAclsFromListenerResponse extends $tea.Model {
|
|
5822
|
+
headers: { [key: string]: string };
|
|
5823
|
+
statusCode: number;
|
|
5824
|
+
body: DissociateAclsFromListenerResponseBody;
|
|
5825
|
+
static names(): { [key: string]: string } {
|
|
5826
|
+
return {
|
|
5827
|
+
headers: 'headers',
|
|
5828
|
+
statusCode: 'statusCode',
|
|
5829
|
+
body: 'body',
|
|
5830
|
+
};
|
|
5831
|
+
}
|
|
5832
|
+
|
|
5833
|
+
static types(): { [key: string]: any } {
|
|
5834
|
+
return {
|
|
5835
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5836
|
+
statusCode: 'number',
|
|
5837
|
+
body: DissociateAclsFromListenerResponseBody,
|
|
5838
|
+
};
|
|
5839
|
+
}
|
|
5840
|
+
|
|
5841
|
+
constructor(map?: { [key: string]: any }) {
|
|
5842
|
+
super(map);
|
|
5843
|
+
}
|
|
5844
|
+
}
|
|
5845
|
+
|
|
5846
|
+
export class DissociateAdditionalCertificatesFromListenerRequest extends $tea.Model {
|
|
5847
|
+
acceleratorId?: string;
|
|
5848
|
+
clientToken?: string;
|
|
5849
|
+
domains?: string[];
|
|
5850
|
+
listenerId?: string;
|
|
5851
|
+
regionId?: string;
|
|
5852
|
+
static names(): { [key: string]: string } {
|
|
5853
|
+
return {
|
|
5854
|
+
acceleratorId: 'AcceleratorId',
|
|
5855
|
+
clientToken: 'ClientToken',
|
|
5856
|
+
domains: 'Domains',
|
|
5857
|
+
listenerId: 'ListenerId',
|
|
5858
|
+
regionId: 'RegionId',
|
|
5859
|
+
};
|
|
5860
|
+
}
|
|
5861
|
+
|
|
5862
|
+
static types(): { [key: string]: any } {
|
|
5863
|
+
return {
|
|
5864
|
+
acceleratorId: 'string',
|
|
5865
|
+
clientToken: 'string',
|
|
5866
|
+
domains: { 'type': 'array', 'itemType': 'string' },
|
|
5867
|
+
listenerId: 'string',
|
|
5868
|
+
regionId: 'string',
|
|
4981
5869
|
};
|
|
4982
5870
|
}
|
|
4983
5871
|
|
|
@@ -4986,7 +5874,7 @@ export class DetectApplicationMonitorRequest extends $tea.Model {
|
|
|
4986
5874
|
}
|
|
4987
5875
|
}
|
|
4988
5876
|
|
|
4989
|
-
export class
|
|
5877
|
+
export class DissociateAdditionalCertificatesFromListenerResponseBody extends $tea.Model {
|
|
4990
5878
|
requestId?: string;
|
|
4991
5879
|
static names(): { [key: string]: string } {
|
|
4992
5880
|
return {
|
|
@@ -5005,10 +5893,10 @@ export class DetectApplicationMonitorResponseBody extends $tea.Model {
|
|
|
5005
5893
|
}
|
|
5006
5894
|
}
|
|
5007
5895
|
|
|
5008
|
-
export class
|
|
5896
|
+
export class DissociateAdditionalCertificatesFromListenerResponse extends $tea.Model {
|
|
5009
5897
|
headers: { [key: string]: string };
|
|
5010
5898
|
statusCode: number;
|
|
5011
|
-
body:
|
|
5899
|
+
body: DissociateAdditionalCertificatesFromListenerResponseBody;
|
|
5012
5900
|
static names(): { [key: string]: string } {
|
|
5013
5901
|
return {
|
|
5014
5902
|
headers: 'headers',
|
|
@@ -5021,7 +5909,7 @@ export class DetectApplicationMonitorResponse extends $tea.Model {
|
|
|
5021
5909
|
return {
|
|
5022
5910
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5023
5911
|
statusCode: 'number',
|
|
5024
|
-
body:
|
|
5912
|
+
body: DissociateAdditionalCertificatesFromListenerResponseBody,
|
|
5025
5913
|
};
|
|
5026
5914
|
}
|
|
5027
5915
|
|
|
@@ -5030,7 +5918,7 @@ export class DetectApplicationMonitorResponse extends $tea.Model {
|
|
|
5030
5918
|
}
|
|
5031
5919
|
}
|
|
5032
5920
|
|
|
5033
|
-
export class
|
|
5921
|
+
export class EnableApplicationMonitorRequest extends $tea.Model {
|
|
5034
5922
|
clientToken?: string;
|
|
5035
5923
|
regionId?: string;
|
|
5036
5924
|
taskId?: string;
|
|
@@ -5055,7 +5943,7 @@ export class DisableApplicationMonitorRequest extends $tea.Model {
|
|
|
5055
5943
|
}
|
|
5056
5944
|
}
|
|
5057
5945
|
|
|
5058
|
-
export class
|
|
5946
|
+
export class EnableApplicationMonitorResponseBody extends $tea.Model {
|
|
5059
5947
|
requestId?: string;
|
|
5060
5948
|
static names(): { [key: string]: string } {
|
|
5061
5949
|
return {
|
|
@@ -5074,10 +5962,10 @@ export class DisableApplicationMonitorResponseBody extends $tea.Model {
|
|
|
5074
5962
|
}
|
|
5075
5963
|
}
|
|
5076
5964
|
|
|
5077
|
-
export class
|
|
5965
|
+
export class EnableApplicationMonitorResponse extends $tea.Model {
|
|
5078
5966
|
headers: { [key: string]: string };
|
|
5079
5967
|
statusCode: number;
|
|
5080
|
-
body:
|
|
5968
|
+
body: EnableApplicationMonitorResponseBody;
|
|
5081
5969
|
static names(): { [key: string]: string } {
|
|
5082
5970
|
return {
|
|
5083
5971
|
headers: 'headers',
|
|
@@ -5090,7 +5978,7 @@ export class DisableApplicationMonitorResponse extends $tea.Model {
|
|
|
5090
5978
|
return {
|
|
5091
5979
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5092
5980
|
statusCode: 'number',
|
|
5093
|
-
body:
|
|
5981
|
+
body: EnableApplicationMonitorResponseBody,
|
|
5094
5982
|
};
|
|
5095
5983
|
}
|
|
5096
5984
|
|
|
@@ -5099,28 +5987,19 @@ export class DisableApplicationMonitorResponse extends $tea.Model {
|
|
|
5099
5987
|
}
|
|
5100
5988
|
}
|
|
5101
5989
|
|
|
5102
|
-
export class
|
|
5103
|
-
|
|
5104
|
-
clientToken?: string;
|
|
5105
|
-
dryRun?: boolean;
|
|
5106
|
-
listenerId?: string;
|
|
5990
|
+
export class GetAclRequest extends $tea.Model {
|
|
5991
|
+
aclId?: string;
|
|
5107
5992
|
regionId?: string;
|
|
5108
5993
|
static names(): { [key: string]: string } {
|
|
5109
5994
|
return {
|
|
5110
|
-
|
|
5111
|
-
clientToken: 'ClientToken',
|
|
5112
|
-
dryRun: 'DryRun',
|
|
5113
|
-
listenerId: 'ListenerId',
|
|
5995
|
+
aclId: 'AclId',
|
|
5114
5996
|
regionId: 'RegionId',
|
|
5115
5997
|
};
|
|
5116
5998
|
}
|
|
5117
5999
|
|
|
5118
6000
|
static types(): { [key: string]: any } {
|
|
5119
6001
|
return {
|
|
5120
|
-
|
|
5121
|
-
clientToken: 'string',
|
|
5122
|
-
dryRun: 'boolean',
|
|
5123
|
-
listenerId: 'string',
|
|
6002
|
+
aclId: 'string',
|
|
5124
6003
|
regionId: 'string',
|
|
5125
6004
|
};
|
|
5126
6005
|
}
|
|
@@ -5130,23 +6009,41 @@ export class DissociateAclsFromListenerRequest extends $tea.Model {
|
|
|
5130
6009
|
}
|
|
5131
6010
|
}
|
|
5132
6011
|
|
|
5133
|
-
export class
|
|
5134
|
-
|
|
5135
|
-
|
|
6012
|
+
export class GetAclResponseBody extends $tea.Model {
|
|
6013
|
+
aclEntries?: GetAclResponseBodyAclEntries[];
|
|
6014
|
+
aclId?: string;
|
|
6015
|
+
aclName?: string;
|
|
6016
|
+
aclStatus?: string;
|
|
6017
|
+
addressIPVersion?: string;
|
|
6018
|
+
relatedListeners?: GetAclResponseBodyRelatedListeners[];
|
|
5136
6019
|
requestId?: string;
|
|
6020
|
+
resourceGroupId?: string;
|
|
6021
|
+
tags?: GetAclResponseBodyTags[];
|
|
5137
6022
|
static names(): { [key: string]: string } {
|
|
5138
6023
|
return {
|
|
5139
|
-
|
|
5140
|
-
|
|
6024
|
+
aclEntries: 'AclEntries',
|
|
6025
|
+
aclId: 'AclId',
|
|
6026
|
+
aclName: 'AclName',
|
|
6027
|
+
aclStatus: 'AclStatus',
|
|
6028
|
+
addressIPVersion: 'AddressIPVersion',
|
|
6029
|
+
relatedListeners: 'RelatedListeners',
|
|
5141
6030
|
requestId: 'RequestId',
|
|
6031
|
+
resourceGroupId: 'ResourceGroupId',
|
|
6032
|
+
tags: 'Tags',
|
|
5142
6033
|
};
|
|
5143
6034
|
}
|
|
5144
6035
|
|
|
5145
6036
|
static types(): { [key: string]: any } {
|
|
5146
6037
|
return {
|
|
5147
|
-
|
|
5148
|
-
|
|
6038
|
+
aclEntries: { 'type': 'array', 'itemType': GetAclResponseBodyAclEntries },
|
|
6039
|
+
aclId: 'string',
|
|
6040
|
+
aclName: 'string',
|
|
6041
|
+
aclStatus: 'string',
|
|
6042
|
+
addressIPVersion: 'string',
|
|
6043
|
+
relatedListeners: { 'type': 'array', 'itemType': GetAclResponseBodyRelatedListeners },
|
|
5149
6044
|
requestId: 'string',
|
|
6045
|
+
resourceGroupId: 'string',
|
|
6046
|
+
tags: { 'type': 'array', 'itemType': GetAclResponseBodyTags },
|
|
5150
6047
|
};
|
|
5151
6048
|
}
|
|
5152
6049
|
|
|
@@ -5155,10 +6052,10 @@ export class DissociateAclsFromListenerResponseBody extends $tea.Model {
|
|
|
5155
6052
|
}
|
|
5156
6053
|
}
|
|
5157
6054
|
|
|
5158
|
-
export class
|
|
6055
|
+
export class GetAclResponse extends $tea.Model {
|
|
5159
6056
|
headers: { [key: string]: string };
|
|
5160
6057
|
statusCode: number;
|
|
5161
|
-
body:
|
|
6058
|
+
body: GetAclResponseBody;
|
|
5162
6059
|
static names(): { [key: string]: string } {
|
|
5163
6060
|
return {
|
|
5164
6061
|
headers: 'headers',
|
|
@@ -5171,7 +6068,7 @@ export class DissociateAclsFromListenerResponse extends $tea.Model {
|
|
|
5171
6068
|
return {
|
|
5172
6069
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5173
6070
|
statusCode: 'number',
|
|
5174
|
-
body:
|
|
6071
|
+
body: GetAclResponseBody,
|
|
5175
6072
|
};
|
|
5176
6073
|
}
|
|
5177
6074
|
|
|
@@ -5180,28 +6077,22 @@ export class DissociateAclsFromListenerResponse extends $tea.Model {
|
|
|
5180
6077
|
}
|
|
5181
6078
|
}
|
|
5182
6079
|
|
|
5183
|
-
export class
|
|
5184
|
-
|
|
6080
|
+
export class GetBasicAccelerateIpRequest extends $tea.Model {
|
|
6081
|
+
accelerateIpId?: string;
|
|
5185
6082
|
clientToken?: string;
|
|
5186
|
-
domains?: string[];
|
|
5187
|
-
listenerId?: string;
|
|
5188
6083
|
regionId?: string;
|
|
5189
6084
|
static names(): { [key: string]: string } {
|
|
5190
6085
|
return {
|
|
5191
|
-
|
|
6086
|
+
accelerateIpId: 'AccelerateIpId',
|
|
5192
6087
|
clientToken: 'ClientToken',
|
|
5193
|
-
domains: 'Domains',
|
|
5194
|
-
listenerId: 'ListenerId',
|
|
5195
6088
|
regionId: 'RegionId',
|
|
5196
6089
|
};
|
|
5197
6090
|
}
|
|
5198
6091
|
|
|
5199
6092
|
static types(): { [key: string]: any } {
|
|
5200
6093
|
return {
|
|
5201
|
-
|
|
6094
|
+
accelerateIpId: 'string',
|
|
5202
6095
|
clientToken: 'string',
|
|
5203
|
-
domains: { 'type': 'array', 'itemType': 'string' },
|
|
5204
|
-
listenerId: 'string',
|
|
5205
6096
|
regionId: 'string',
|
|
5206
6097
|
};
|
|
5207
6098
|
}
|
|
@@ -5211,17 +6102,32 @@ export class DissociateAdditionalCertificatesFromListenerRequest extends $tea.Mo
|
|
|
5211
6102
|
}
|
|
5212
6103
|
}
|
|
5213
6104
|
|
|
5214
|
-
export class
|
|
6105
|
+
export class GetBasicAccelerateIpResponseBody extends $tea.Model {
|
|
6106
|
+
accelerateIpAddress?: string;
|
|
6107
|
+
accelerateIpId?: string;
|
|
6108
|
+
acceleratorId?: string;
|
|
6109
|
+
ipSetId?: string;
|
|
5215
6110
|
requestId?: string;
|
|
6111
|
+
state?: string;
|
|
5216
6112
|
static names(): { [key: string]: string } {
|
|
5217
6113
|
return {
|
|
6114
|
+
accelerateIpAddress: 'AccelerateIpAddress',
|
|
6115
|
+
accelerateIpId: 'AccelerateIpId',
|
|
6116
|
+
acceleratorId: 'AcceleratorId',
|
|
6117
|
+
ipSetId: 'IpSetId',
|
|
5218
6118
|
requestId: 'RequestId',
|
|
6119
|
+
state: 'State',
|
|
5219
6120
|
};
|
|
5220
6121
|
}
|
|
5221
6122
|
|
|
5222
6123
|
static types(): { [key: string]: any } {
|
|
5223
6124
|
return {
|
|
6125
|
+
accelerateIpAddress: 'string',
|
|
6126
|
+
accelerateIpId: 'string',
|
|
6127
|
+
acceleratorId: 'string',
|
|
6128
|
+
ipSetId: 'string',
|
|
5224
6129
|
requestId: 'string',
|
|
6130
|
+
state: 'string',
|
|
5225
6131
|
};
|
|
5226
6132
|
}
|
|
5227
6133
|
|
|
@@ -5230,10 +6136,10 @@ export class DissociateAdditionalCertificatesFromListenerResponseBody extends $t
|
|
|
5230
6136
|
}
|
|
5231
6137
|
}
|
|
5232
6138
|
|
|
5233
|
-
export class
|
|
6139
|
+
export class GetBasicAccelerateIpResponse extends $tea.Model {
|
|
5234
6140
|
headers: { [key: string]: string };
|
|
5235
6141
|
statusCode: number;
|
|
5236
|
-
body:
|
|
6142
|
+
body: GetBasicAccelerateIpResponseBody;
|
|
5237
6143
|
static names(): { [key: string]: string } {
|
|
5238
6144
|
return {
|
|
5239
6145
|
headers: 'headers',
|
|
@@ -5246,7 +6152,7 @@ export class DissociateAdditionalCertificatesFromListenerResponse extends $tea.M
|
|
|
5246
6152
|
return {
|
|
5247
6153
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5248
6154
|
statusCode: 'number',
|
|
5249
|
-
body:
|
|
6155
|
+
body: GetBasicAccelerateIpResponseBody,
|
|
5250
6156
|
};
|
|
5251
6157
|
}
|
|
5252
6158
|
|
|
@@ -5255,23 +6161,29 @@ export class DissociateAdditionalCertificatesFromListenerResponse extends $tea.M
|
|
|
5255
6161
|
}
|
|
5256
6162
|
}
|
|
5257
6163
|
|
|
5258
|
-
export class
|
|
6164
|
+
export class GetBasicAccelerateIpEndpointRelationRequest extends $tea.Model {
|
|
6165
|
+
accelerateIpId?: string;
|
|
6166
|
+
acceleratorId?: string;
|
|
5259
6167
|
clientToken?: string;
|
|
6168
|
+
endpointId?: string;
|
|
5260
6169
|
regionId?: string;
|
|
5261
|
-
taskId?: string;
|
|
5262
6170
|
static names(): { [key: string]: string } {
|
|
5263
6171
|
return {
|
|
6172
|
+
accelerateIpId: 'AccelerateIpId',
|
|
6173
|
+
acceleratorId: 'AcceleratorId',
|
|
5264
6174
|
clientToken: 'ClientToken',
|
|
6175
|
+
endpointId: 'EndpointId',
|
|
5265
6176
|
regionId: 'RegionId',
|
|
5266
|
-
taskId: 'TaskId',
|
|
5267
6177
|
};
|
|
5268
6178
|
}
|
|
5269
6179
|
|
|
5270
6180
|
static types(): { [key: string]: any } {
|
|
5271
6181
|
return {
|
|
6182
|
+
accelerateIpId: 'string',
|
|
6183
|
+
acceleratorId: 'string',
|
|
5272
6184
|
clientToken: 'string',
|
|
6185
|
+
endpointId: 'string',
|
|
5273
6186
|
regionId: 'string',
|
|
5274
|
-
taskId: 'string',
|
|
5275
6187
|
};
|
|
5276
6188
|
}
|
|
5277
6189
|
|
|
@@ -5280,17 +6192,47 @@ export class EnableApplicationMonitorRequest extends $tea.Model {
|
|
|
5280
6192
|
}
|
|
5281
6193
|
}
|
|
5282
6194
|
|
|
5283
|
-
export class
|
|
6195
|
+
export class GetBasicAccelerateIpEndpointRelationResponseBody extends $tea.Model {
|
|
6196
|
+
accelerateIpId?: string;
|
|
6197
|
+
endpointAddress?: string;
|
|
6198
|
+
endpointId?: string;
|
|
6199
|
+
endpointName?: string;
|
|
6200
|
+
endpointSubAddress?: string;
|
|
6201
|
+
endpointSubAddressType?: string;
|
|
6202
|
+
endpointType?: string;
|
|
6203
|
+
endpointZoneId?: string;
|
|
6204
|
+
ipAddress?: string;
|
|
5284
6205
|
requestId?: string;
|
|
6206
|
+
state?: string;
|
|
5285
6207
|
static names(): { [key: string]: string } {
|
|
5286
6208
|
return {
|
|
6209
|
+
accelerateIpId: 'AccelerateIpId',
|
|
6210
|
+
endpointAddress: 'EndpointAddress',
|
|
6211
|
+
endpointId: 'EndpointId',
|
|
6212
|
+
endpointName: 'EndpointName',
|
|
6213
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
6214
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
6215
|
+
endpointType: 'EndpointType',
|
|
6216
|
+
endpointZoneId: 'EndpointZoneId',
|
|
6217
|
+
ipAddress: 'IpAddress',
|
|
5287
6218
|
requestId: 'RequestId',
|
|
6219
|
+
state: 'State',
|
|
5288
6220
|
};
|
|
5289
6221
|
}
|
|
5290
6222
|
|
|
5291
6223
|
static types(): { [key: string]: any } {
|
|
5292
6224
|
return {
|
|
6225
|
+
accelerateIpId: 'string',
|
|
6226
|
+
endpointAddress: 'string',
|
|
6227
|
+
endpointId: 'string',
|
|
6228
|
+
endpointName: 'string',
|
|
6229
|
+
endpointSubAddress: 'string',
|
|
6230
|
+
endpointSubAddressType: 'string',
|
|
6231
|
+
endpointType: 'string',
|
|
6232
|
+
endpointZoneId: 'string',
|
|
6233
|
+
ipAddress: 'string',
|
|
5293
6234
|
requestId: 'string',
|
|
6235
|
+
state: 'string',
|
|
5294
6236
|
};
|
|
5295
6237
|
}
|
|
5296
6238
|
|
|
@@ -5299,10 +6241,10 @@ export class EnableApplicationMonitorResponseBody extends $tea.Model {
|
|
|
5299
6241
|
}
|
|
5300
6242
|
}
|
|
5301
6243
|
|
|
5302
|
-
export class
|
|
6244
|
+
export class GetBasicAccelerateIpEndpointRelationResponse extends $tea.Model {
|
|
5303
6245
|
headers: { [key: string]: string };
|
|
5304
6246
|
statusCode: number;
|
|
5305
|
-
body:
|
|
6247
|
+
body: GetBasicAccelerateIpEndpointRelationResponseBody;
|
|
5306
6248
|
static names(): { [key: string]: string } {
|
|
5307
6249
|
return {
|
|
5308
6250
|
headers: 'headers',
|
|
@@ -5315,7 +6257,7 @@ export class EnableApplicationMonitorResponse extends $tea.Model {
|
|
|
5315
6257
|
return {
|
|
5316
6258
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5317
6259
|
statusCode: 'number',
|
|
5318
|
-
body:
|
|
6260
|
+
body: GetBasicAccelerateIpEndpointRelationResponseBody,
|
|
5319
6261
|
};
|
|
5320
6262
|
}
|
|
5321
6263
|
|
|
@@ -5324,19 +6266,22 @@ export class EnableApplicationMonitorResponse extends $tea.Model {
|
|
|
5324
6266
|
}
|
|
5325
6267
|
}
|
|
5326
6268
|
|
|
5327
|
-
export class
|
|
5328
|
-
|
|
6269
|
+
export class GetBasicAccelerateIpIdleCountRequest extends $tea.Model {
|
|
6270
|
+
clientToken?: string;
|
|
6271
|
+
ipSetId?: string;
|
|
5329
6272
|
regionId?: string;
|
|
5330
6273
|
static names(): { [key: string]: string } {
|
|
5331
6274
|
return {
|
|
5332
|
-
|
|
6275
|
+
clientToken: 'ClientToken',
|
|
6276
|
+
ipSetId: 'IpSetId',
|
|
5333
6277
|
regionId: 'RegionId',
|
|
5334
6278
|
};
|
|
5335
6279
|
}
|
|
5336
6280
|
|
|
5337
6281
|
static types(): { [key: string]: any } {
|
|
5338
6282
|
return {
|
|
5339
|
-
|
|
6283
|
+
clientToken: 'string',
|
|
6284
|
+
ipSetId: 'string',
|
|
5340
6285
|
regionId: 'string',
|
|
5341
6286
|
};
|
|
5342
6287
|
}
|
|
@@ -5346,41 +6291,20 @@ export class GetAclRequest extends $tea.Model {
|
|
|
5346
6291
|
}
|
|
5347
6292
|
}
|
|
5348
6293
|
|
|
5349
|
-
export class
|
|
5350
|
-
aclEntries?: GetAclResponseBodyAclEntries[];
|
|
5351
|
-
aclId?: string;
|
|
5352
|
-
aclName?: string;
|
|
5353
|
-
aclStatus?: string;
|
|
5354
|
-
addressIPVersion?: string;
|
|
5355
|
-
relatedListeners?: GetAclResponseBodyRelatedListeners[];
|
|
6294
|
+
export class GetBasicAccelerateIpIdleCountResponseBody extends $tea.Model {
|
|
5356
6295
|
requestId?: string;
|
|
5357
|
-
|
|
5358
|
-
tags?: GetAclResponseBodyTags[];
|
|
6296
|
+
totalCount?: number;
|
|
5359
6297
|
static names(): { [key: string]: string } {
|
|
5360
6298
|
return {
|
|
5361
|
-
aclEntries: 'AclEntries',
|
|
5362
|
-
aclId: 'AclId',
|
|
5363
|
-
aclName: 'AclName',
|
|
5364
|
-
aclStatus: 'AclStatus',
|
|
5365
|
-
addressIPVersion: 'AddressIPVersion',
|
|
5366
|
-
relatedListeners: 'RelatedListeners',
|
|
5367
6299
|
requestId: 'RequestId',
|
|
5368
|
-
|
|
5369
|
-
tags: 'Tags',
|
|
6300
|
+
totalCount: 'TotalCount',
|
|
5370
6301
|
};
|
|
5371
6302
|
}
|
|
5372
6303
|
|
|
5373
6304
|
static types(): { [key: string]: any } {
|
|
5374
6305
|
return {
|
|
5375
|
-
aclEntries: { 'type': 'array', 'itemType': GetAclResponseBodyAclEntries },
|
|
5376
|
-
aclId: 'string',
|
|
5377
|
-
aclName: 'string',
|
|
5378
|
-
aclStatus: 'string',
|
|
5379
|
-
addressIPVersion: 'string',
|
|
5380
|
-
relatedListeners: { 'type': 'array', 'itemType': GetAclResponseBodyRelatedListeners },
|
|
5381
6306
|
requestId: 'string',
|
|
5382
|
-
|
|
5383
|
-
tags: { 'type': 'array', 'itemType': GetAclResponseBodyTags },
|
|
6307
|
+
totalCount: 'number',
|
|
5384
6308
|
};
|
|
5385
6309
|
}
|
|
5386
6310
|
|
|
@@ -5389,10 +6313,10 @@ export class GetAclResponseBody extends $tea.Model {
|
|
|
5389
6313
|
}
|
|
5390
6314
|
}
|
|
5391
6315
|
|
|
5392
|
-
export class
|
|
6316
|
+
export class GetBasicAccelerateIpIdleCountResponse extends $tea.Model {
|
|
5393
6317
|
headers: { [key: string]: string };
|
|
5394
6318
|
statusCode: number;
|
|
5395
|
-
body:
|
|
6319
|
+
body: GetBasicAccelerateIpIdleCountResponseBody;
|
|
5396
6320
|
static names(): { [key: string]: string } {
|
|
5397
6321
|
return {
|
|
5398
6322
|
headers: 'headers',
|
|
@@ -5405,7 +6329,7 @@ export class GetAclResponse extends $tea.Model {
|
|
|
5405
6329
|
return {
|
|
5406
6330
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5407
6331
|
statusCode: 'number',
|
|
5408
|
-
body:
|
|
6332
|
+
body: GetBasicAccelerateIpIdleCountResponseBody,
|
|
5409
6333
|
};
|
|
5410
6334
|
}
|
|
5411
6335
|
|
|
@@ -5493,11 +6417,110 @@ export class GetBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
5493
6417
|
expiredTime: 'number',
|
|
5494
6418
|
instanceChargeType: 'string',
|
|
5495
6419
|
name: 'string',
|
|
5496
|
-
regionId: 'string',
|
|
6420
|
+
regionId: 'string',
|
|
6421
|
+
requestId: 'string',
|
|
6422
|
+
resourceGroupId: 'string',
|
|
6423
|
+
state: 'string',
|
|
6424
|
+
tags: { 'type': 'array', 'itemType': GetBasicAcceleratorResponseBodyTags },
|
|
6425
|
+
};
|
|
6426
|
+
}
|
|
6427
|
+
|
|
6428
|
+
constructor(map?: { [key: string]: any }) {
|
|
6429
|
+
super(map);
|
|
6430
|
+
}
|
|
6431
|
+
}
|
|
6432
|
+
|
|
6433
|
+
export class GetBasicAcceleratorResponse extends $tea.Model {
|
|
6434
|
+
headers: { [key: string]: string };
|
|
6435
|
+
statusCode: number;
|
|
6436
|
+
body: GetBasicAcceleratorResponseBody;
|
|
6437
|
+
static names(): { [key: string]: string } {
|
|
6438
|
+
return {
|
|
6439
|
+
headers: 'headers',
|
|
6440
|
+
statusCode: 'statusCode',
|
|
6441
|
+
body: 'body',
|
|
6442
|
+
};
|
|
6443
|
+
}
|
|
6444
|
+
|
|
6445
|
+
static types(): { [key: string]: any } {
|
|
6446
|
+
return {
|
|
6447
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6448
|
+
statusCode: 'number',
|
|
6449
|
+
body: GetBasicAcceleratorResponseBody,
|
|
6450
|
+
};
|
|
6451
|
+
}
|
|
6452
|
+
|
|
6453
|
+
constructor(map?: { [key: string]: any }) {
|
|
6454
|
+
super(map);
|
|
6455
|
+
}
|
|
6456
|
+
}
|
|
6457
|
+
|
|
6458
|
+
export class GetBasicEndpointRequest extends $tea.Model {
|
|
6459
|
+
clientToken?: string;
|
|
6460
|
+
endpointId?: string;
|
|
6461
|
+
regionId?: string;
|
|
6462
|
+
static names(): { [key: string]: string } {
|
|
6463
|
+
return {
|
|
6464
|
+
clientToken: 'ClientToken',
|
|
6465
|
+
endpointId: 'EndpointId',
|
|
6466
|
+
regionId: 'RegionId',
|
|
6467
|
+
};
|
|
6468
|
+
}
|
|
6469
|
+
|
|
6470
|
+
static types(): { [key: string]: any } {
|
|
6471
|
+
return {
|
|
6472
|
+
clientToken: 'string',
|
|
6473
|
+
endpointId: 'string',
|
|
6474
|
+
regionId: 'string',
|
|
6475
|
+
};
|
|
6476
|
+
}
|
|
6477
|
+
|
|
6478
|
+
constructor(map?: { [key: string]: any }) {
|
|
6479
|
+
super(map);
|
|
6480
|
+
}
|
|
6481
|
+
}
|
|
6482
|
+
|
|
6483
|
+
export class GetBasicEndpointResponseBody extends $tea.Model {
|
|
6484
|
+
acceleratorId?: string;
|
|
6485
|
+
endPointId?: string;
|
|
6486
|
+
endpointAddress?: string;
|
|
6487
|
+
endpointGroupId?: string;
|
|
6488
|
+
endpointSubAddress?: string;
|
|
6489
|
+
endpointSubAddressType?: string;
|
|
6490
|
+
endpointType?: string;
|
|
6491
|
+
endpointZoneId?: string;
|
|
6492
|
+
name?: string;
|
|
6493
|
+
requestId?: string;
|
|
6494
|
+
state?: string;
|
|
6495
|
+
static names(): { [key: string]: string } {
|
|
6496
|
+
return {
|
|
6497
|
+
acceleratorId: 'AcceleratorId',
|
|
6498
|
+
endPointId: 'EndPointId',
|
|
6499
|
+
endpointAddress: 'EndpointAddress',
|
|
6500
|
+
endpointGroupId: 'EndpointGroupId',
|
|
6501
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
6502
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
6503
|
+
endpointType: 'EndpointType',
|
|
6504
|
+
endpointZoneId: 'EndpointZoneId',
|
|
6505
|
+
name: 'Name',
|
|
6506
|
+
requestId: 'RequestId',
|
|
6507
|
+
state: 'State',
|
|
6508
|
+
};
|
|
6509
|
+
}
|
|
6510
|
+
|
|
6511
|
+
static types(): { [key: string]: any } {
|
|
6512
|
+
return {
|
|
6513
|
+
acceleratorId: 'string',
|
|
6514
|
+
endPointId: 'string',
|
|
6515
|
+
endpointAddress: 'string',
|
|
6516
|
+
endpointGroupId: 'string',
|
|
6517
|
+
endpointSubAddress: 'string',
|
|
6518
|
+
endpointSubAddressType: 'string',
|
|
6519
|
+
endpointType: 'string',
|
|
6520
|
+
endpointZoneId: 'string',
|
|
6521
|
+
name: 'string',
|
|
5497
6522
|
requestId: 'string',
|
|
5498
|
-
resourceGroupId: 'string',
|
|
5499
6523
|
state: 'string',
|
|
5500
|
-
tags: { 'type': 'array', 'itemType': GetBasicAcceleratorResponseBodyTags },
|
|
5501
6524
|
};
|
|
5502
6525
|
}
|
|
5503
6526
|
|
|
@@ -5506,10 +6529,10 @@ export class GetBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
5506
6529
|
}
|
|
5507
6530
|
}
|
|
5508
6531
|
|
|
5509
|
-
export class
|
|
6532
|
+
export class GetBasicEndpointResponse extends $tea.Model {
|
|
5510
6533
|
headers: { [key: string]: string };
|
|
5511
6534
|
statusCode: number;
|
|
5512
|
-
body:
|
|
6535
|
+
body: GetBasicEndpointResponseBody;
|
|
5513
6536
|
static names(): { [key: string]: string } {
|
|
5514
6537
|
return {
|
|
5515
6538
|
headers: 'headers',
|
|
@@ -5522,7 +6545,7 @@ export class GetBasicAcceleratorResponse extends $tea.Model {
|
|
|
5522
6545
|
return {
|
|
5523
6546
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5524
6547
|
statusCode: 'number',
|
|
5525
|
-
body:
|
|
6548
|
+
body: GetBasicEndpointResponseBody,
|
|
5526
6549
|
};
|
|
5527
6550
|
}
|
|
5528
6551
|
|
|
@@ -6497,9 +7520,276 @@ export class ListBandwidthPackagesResponseBody extends $tea.Model {
|
|
|
6497
7520
|
totalCount?: number;
|
|
6498
7521
|
static names(): { [key: string]: string } {
|
|
6499
7522
|
return {
|
|
6500
|
-
bandwidthPackages: 'BandwidthPackages',
|
|
6501
|
-
pageNumber: 'PageNumber',
|
|
6502
|
-
pageSize: 'PageSize',
|
|
7523
|
+
bandwidthPackages: 'BandwidthPackages',
|
|
7524
|
+
pageNumber: 'PageNumber',
|
|
7525
|
+
pageSize: 'PageSize',
|
|
7526
|
+
requestId: 'RequestId',
|
|
7527
|
+
totalCount: 'TotalCount',
|
|
7528
|
+
};
|
|
7529
|
+
}
|
|
7530
|
+
|
|
7531
|
+
static types(): { [key: string]: any } {
|
|
7532
|
+
return {
|
|
7533
|
+
bandwidthPackages: { 'type': 'array', 'itemType': ListBandwidthPackagesResponseBodyBandwidthPackages },
|
|
7534
|
+
pageNumber: 'number',
|
|
7535
|
+
pageSize: 'number',
|
|
7536
|
+
requestId: 'string',
|
|
7537
|
+
totalCount: 'number',
|
|
7538
|
+
};
|
|
7539
|
+
}
|
|
7540
|
+
|
|
7541
|
+
constructor(map?: { [key: string]: any }) {
|
|
7542
|
+
super(map);
|
|
7543
|
+
}
|
|
7544
|
+
}
|
|
7545
|
+
|
|
7546
|
+
export class ListBandwidthPackagesResponse extends $tea.Model {
|
|
7547
|
+
headers: { [key: string]: string };
|
|
7548
|
+
statusCode: number;
|
|
7549
|
+
body: ListBandwidthPackagesResponseBody;
|
|
7550
|
+
static names(): { [key: string]: string } {
|
|
7551
|
+
return {
|
|
7552
|
+
headers: 'headers',
|
|
7553
|
+
statusCode: 'statusCode',
|
|
7554
|
+
body: 'body',
|
|
7555
|
+
};
|
|
7556
|
+
}
|
|
7557
|
+
|
|
7558
|
+
static types(): { [key: string]: any } {
|
|
7559
|
+
return {
|
|
7560
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7561
|
+
statusCode: 'number',
|
|
7562
|
+
body: ListBandwidthPackagesResponseBody,
|
|
7563
|
+
};
|
|
7564
|
+
}
|
|
7565
|
+
|
|
7566
|
+
constructor(map?: { [key: string]: any }) {
|
|
7567
|
+
super(map);
|
|
7568
|
+
}
|
|
7569
|
+
}
|
|
7570
|
+
|
|
7571
|
+
export class ListBandwidthackagesRequest extends $tea.Model {
|
|
7572
|
+
pageNumber?: number;
|
|
7573
|
+
pageSize?: number;
|
|
7574
|
+
regionId?: string;
|
|
7575
|
+
static names(): { [key: string]: string } {
|
|
7576
|
+
return {
|
|
7577
|
+
pageNumber: 'PageNumber',
|
|
7578
|
+
pageSize: 'PageSize',
|
|
7579
|
+
regionId: 'RegionId',
|
|
7580
|
+
};
|
|
7581
|
+
}
|
|
7582
|
+
|
|
7583
|
+
static types(): { [key: string]: any } {
|
|
7584
|
+
return {
|
|
7585
|
+
pageNumber: 'number',
|
|
7586
|
+
pageSize: 'number',
|
|
7587
|
+
regionId: 'string',
|
|
7588
|
+
};
|
|
7589
|
+
}
|
|
7590
|
+
|
|
7591
|
+
constructor(map?: { [key: string]: any }) {
|
|
7592
|
+
super(map);
|
|
7593
|
+
}
|
|
7594
|
+
}
|
|
7595
|
+
|
|
7596
|
+
export class ListBandwidthackagesResponseBody extends $tea.Model {
|
|
7597
|
+
bandwidthPackages?: ListBandwidthackagesResponseBodyBandwidthPackages[];
|
|
7598
|
+
pageNumber?: number;
|
|
7599
|
+
pageSize?: number;
|
|
7600
|
+
requestId?: string;
|
|
7601
|
+
totalCount?: number;
|
|
7602
|
+
static names(): { [key: string]: string } {
|
|
7603
|
+
return {
|
|
7604
|
+
bandwidthPackages: 'BandwidthPackages',
|
|
7605
|
+
pageNumber: 'PageNumber',
|
|
7606
|
+
pageSize: 'PageSize',
|
|
7607
|
+
requestId: 'RequestId',
|
|
7608
|
+
totalCount: 'TotalCount',
|
|
7609
|
+
};
|
|
7610
|
+
}
|
|
7611
|
+
|
|
7612
|
+
static types(): { [key: string]: any } {
|
|
7613
|
+
return {
|
|
7614
|
+
bandwidthPackages: { 'type': 'array', 'itemType': ListBandwidthackagesResponseBodyBandwidthPackages },
|
|
7615
|
+
pageNumber: 'number',
|
|
7616
|
+
pageSize: 'number',
|
|
7617
|
+
requestId: 'string',
|
|
7618
|
+
totalCount: 'number',
|
|
7619
|
+
};
|
|
7620
|
+
}
|
|
7621
|
+
|
|
7622
|
+
constructor(map?: { [key: string]: any }) {
|
|
7623
|
+
super(map);
|
|
7624
|
+
}
|
|
7625
|
+
}
|
|
7626
|
+
|
|
7627
|
+
export class ListBandwidthackagesResponse extends $tea.Model {
|
|
7628
|
+
headers: { [key: string]: string };
|
|
7629
|
+
statusCode: number;
|
|
7630
|
+
body: ListBandwidthackagesResponseBody;
|
|
7631
|
+
static names(): { [key: string]: string } {
|
|
7632
|
+
return {
|
|
7633
|
+
headers: 'headers',
|
|
7634
|
+
statusCode: 'statusCode',
|
|
7635
|
+
body: 'body',
|
|
7636
|
+
};
|
|
7637
|
+
}
|
|
7638
|
+
|
|
7639
|
+
static types(): { [key: string]: any } {
|
|
7640
|
+
return {
|
|
7641
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7642
|
+
statusCode: 'number',
|
|
7643
|
+
body: ListBandwidthackagesResponseBody,
|
|
7644
|
+
};
|
|
7645
|
+
}
|
|
7646
|
+
|
|
7647
|
+
constructor(map?: { [key: string]: any }) {
|
|
7648
|
+
super(map);
|
|
7649
|
+
}
|
|
7650
|
+
}
|
|
7651
|
+
|
|
7652
|
+
export class ListBasicAccelerateIpEndpointRelationsRequest extends $tea.Model {
|
|
7653
|
+
accelerateIpId?: string;
|
|
7654
|
+
acceleratorId?: string;
|
|
7655
|
+
clientToken?: string;
|
|
7656
|
+
endpointId?: string;
|
|
7657
|
+
maxResults?: number;
|
|
7658
|
+
nextToken?: string;
|
|
7659
|
+
regionId?: string;
|
|
7660
|
+
static names(): { [key: string]: string } {
|
|
7661
|
+
return {
|
|
7662
|
+
accelerateIpId: 'AccelerateIpId',
|
|
7663
|
+
acceleratorId: 'AcceleratorId',
|
|
7664
|
+
clientToken: 'ClientToken',
|
|
7665
|
+
endpointId: 'EndpointId',
|
|
7666
|
+
maxResults: 'MaxResults',
|
|
7667
|
+
nextToken: 'NextToken',
|
|
7668
|
+
regionId: 'RegionId',
|
|
7669
|
+
};
|
|
7670
|
+
}
|
|
7671
|
+
|
|
7672
|
+
static types(): { [key: string]: any } {
|
|
7673
|
+
return {
|
|
7674
|
+
accelerateIpId: 'string',
|
|
7675
|
+
acceleratorId: 'string',
|
|
7676
|
+
clientToken: 'string',
|
|
7677
|
+
endpointId: 'string',
|
|
7678
|
+
maxResults: 'number',
|
|
7679
|
+
nextToken: 'string',
|
|
7680
|
+
regionId: 'string',
|
|
7681
|
+
};
|
|
7682
|
+
}
|
|
7683
|
+
|
|
7684
|
+
constructor(map?: { [key: string]: any }) {
|
|
7685
|
+
super(map);
|
|
7686
|
+
}
|
|
7687
|
+
}
|
|
7688
|
+
|
|
7689
|
+
export class ListBasicAccelerateIpEndpointRelationsResponseBody extends $tea.Model {
|
|
7690
|
+
accelerateIpEndpointRelations?: ListBasicAccelerateIpEndpointRelationsResponseBodyAccelerateIpEndpointRelations[];
|
|
7691
|
+
maxResults?: string;
|
|
7692
|
+
nextToken?: string;
|
|
7693
|
+
requestId?: string;
|
|
7694
|
+
totalCount?: string;
|
|
7695
|
+
static names(): { [key: string]: string } {
|
|
7696
|
+
return {
|
|
7697
|
+
accelerateIpEndpointRelations: 'AccelerateIpEndpointRelations',
|
|
7698
|
+
maxResults: 'MaxResults',
|
|
7699
|
+
nextToken: 'NextToken',
|
|
7700
|
+
requestId: 'RequestId',
|
|
7701
|
+
totalCount: 'TotalCount',
|
|
7702
|
+
};
|
|
7703
|
+
}
|
|
7704
|
+
|
|
7705
|
+
static types(): { [key: string]: any } {
|
|
7706
|
+
return {
|
|
7707
|
+
accelerateIpEndpointRelations: { 'type': 'array', 'itemType': ListBasicAccelerateIpEndpointRelationsResponseBodyAccelerateIpEndpointRelations },
|
|
7708
|
+
maxResults: 'string',
|
|
7709
|
+
nextToken: 'string',
|
|
7710
|
+
requestId: 'string',
|
|
7711
|
+
totalCount: 'string',
|
|
7712
|
+
};
|
|
7713
|
+
}
|
|
7714
|
+
|
|
7715
|
+
constructor(map?: { [key: string]: any }) {
|
|
7716
|
+
super(map);
|
|
7717
|
+
}
|
|
7718
|
+
}
|
|
7719
|
+
|
|
7720
|
+
export class ListBasicAccelerateIpEndpointRelationsResponse extends $tea.Model {
|
|
7721
|
+
headers: { [key: string]: string };
|
|
7722
|
+
statusCode: number;
|
|
7723
|
+
body: ListBasicAccelerateIpEndpointRelationsResponseBody;
|
|
7724
|
+
static names(): { [key: string]: string } {
|
|
7725
|
+
return {
|
|
7726
|
+
headers: 'headers',
|
|
7727
|
+
statusCode: 'statusCode',
|
|
7728
|
+
body: 'body',
|
|
7729
|
+
};
|
|
7730
|
+
}
|
|
7731
|
+
|
|
7732
|
+
static types(): { [key: string]: any } {
|
|
7733
|
+
return {
|
|
7734
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
7735
|
+
statusCode: 'number',
|
|
7736
|
+
body: ListBasicAccelerateIpEndpointRelationsResponseBody,
|
|
7737
|
+
};
|
|
7738
|
+
}
|
|
7739
|
+
|
|
7740
|
+
constructor(map?: { [key: string]: any }) {
|
|
7741
|
+
super(map);
|
|
7742
|
+
}
|
|
7743
|
+
}
|
|
7744
|
+
|
|
7745
|
+
export class ListBasicAccelerateIpsRequest extends $tea.Model {
|
|
7746
|
+
accelerateIpAddress?: string;
|
|
7747
|
+
accelerateIpId?: string;
|
|
7748
|
+
clientToken?: string;
|
|
7749
|
+
ipSetId?: string;
|
|
7750
|
+
maxResults?: number;
|
|
7751
|
+
nextToken?: string;
|
|
7752
|
+
regionId?: string;
|
|
7753
|
+
static names(): { [key: string]: string } {
|
|
7754
|
+
return {
|
|
7755
|
+
accelerateIpAddress: 'AccelerateIpAddress',
|
|
7756
|
+
accelerateIpId: 'AccelerateIpId',
|
|
7757
|
+
clientToken: 'ClientToken',
|
|
7758
|
+
ipSetId: 'IpSetId',
|
|
7759
|
+
maxResults: 'MaxResults',
|
|
7760
|
+
nextToken: 'NextToken',
|
|
7761
|
+
regionId: 'RegionId',
|
|
7762
|
+
};
|
|
7763
|
+
}
|
|
7764
|
+
|
|
7765
|
+
static types(): { [key: string]: any } {
|
|
7766
|
+
return {
|
|
7767
|
+
accelerateIpAddress: 'string',
|
|
7768
|
+
accelerateIpId: 'string',
|
|
7769
|
+
clientToken: 'string',
|
|
7770
|
+
ipSetId: 'string',
|
|
7771
|
+
maxResults: 'number',
|
|
7772
|
+
nextToken: 'string',
|
|
7773
|
+
regionId: 'string',
|
|
7774
|
+
};
|
|
7775
|
+
}
|
|
7776
|
+
|
|
7777
|
+
constructor(map?: { [key: string]: any }) {
|
|
7778
|
+
super(map);
|
|
7779
|
+
}
|
|
7780
|
+
}
|
|
7781
|
+
|
|
7782
|
+
export class ListBasicAccelerateIpsResponseBody extends $tea.Model {
|
|
7783
|
+
accelerateIps?: ListBasicAccelerateIpsResponseBodyAccelerateIps[];
|
|
7784
|
+
maxResults?: number;
|
|
7785
|
+
nextToken?: string;
|
|
7786
|
+
requestId?: string;
|
|
7787
|
+
totalCount?: number;
|
|
7788
|
+
static names(): { [key: string]: string } {
|
|
7789
|
+
return {
|
|
7790
|
+
accelerateIps: 'AccelerateIps',
|
|
7791
|
+
maxResults: 'MaxResults',
|
|
7792
|
+
nextToken: 'NextToken',
|
|
6503
7793
|
requestId: 'RequestId',
|
|
6504
7794
|
totalCount: 'TotalCount',
|
|
6505
7795
|
};
|
|
@@ -6507,9 +7797,9 @@ export class ListBandwidthPackagesResponseBody extends $tea.Model {
|
|
|
6507
7797
|
|
|
6508
7798
|
static types(): { [key: string]: any } {
|
|
6509
7799
|
return {
|
|
6510
|
-
|
|
6511
|
-
|
|
6512
|
-
|
|
7800
|
+
accelerateIps: { 'type': 'array', 'itemType': ListBasicAccelerateIpsResponseBodyAccelerateIps },
|
|
7801
|
+
maxResults: 'number',
|
|
7802
|
+
nextToken: 'string',
|
|
6513
7803
|
requestId: 'string',
|
|
6514
7804
|
totalCount: 'number',
|
|
6515
7805
|
};
|
|
@@ -6520,10 +7810,10 @@ export class ListBandwidthPackagesResponseBody extends $tea.Model {
|
|
|
6520
7810
|
}
|
|
6521
7811
|
}
|
|
6522
7812
|
|
|
6523
|
-
export class
|
|
7813
|
+
export class ListBasicAccelerateIpsResponse extends $tea.Model {
|
|
6524
7814
|
headers: { [key: string]: string };
|
|
6525
7815
|
statusCode: number;
|
|
6526
|
-
body:
|
|
7816
|
+
body: ListBasicAccelerateIpsResponseBody;
|
|
6527
7817
|
static names(): { [key: string]: string } {
|
|
6528
7818
|
return {
|
|
6529
7819
|
headers: 'headers',
|
|
@@ -6536,7 +7826,7 @@ export class ListBandwidthPackagesResponse extends $tea.Model {
|
|
|
6536
7826
|
return {
|
|
6537
7827
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6538
7828
|
statusCode: 'number',
|
|
6539
|
-
body:
|
|
7829
|
+
body: ListBasicAccelerateIpsResponseBody,
|
|
6540
7830
|
};
|
|
6541
7831
|
}
|
|
6542
7832
|
|
|
@@ -6545,23 +7835,35 @@ export class ListBandwidthPackagesResponse extends $tea.Model {
|
|
|
6545
7835
|
}
|
|
6546
7836
|
}
|
|
6547
7837
|
|
|
6548
|
-
export class
|
|
7838
|
+
export class ListBasicAcceleratorsRequest extends $tea.Model {
|
|
7839
|
+
acceleratorId?: string;
|
|
6549
7840
|
pageNumber?: number;
|
|
6550
7841
|
pageSize?: number;
|
|
6551
7842
|
regionId?: string;
|
|
7843
|
+
resourceGroupId?: string;
|
|
7844
|
+
state?: string;
|
|
7845
|
+
tag?: ListBasicAcceleratorsRequestTag[];
|
|
6552
7846
|
static names(): { [key: string]: string } {
|
|
6553
7847
|
return {
|
|
7848
|
+
acceleratorId: 'AcceleratorId',
|
|
6554
7849
|
pageNumber: 'PageNumber',
|
|
6555
7850
|
pageSize: 'PageSize',
|
|
6556
7851
|
regionId: 'RegionId',
|
|
7852
|
+
resourceGroupId: 'ResourceGroupId',
|
|
7853
|
+
state: 'State',
|
|
7854
|
+
tag: 'Tag',
|
|
6557
7855
|
};
|
|
6558
7856
|
}
|
|
6559
7857
|
|
|
6560
7858
|
static types(): { [key: string]: any } {
|
|
6561
7859
|
return {
|
|
7860
|
+
acceleratorId: 'string',
|
|
6562
7861
|
pageNumber: 'number',
|
|
6563
7862
|
pageSize: 'number',
|
|
6564
7863
|
regionId: 'string',
|
|
7864
|
+
resourceGroupId: 'string',
|
|
7865
|
+
state: 'string',
|
|
7866
|
+
tag: { 'type': 'array', 'itemType': ListBasicAcceleratorsRequestTag },
|
|
6565
7867
|
};
|
|
6566
7868
|
}
|
|
6567
7869
|
|
|
@@ -6570,15 +7872,15 @@ export class ListBandwidthackagesRequest extends $tea.Model {
|
|
|
6570
7872
|
}
|
|
6571
7873
|
}
|
|
6572
7874
|
|
|
6573
|
-
export class
|
|
6574
|
-
|
|
7875
|
+
export class ListBasicAcceleratorsResponseBody extends $tea.Model {
|
|
7876
|
+
accelerators?: ListBasicAcceleratorsResponseBodyAccelerators[];
|
|
6575
7877
|
pageNumber?: number;
|
|
6576
7878
|
pageSize?: number;
|
|
6577
7879
|
requestId?: string;
|
|
6578
7880
|
totalCount?: number;
|
|
6579
7881
|
static names(): { [key: string]: string } {
|
|
6580
7882
|
return {
|
|
6581
|
-
|
|
7883
|
+
accelerators: 'Accelerators',
|
|
6582
7884
|
pageNumber: 'PageNumber',
|
|
6583
7885
|
pageSize: 'PageSize',
|
|
6584
7886
|
requestId: 'RequestId',
|
|
@@ -6588,7 +7890,7 @@ export class ListBandwidthackagesResponseBody extends $tea.Model {
|
|
|
6588
7890
|
|
|
6589
7891
|
static types(): { [key: string]: any } {
|
|
6590
7892
|
return {
|
|
6591
|
-
|
|
7893
|
+
accelerators: { 'type': 'array', 'itemType': ListBasicAcceleratorsResponseBodyAccelerators },
|
|
6592
7894
|
pageNumber: 'number',
|
|
6593
7895
|
pageSize: 'number',
|
|
6594
7896
|
requestId: 'string',
|
|
@@ -6601,10 +7903,10 @@ export class ListBandwidthackagesResponseBody extends $tea.Model {
|
|
|
6601
7903
|
}
|
|
6602
7904
|
}
|
|
6603
7905
|
|
|
6604
|
-
export class
|
|
7906
|
+
export class ListBasicAcceleratorsResponse extends $tea.Model {
|
|
6605
7907
|
headers: { [key: string]: string };
|
|
6606
7908
|
statusCode: number;
|
|
6607
|
-
body:
|
|
7909
|
+
body: ListBasicAcceleratorsResponseBody;
|
|
6608
7910
|
static names(): { [key: string]: string } {
|
|
6609
7911
|
return {
|
|
6610
7912
|
headers: 'headers',
|
|
@@ -6617,7 +7919,7 @@ export class ListBandwidthackagesResponse extends $tea.Model {
|
|
|
6617
7919
|
return {
|
|
6618
7920
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6619
7921
|
statusCode: 'number',
|
|
6620
|
-
body:
|
|
7922
|
+
body: ListBasicAcceleratorsResponseBody,
|
|
6621
7923
|
};
|
|
6622
7924
|
}
|
|
6623
7925
|
|
|
@@ -6626,35 +7928,38 @@ export class ListBandwidthackagesResponse extends $tea.Model {
|
|
|
6626
7928
|
}
|
|
6627
7929
|
}
|
|
6628
7930
|
|
|
6629
|
-
export class
|
|
6630
|
-
|
|
6631
|
-
|
|
6632
|
-
|
|
7931
|
+
export class ListBasicEndpointsRequest extends $tea.Model {
|
|
7932
|
+
clientToken?: string;
|
|
7933
|
+
endpointGroupId?: string;
|
|
7934
|
+
endpointId?: string;
|
|
7935
|
+
endpointType?: string;
|
|
7936
|
+
maxResults?: number;
|
|
7937
|
+
name?: string;
|
|
7938
|
+
nextToken?: string;
|
|
6633
7939
|
regionId?: string;
|
|
6634
|
-
resourceGroupId?: string;
|
|
6635
|
-
state?: string;
|
|
6636
|
-
tag?: ListBasicAcceleratorsRequestTag[];
|
|
6637
7940
|
static names(): { [key: string]: string } {
|
|
6638
7941
|
return {
|
|
6639
|
-
|
|
6640
|
-
|
|
6641
|
-
|
|
7942
|
+
clientToken: 'ClientToken',
|
|
7943
|
+
endpointGroupId: 'EndpointGroupId',
|
|
7944
|
+
endpointId: 'EndpointId',
|
|
7945
|
+
endpointType: 'EndpointType',
|
|
7946
|
+
maxResults: 'MaxResults',
|
|
7947
|
+
name: 'Name',
|
|
7948
|
+
nextToken: 'NextToken',
|
|
6642
7949
|
regionId: 'RegionId',
|
|
6643
|
-
resourceGroupId: 'ResourceGroupId',
|
|
6644
|
-
state: 'State',
|
|
6645
|
-
tag: 'Tag',
|
|
6646
7950
|
};
|
|
6647
7951
|
}
|
|
6648
7952
|
|
|
6649
7953
|
static types(): { [key: string]: any } {
|
|
6650
7954
|
return {
|
|
6651
|
-
|
|
6652
|
-
|
|
6653
|
-
|
|
7955
|
+
clientToken: 'string',
|
|
7956
|
+
endpointGroupId: 'string',
|
|
7957
|
+
endpointId: 'string',
|
|
7958
|
+
endpointType: 'string',
|
|
7959
|
+
maxResults: 'number',
|
|
7960
|
+
name: 'string',
|
|
7961
|
+
nextToken: 'string',
|
|
6654
7962
|
regionId: 'string',
|
|
6655
|
-
resourceGroupId: 'string',
|
|
6656
|
-
state: 'string',
|
|
6657
|
-
tag: { 'type': 'array', 'itemType': ListBasicAcceleratorsRequestTag },
|
|
6658
7963
|
};
|
|
6659
7964
|
}
|
|
6660
7965
|
|
|
@@ -6663,17 +7968,17 @@ export class ListBasicAcceleratorsRequest extends $tea.Model {
|
|
|
6663
7968
|
}
|
|
6664
7969
|
}
|
|
6665
7970
|
|
|
6666
|
-
export class
|
|
6667
|
-
|
|
6668
|
-
|
|
6669
|
-
|
|
7971
|
+
export class ListBasicEndpointsResponseBody extends $tea.Model {
|
|
7972
|
+
endpoints?: ListBasicEndpointsResponseBodyEndpoints[];
|
|
7973
|
+
maxResults?: string;
|
|
7974
|
+
nextToken?: string;
|
|
6670
7975
|
requestId?: string;
|
|
6671
|
-
totalCount?:
|
|
7976
|
+
totalCount?: string;
|
|
6672
7977
|
static names(): { [key: string]: string } {
|
|
6673
7978
|
return {
|
|
6674
|
-
|
|
6675
|
-
|
|
6676
|
-
|
|
7979
|
+
endpoints: 'Endpoints',
|
|
7980
|
+
maxResults: 'MaxResults',
|
|
7981
|
+
nextToken: 'NextToken',
|
|
6677
7982
|
requestId: 'RequestId',
|
|
6678
7983
|
totalCount: 'TotalCount',
|
|
6679
7984
|
};
|
|
@@ -6681,11 +7986,11 @@ export class ListBasicAcceleratorsResponseBody extends $tea.Model {
|
|
|
6681
7986
|
|
|
6682
7987
|
static types(): { [key: string]: any } {
|
|
6683
7988
|
return {
|
|
6684
|
-
|
|
6685
|
-
|
|
6686
|
-
|
|
7989
|
+
endpoints: { 'type': 'array', 'itemType': ListBasicEndpointsResponseBodyEndpoints },
|
|
7990
|
+
maxResults: 'string',
|
|
7991
|
+
nextToken: 'string',
|
|
6687
7992
|
requestId: 'string',
|
|
6688
|
-
totalCount: '
|
|
7993
|
+
totalCount: 'string',
|
|
6689
7994
|
};
|
|
6690
7995
|
}
|
|
6691
7996
|
|
|
@@ -6694,10 +7999,10 @@ export class ListBasicAcceleratorsResponseBody extends $tea.Model {
|
|
|
6694
7999
|
}
|
|
6695
8000
|
}
|
|
6696
8001
|
|
|
6697
|
-
export class
|
|
8002
|
+
export class ListBasicEndpointsResponse extends $tea.Model {
|
|
6698
8003
|
headers: { [key: string]: string };
|
|
6699
8004
|
statusCode: number;
|
|
6700
|
-
body:
|
|
8005
|
+
body: ListBasicEndpointsResponseBody;
|
|
6701
8006
|
static names(): { [key: string]: string } {
|
|
6702
8007
|
return {
|
|
6703
8008
|
headers: 'headers',
|
|
@@ -6710,7 +8015,7 @@ export class ListBasicAcceleratorsResponse extends $tea.Model {
|
|
|
6710
8015
|
return {
|
|
6711
8016
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6712
8017
|
statusCode: 'number',
|
|
6713
|
-
body:
|
|
8018
|
+
body: ListBasicEndpointsResponseBody,
|
|
6714
8019
|
};
|
|
6715
8020
|
}
|
|
6716
8021
|
|
|
@@ -7346,6 +8651,7 @@ export class ListEndpointGroupsRequest extends $tea.Model {
|
|
|
7346
8651
|
pageNumber?: number;
|
|
7347
8652
|
pageSize?: number;
|
|
7348
8653
|
regionId?: string;
|
|
8654
|
+
tag?: ListEndpointGroupsRequestTag[];
|
|
7349
8655
|
static names(): { [key: string]: string } {
|
|
7350
8656
|
return {
|
|
7351
8657
|
acceleratorId: 'AcceleratorId',
|
|
@@ -7356,6 +8662,7 @@ export class ListEndpointGroupsRequest extends $tea.Model {
|
|
|
7356
8662
|
pageNumber: 'PageNumber',
|
|
7357
8663
|
pageSize: 'PageSize',
|
|
7358
8664
|
regionId: 'RegionId',
|
|
8665
|
+
tag: 'Tag',
|
|
7359
8666
|
};
|
|
7360
8667
|
}
|
|
7361
8668
|
|
|
@@ -7369,6 +8676,7 @@ export class ListEndpointGroupsRequest extends $tea.Model {
|
|
|
7369
8676
|
pageNumber: 'number',
|
|
7370
8677
|
pageSize: 'number',
|
|
7371
8678
|
regionId: 'string',
|
|
8679
|
+
tag: { 'type': 'array', 'itemType': ListEndpointGroupsRequestTag },
|
|
7372
8680
|
};
|
|
7373
8681
|
}
|
|
7374
8682
|
|
|
@@ -8402,6 +9710,90 @@ export class UpdateAclAttributeResponse extends $tea.Model {
|
|
|
8402
9710
|
}
|
|
8403
9711
|
}
|
|
8404
9712
|
|
|
9713
|
+
export class UpdateAdditionalCertificateWithListenerRequest extends $tea.Model {
|
|
9714
|
+
acceleratorId?: string;
|
|
9715
|
+
certificateId?: string;
|
|
9716
|
+
clientToken?: string;
|
|
9717
|
+
domain?: string;
|
|
9718
|
+
dryRun?: boolean;
|
|
9719
|
+
listenerId?: string;
|
|
9720
|
+
regionId?: string;
|
|
9721
|
+
static names(): { [key: string]: string } {
|
|
9722
|
+
return {
|
|
9723
|
+
acceleratorId: 'AcceleratorId',
|
|
9724
|
+
certificateId: 'CertificateId',
|
|
9725
|
+
clientToken: 'ClientToken',
|
|
9726
|
+
domain: 'Domain',
|
|
9727
|
+
dryRun: 'DryRun',
|
|
9728
|
+
listenerId: 'ListenerId',
|
|
9729
|
+
regionId: 'RegionId',
|
|
9730
|
+
};
|
|
9731
|
+
}
|
|
9732
|
+
|
|
9733
|
+
static types(): { [key: string]: any } {
|
|
9734
|
+
return {
|
|
9735
|
+
acceleratorId: 'string',
|
|
9736
|
+
certificateId: 'string',
|
|
9737
|
+
clientToken: 'string',
|
|
9738
|
+
domain: 'string',
|
|
9739
|
+
dryRun: 'boolean',
|
|
9740
|
+
listenerId: 'string',
|
|
9741
|
+
regionId: 'string',
|
|
9742
|
+
};
|
|
9743
|
+
}
|
|
9744
|
+
|
|
9745
|
+
constructor(map?: { [key: string]: any }) {
|
|
9746
|
+
super(map);
|
|
9747
|
+
}
|
|
9748
|
+
}
|
|
9749
|
+
|
|
9750
|
+
export class UpdateAdditionalCertificateWithListenerResponseBody extends $tea.Model {
|
|
9751
|
+
listenerId?: string;
|
|
9752
|
+
requestId?: string;
|
|
9753
|
+
static names(): { [key: string]: string } {
|
|
9754
|
+
return {
|
|
9755
|
+
listenerId: 'ListenerId',
|
|
9756
|
+
requestId: 'RequestId',
|
|
9757
|
+
};
|
|
9758
|
+
}
|
|
9759
|
+
|
|
9760
|
+
static types(): { [key: string]: any } {
|
|
9761
|
+
return {
|
|
9762
|
+
listenerId: 'string',
|
|
9763
|
+
requestId: 'string',
|
|
9764
|
+
};
|
|
9765
|
+
}
|
|
9766
|
+
|
|
9767
|
+
constructor(map?: { [key: string]: any }) {
|
|
9768
|
+
super(map);
|
|
9769
|
+
}
|
|
9770
|
+
}
|
|
9771
|
+
|
|
9772
|
+
export class UpdateAdditionalCertificateWithListenerResponse extends $tea.Model {
|
|
9773
|
+
headers: { [key: string]: string };
|
|
9774
|
+
statusCode: number;
|
|
9775
|
+
body: UpdateAdditionalCertificateWithListenerResponseBody;
|
|
9776
|
+
static names(): { [key: string]: string } {
|
|
9777
|
+
return {
|
|
9778
|
+
headers: 'headers',
|
|
9779
|
+
statusCode: 'statusCode',
|
|
9780
|
+
body: 'body',
|
|
9781
|
+
};
|
|
9782
|
+
}
|
|
9783
|
+
|
|
9784
|
+
static types(): { [key: string]: any } {
|
|
9785
|
+
return {
|
|
9786
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9787
|
+
statusCode: 'number',
|
|
9788
|
+
body: UpdateAdditionalCertificateWithListenerResponseBody,
|
|
9789
|
+
};
|
|
9790
|
+
}
|
|
9791
|
+
|
|
9792
|
+
constructor(map?: { [key: string]: any }) {
|
|
9793
|
+
super(map);
|
|
9794
|
+
}
|
|
9795
|
+
}
|
|
9796
|
+
|
|
8405
9797
|
export class UpdateApplicationMonitorRequest extends $tea.Model {
|
|
8406
9798
|
address?: string;
|
|
8407
9799
|
clientToken?: string;
|
|
@@ -8647,10 +10039,85 @@ export class UpdateBandwidthPackageResponseBody extends $tea.Model {
|
|
|
8647
10039
|
}
|
|
8648
10040
|
}
|
|
8649
10041
|
|
|
8650
|
-
export class UpdateBandwidthPackageResponse extends $tea.Model {
|
|
10042
|
+
export class UpdateBandwidthPackageResponse extends $tea.Model {
|
|
10043
|
+
headers: { [key: string]: string };
|
|
10044
|
+
statusCode: number;
|
|
10045
|
+
body: UpdateBandwidthPackageResponseBody;
|
|
10046
|
+
static names(): { [key: string]: string } {
|
|
10047
|
+
return {
|
|
10048
|
+
headers: 'headers',
|
|
10049
|
+
statusCode: 'statusCode',
|
|
10050
|
+
body: 'body',
|
|
10051
|
+
};
|
|
10052
|
+
}
|
|
10053
|
+
|
|
10054
|
+
static types(): { [key: string]: any } {
|
|
10055
|
+
return {
|
|
10056
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
10057
|
+
statusCode: 'number',
|
|
10058
|
+
body: UpdateBandwidthPackageResponseBody,
|
|
10059
|
+
};
|
|
10060
|
+
}
|
|
10061
|
+
|
|
10062
|
+
constructor(map?: { [key: string]: any }) {
|
|
10063
|
+
super(map);
|
|
10064
|
+
}
|
|
10065
|
+
}
|
|
10066
|
+
|
|
10067
|
+
export class UpdateBasicAcceleratorRequest extends $tea.Model {
|
|
10068
|
+
acceleratorId?: string;
|
|
10069
|
+
clientToken?: string;
|
|
10070
|
+
description?: string;
|
|
10071
|
+
name?: string;
|
|
10072
|
+
regionId?: string;
|
|
10073
|
+
static names(): { [key: string]: string } {
|
|
10074
|
+
return {
|
|
10075
|
+
acceleratorId: 'AcceleratorId',
|
|
10076
|
+
clientToken: 'ClientToken',
|
|
10077
|
+
description: 'Description',
|
|
10078
|
+
name: 'Name',
|
|
10079
|
+
regionId: 'RegionId',
|
|
10080
|
+
};
|
|
10081
|
+
}
|
|
10082
|
+
|
|
10083
|
+
static types(): { [key: string]: any } {
|
|
10084
|
+
return {
|
|
10085
|
+
acceleratorId: 'string',
|
|
10086
|
+
clientToken: 'string',
|
|
10087
|
+
description: 'string',
|
|
10088
|
+
name: 'string',
|
|
10089
|
+
regionId: 'string',
|
|
10090
|
+
};
|
|
10091
|
+
}
|
|
10092
|
+
|
|
10093
|
+
constructor(map?: { [key: string]: any }) {
|
|
10094
|
+
super(map);
|
|
10095
|
+
}
|
|
10096
|
+
}
|
|
10097
|
+
|
|
10098
|
+
export class UpdateBasicAcceleratorResponseBody extends $tea.Model {
|
|
10099
|
+
requestId?: string;
|
|
10100
|
+
static names(): { [key: string]: string } {
|
|
10101
|
+
return {
|
|
10102
|
+
requestId: 'RequestId',
|
|
10103
|
+
};
|
|
10104
|
+
}
|
|
10105
|
+
|
|
10106
|
+
static types(): { [key: string]: any } {
|
|
10107
|
+
return {
|
|
10108
|
+
requestId: 'string',
|
|
10109
|
+
};
|
|
10110
|
+
}
|
|
10111
|
+
|
|
10112
|
+
constructor(map?: { [key: string]: any }) {
|
|
10113
|
+
super(map);
|
|
10114
|
+
}
|
|
10115
|
+
}
|
|
10116
|
+
|
|
10117
|
+
export class UpdateBasicAcceleratorResponse extends $tea.Model {
|
|
8651
10118
|
headers: { [key: string]: string };
|
|
8652
10119
|
statusCode: number;
|
|
8653
|
-
body:
|
|
10120
|
+
body: UpdateBasicAcceleratorResponseBody;
|
|
8654
10121
|
static names(): { [key: string]: string } {
|
|
8655
10122
|
return {
|
|
8656
10123
|
headers: 'headers',
|
|
@@ -8663,7 +10130,7 @@ export class UpdateBandwidthPackageResponse extends $tea.Model {
|
|
|
8663
10130
|
return {
|
|
8664
10131
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8665
10132
|
statusCode: 'number',
|
|
8666
|
-
body:
|
|
10133
|
+
body: UpdateBasicAcceleratorResponseBody,
|
|
8667
10134
|
};
|
|
8668
10135
|
}
|
|
8669
10136
|
|
|
@@ -8672,17 +10139,17 @@ export class UpdateBandwidthPackageResponse extends $tea.Model {
|
|
|
8672
10139
|
}
|
|
8673
10140
|
}
|
|
8674
10141
|
|
|
8675
|
-
export class
|
|
8676
|
-
acceleratorId?: string;
|
|
10142
|
+
export class UpdateBasicEndpointRequest extends $tea.Model {
|
|
8677
10143
|
clientToken?: string;
|
|
8678
|
-
|
|
10144
|
+
endpointGroupId?: string;
|
|
10145
|
+
endpointId?: string;
|
|
8679
10146
|
name?: string;
|
|
8680
10147
|
regionId?: string;
|
|
8681
10148
|
static names(): { [key: string]: string } {
|
|
8682
10149
|
return {
|
|
8683
|
-
acceleratorId: 'AcceleratorId',
|
|
8684
10150
|
clientToken: 'ClientToken',
|
|
8685
|
-
|
|
10151
|
+
endpointGroupId: 'EndpointGroupId',
|
|
10152
|
+
endpointId: 'EndpointId',
|
|
8686
10153
|
name: 'Name',
|
|
8687
10154
|
regionId: 'RegionId',
|
|
8688
10155
|
};
|
|
@@ -8690,9 +10157,9 @@ export class UpdateBasicAcceleratorRequest extends $tea.Model {
|
|
|
8690
10157
|
|
|
8691
10158
|
static types(): { [key: string]: any } {
|
|
8692
10159
|
return {
|
|
8693
|
-
acceleratorId: 'string',
|
|
8694
10160
|
clientToken: 'string',
|
|
8695
|
-
|
|
10161
|
+
endpointGroupId: 'string',
|
|
10162
|
+
endpointId: 'string',
|
|
8696
10163
|
name: 'string',
|
|
8697
10164
|
regionId: 'string',
|
|
8698
10165
|
};
|
|
@@ -8703,16 +10170,25 @@ export class UpdateBasicAcceleratorRequest extends $tea.Model {
|
|
|
8703
10170
|
}
|
|
8704
10171
|
}
|
|
8705
10172
|
|
|
8706
|
-
export class
|
|
10173
|
+
export class UpdateBasicEndpointResponseBody extends $tea.Model {
|
|
10174
|
+
endpointGroupId?: string;
|
|
10175
|
+
endpointId?: string;
|
|
10176
|
+
name?: string;
|
|
8707
10177
|
requestId?: string;
|
|
8708
10178
|
static names(): { [key: string]: string } {
|
|
8709
10179
|
return {
|
|
10180
|
+
endpointGroupId: 'EndpointGroupId',
|
|
10181
|
+
endpointId: 'EndpointId',
|
|
10182
|
+
name: 'Name',
|
|
8710
10183
|
requestId: 'RequestId',
|
|
8711
10184
|
};
|
|
8712
10185
|
}
|
|
8713
10186
|
|
|
8714
10187
|
static types(): { [key: string]: any } {
|
|
8715
10188
|
return {
|
|
10189
|
+
endpointGroupId: 'string',
|
|
10190
|
+
endpointId: 'string',
|
|
10191
|
+
name: 'string',
|
|
8716
10192
|
requestId: 'string',
|
|
8717
10193
|
};
|
|
8718
10194
|
}
|
|
@@ -8722,10 +10198,10 @@ export class UpdateBasicAcceleratorResponseBody extends $tea.Model {
|
|
|
8722
10198
|
}
|
|
8723
10199
|
}
|
|
8724
10200
|
|
|
8725
|
-
export class
|
|
10201
|
+
export class UpdateBasicEndpointResponse extends $tea.Model {
|
|
8726
10202
|
headers: { [key: string]: string };
|
|
8727
10203
|
statusCode: number;
|
|
8728
|
-
body:
|
|
10204
|
+
body: UpdateBasicEndpointResponseBody;
|
|
8729
10205
|
static names(): { [key: string]: string } {
|
|
8730
10206
|
return {
|
|
8731
10207
|
headers: 'headers',
|
|
@@ -8738,7 +10214,7 @@ export class UpdateBasicAcceleratorResponse extends $tea.Model {
|
|
|
8738
10214
|
return {
|
|
8739
10215
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
8740
10216
|
statusCode: 'number',
|
|
8741
|
-
body:
|
|
10217
|
+
body: UpdateBasicEndpointResponseBody,
|
|
8742
10218
|
};
|
|
8743
10219
|
}
|
|
8744
10220
|
|
|
@@ -9864,6 +11340,90 @@ export class CreateAclRequestAclEntries extends $tea.Model {
|
|
|
9864
11340
|
}
|
|
9865
11341
|
}
|
|
9866
11342
|
|
|
11343
|
+
export class CreateBasicAccelerateIpEndpointRelationsRequestAccelerateIpEndpointRelations extends $tea.Model {
|
|
11344
|
+
accelerateIpId?: string;
|
|
11345
|
+
endpointId?: string;
|
|
11346
|
+
static names(): { [key: string]: string } {
|
|
11347
|
+
return {
|
|
11348
|
+
accelerateIpId: 'AccelerateIpId',
|
|
11349
|
+
endpointId: 'EndpointId',
|
|
11350
|
+
};
|
|
11351
|
+
}
|
|
11352
|
+
|
|
11353
|
+
static types(): { [key: string]: any } {
|
|
11354
|
+
return {
|
|
11355
|
+
accelerateIpId: 'string',
|
|
11356
|
+
endpointId: 'string',
|
|
11357
|
+
};
|
|
11358
|
+
}
|
|
11359
|
+
|
|
11360
|
+
constructor(map?: { [key: string]: any }) {
|
|
11361
|
+
super(map);
|
|
11362
|
+
}
|
|
11363
|
+
}
|
|
11364
|
+
|
|
11365
|
+
export class CreateBasicEndpointsRequestEndpoints extends $tea.Model {
|
|
11366
|
+
endpointAddress?: string;
|
|
11367
|
+
endpointSubAddress?: string;
|
|
11368
|
+
endpointSubAddressType?: string;
|
|
11369
|
+
endpointType?: string;
|
|
11370
|
+
endpointZoneId?: string;
|
|
11371
|
+
name?: string;
|
|
11372
|
+
static names(): { [key: string]: string } {
|
|
11373
|
+
return {
|
|
11374
|
+
endpointAddress: 'EndpointAddress',
|
|
11375
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
11376
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
11377
|
+
endpointType: 'EndpointType',
|
|
11378
|
+
endpointZoneId: 'EndpointZoneId',
|
|
11379
|
+
name: 'Name',
|
|
11380
|
+
};
|
|
11381
|
+
}
|
|
11382
|
+
|
|
11383
|
+
static types(): { [key: string]: any } {
|
|
11384
|
+
return {
|
|
11385
|
+
endpointAddress: 'string',
|
|
11386
|
+
endpointSubAddress: 'string',
|
|
11387
|
+
endpointSubAddressType: 'string',
|
|
11388
|
+
endpointType: 'string',
|
|
11389
|
+
endpointZoneId: 'string',
|
|
11390
|
+
name: 'string',
|
|
11391
|
+
};
|
|
11392
|
+
}
|
|
11393
|
+
|
|
11394
|
+
constructor(map?: { [key: string]: any }) {
|
|
11395
|
+
super(map);
|
|
11396
|
+
}
|
|
11397
|
+
}
|
|
11398
|
+
|
|
11399
|
+
export class CreateBasicEndpointsResponseBodyEndpoints extends $tea.Model {
|
|
11400
|
+
endpointAddress?: string;
|
|
11401
|
+
endpointId?: string;
|
|
11402
|
+
endpointSubAddress?: string;
|
|
11403
|
+
endpointType?: string;
|
|
11404
|
+
static names(): { [key: string]: string } {
|
|
11405
|
+
return {
|
|
11406
|
+
endpointAddress: 'EndpointAddress',
|
|
11407
|
+
endpointId: 'EndpointId',
|
|
11408
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
11409
|
+
endpointType: 'EndpointType',
|
|
11410
|
+
};
|
|
11411
|
+
}
|
|
11412
|
+
|
|
11413
|
+
static types(): { [key: string]: any } {
|
|
11414
|
+
return {
|
|
11415
|
+
endpointAddress: 'string',
|
|
11416
|
+
endpointId: 'string',
|
|
11417
|
+
endpointSubAddress: 'string',
|
|
11418
|
+
endpointType: 'string',
|
|
11419
|
+
};
|
|
11420
|
+
}
|
|
11421
|
+
|
|
11422
|
+
constructor(map?: { [key: string]: any }) {
|
|
11423
|
+
super(map);
|
|
11424
|
+
}
|
|
11425
|
+
}
|
|
11426
|
+
|
|
9867
11427
|
export class CreateCustomRoutingEndpointGroupDestinationsRequestDestinationConfigurations extends $tea.Model {
|
|
9868
11428
|
fromPort?: number;
|
|
9869
11429
|
protocols?: string[];
|
|
@@ -11078,6 +12638,28 @@ export class DescribeEndpointGroupResponseBodyPortOverrides extends $tea.Model {
|
|
|
11078
12638
|
}
|
|
11079
12639
|
}
|
|
11080
12640
|
|
|
12641
|
+
export class DescribeEndpointGroupResponseBodyTags extends $tea.Model {
|
|
12642
|
+
key?: string;
|
|
12643
|
+
value?: string;
|
|
12644
|
+
static names(): { [key: string]: string } {
|
|
12645
|
+
return {
|
|
12646
|
+
key: 'Key',
|
|
12647
|
+
value: 'Value',
|
|
12648
|
+
};
|
|
12649
|
+
}
|
|
12650
|
+
|
|
12651
|
+
static types(): { [key: string]: any } {
|
|
12652
|
+
return {
|
|
12653
|
+
key: 'string',
|
|
12654
|
+
value: 'string',
|
|
12655
|
+
};
|
|
12656
|
+
}
|
|
12657
|
+
|
|
12658
|
+
constructor(map?: { [key: string]: any }) {
|
|
12659
|
+
super(map);
|
|
12660
|
+
}
|
|
12661
|
+
}
|
|
12662
|
+
|
|
11081
12663
|
export class DescribeListenerResponseBodyBackendPorts extends $tea.Model {
|
|
11082
12664
|
fromPort?: string;
|
|
11083
12665
|
toPort?: string;
|
|
@@ -12091,6 +13673,129 @@ export class ListBandwidthackagesResponseBodyBandwidthPackages extends $tea.Mode
|
|
|
12091
13673
|
}
|
|
12092
13674
|
}
|
|
12093
13675
|
|
|
13676
|
+
export class ListBasicAccelerateIpEndpointRelationsResponseBodyAccelerateIpEndpointRelations extends $tea.Model {
|
|
13677
|
+
accelerateIpId?: string;
|
|
13678
|
+
endpointAddress?: string;
|
|
13679
|
+
endpointId?: string;
|
|
13680
|
+
endpointName?: string;
|
|
13681
|
+
endpointSubAddress?: string;
|
|
13682
|
+
endpointSubAddressType?: string;
|
|
13683
|
+
endpointType?: string;
|
|
13684
|
+
endpointZoneId?: string;
|
|
13685
|
+
ipAddress?: string;
|
|
13686
|
+
state?: string;
|
|
13687
|
+
static names(): { [key: string]: string } {
|
|
13688
|
+
return {
|
|
13689
|
+
accelerateIpId: 'AccelerateIpId',
|
|
13690
|
+
endpointAddress: 'EndpointAddress',
|
|
13691
|
+
endpointId: 'EndpointId',
|
|
13692
|
+
endpointName: 'EndpointName',
|
|
13693
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
13694
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
13695
|
+
endpointType: 'EndpointType',
|
|
13696
|
+
endpointZoneId: 'EndpointZoneId',
|
|
13697
|
+
ipAddress: 'IpAddress',
|
|
13698
|
+
state: 'State',
|
|
13699
|
+
};
|
|
13700
|
+
}
|
|
13701
|
+
|
|
13702
|
+
static types(): { [key: string]: any } {
|
|
13703
|
+
return {
|
|
13704
|
+
accelerateIpId: 'string',
|
|
13705
|
+
endpointAddress: 'string',
|
|
13706
|
+
endpointId: 'string',
|
|
13707
|
+
endpointName: 'string',
|
|
13708
|
+
endpointSubAddress: 'string',
|
|
13709
|
+
endpointSubAddressType: 'string',
|
|
13710
|
+
endpointType: 'string',
|
|
13711
|
+
endpointZoneId: 'string',
|
|
13712
|
+
ipAddress: 'string',
|
|
13713
|
+
state: 'string',
|
|
13714
|
+
};
|
|
13715
|
+
}
|
|
13716
|
+
|
|
13717
|
+
constructor(map?: { [key: string]: any }) {
|
|
13718
|
+
super(map);
|
|
13719
|
+
}
|
|
13720
|
+
}
|
|
13721
|
+
|
|
13722
|
+
export class ListBasicAccelerateIpsResponseBodyAccelerateIpsEndpoint extends $tea.Model {
|
|
13723
|
+
endPointId?: string;
|
|
13724
|
+
endpointAddress?: string;
|
|
13725
|
+
endpointGroupId?: string;
|
|
13726
|
+
endpointSubAddress?: string;
|
|
13727
|
+
endpointSubAddressType?: string;
|
|
13728
|
+
endpointType?: string;
|
|
13729
|
+
endpointZoneId?: string;
|
|
13730
|
+
name?: string;
|
|
13731
|
+
state?: string;
|
|
13732
|
+
static names(): { [key: string]: string } {
|
|
13733
|
+
return {
|
|
13734
|
+
endPointId: 'EndPointId',
|
|
13735
|
+
endpointAddress: 'EndpointAddress',
|
|
13736
|
+
endpointGroupId: 'EndpointGroupId',
|
|
13737
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
13738
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
13739
|
+
endpointType: 'EndpointType',
|
|
13740
|
+
endpointZoneId: 'EndpointZoneId',
|
|
13741
|
+
name: 'Name',
|
|
13742
|
+
state: 'State',
|
|
13743
|
+
};
|
|
13744
|
+
}
|
|
13745
|
+
|
|
13746
|
+
static types(): { [key: string]: any } {
|
|
13747
|
+
return {
|
|
13748
|
+
endPointId: 'string',
|
|
13749
|
+
endpointAddress: 'string',
|
|
13750
|
+
endpointGroupId: 'string',
|
|
13751
|
+
endpointSubAddress: 'string',
|
|
13752
|
+
endpointSubAddressType: 'string',
|
|
13753
|
+
endpointType: 'string',
|
|
13754
|
+
endpointZoneId: 'string',
|
|
13755
|
+
name: 'string',
|
|
13756
|
+
state: 'string',
|
|
13757
|
+
};
|
|
13758
|
+
}
|
|
13759
|
+
|
|
13760
|
+
constructor(map?: { [key: string]: any }) {
|
|
13761
|
+
super(map);
|
|
13762
|
+
}
|
|
13763
|
+
}
|
|
13764
|
+
|
|
13765
|
+
export class ListBasicAccelerateIpsResponseBodyAccelerateIps extends $tea.Model {
|
|
13766
|
+
accelerateIpAddress?: string;
|
|
13767
|
+
accelerateIpId?: string;
|
|
13768
|
+
acceleratorId?: string;
|
|
13769
|
+
endpoint?: ListBasicAccelerateIpsResponseBodyAccelerateIpsEndpoint;
|
|
13770
|
+
ipSetId?: string;
|
|
13771
|
+
state?: string;
|
|
13772
|
+
static names(): { [key: string]: string } {
|
|
13773
|
+
return {
|
|
13774
|
+
accelerateIpAddress: 'AccelerateIpAddress',
|
|
13775
|
+
accelerateIpId: 'AccelerateIpId',
|
|
13776
|
+
acceleratorId: 'AcceleratorId',
|
|
13777
|
+
endpoint: 'Endpoint',
|
|
13778
|
+
ipSetId: 'IpSetId',
|
|
13779
|
+
state: 'State',
|
|
13780
|
+
};
|
|
13781
|
+
}
|
|
13782
|
+
|
|
13783
|
+
static types(): { [key: string]: any } {
|
|
13784
|
+
return {
|
|
13785
|
+
accelerateIpAddress: 'string',
|
|
13786
|
+
accelerateIpId: 'string',
|
|
13787
|
+
acceleratorId: 'string',
|
|
13788
|
+
endpoint: ListBasicAccelerateIpsResponseBodyAccelerateIpsEndpoint,
|
|
13789
|
+
ipSetId: 'string',
|
|
13790
|
+
state: 'string',
|
|
13791
|
+
};
|
|
13792
|
+
}
|
|
13793
|
+
|
|
13794
|
+
constructor(map?: { [key: string]: any }) {
|
|
13795
|
+
super(map);
|
|
13796
|
+
}
|
|
13797
|
+
}
|
|
13798
|
+
|
|
12094
13799
|
export class ListBasicAcceleratorsRequestTag extends $tea.Model {
|
|
12095
13800
|
key?: string;
|
|
12096
13801
|
value?: string;
|
|
@@ -12233,11 +13938,57 @@ export class ListBasicAcceleratorsResponseBodyAccelerators extends $tea.Model {
|
|
|
12233
13938
|
expiredTime: 'number',
|
|
12234
13939
|
instanceChargeType: 'string',
|
|
12235
13940
|
name: 'string',
|
|
12236
|
-
regionId: 'string',
|
|
12237
|
-
resourceGroupId: 'string',
|
|
13941
|
+
regionId: 'string',
|
|
13942
|
+
resourceGroupId: 'string',
|
|
13943
|
+
state: 'string',
|
|
13944
|
+
tags: { 'type': 'array', 'itemType': ListBasicAcceleratorsResponseBodyAcceleratorsTags },
|
|
13945
|
+
type: 'string',
|
|
13946
|
+
};
|
|
13947
|
+
}
|
|
13948
|
+
|
|
13949
|
+
constructor(map?: { [key: string]: any }) {
|
|
13950
|
+
super(map);
|
|
13951
|
+
}
|
|
13952
|
+
}
|
|
13953
|
+
|
|
13954
|
+
export class ListBasicEndpointsResponseBodyEndpoints extends $tea.Model {
|
|
13955
|
+
acceleratorId?: string;
|
|
13956
|
+
endpointAddress?: string;
|
|
13957
|
+
endpointGroupId?: string;
|
|
13958
|
+
endpointId?: string;
|
|
13959
|
+
endpointSubAddress?: string;
|
|
13960
|
+
endpointSubAddressType?: string;
|
|
13961
|
+
endpointType?: string;
|
|
13962
|
+
endpointZoneId?: string;
|
|
13963
|
+
name?: string;
|
|
13964
|
+
state?: string;
|
|
13965
|
+
static names(): { [key: string]: string } {
|
|
13966
|
+
return {
|
|
13967
|
+
acceleratorId: 'AcceleratorId',
|
|
13968
|
+
endpointAddress: 'EndpointAddress',
|
|
13969
|
+
endpointGroupId: 'EndpointGroupId',
|
|
13970
|
+
endpointId: 'EndpointId',
|
|
13971
|
+
endpointSubAddress: 'EndpointSubAddress',
|
|
13972
|
+
endpointSubAddressType: 'EndpointSubAddressType',
|
|
13973
|
+
endpointType: 'EndpointType',
|
|
13974
|
+
endpointZoneId: 'EndpointZoneId',
|
|
13975
|
+
name: 'Name',
|
|
13976
|
+
state: 'State',
|
|
13977
|
+
};
|
|
13978
|
+
}
|
|
13979
|
+
|
|
13980
|
+
static types(): { [key: string]: any } {
|
|
13981
|
+
return {
|
|
13982
|
+
acceleratorId: 'string',
|
|
13983
|
+
endpointAddress: 'string',
|
|
13984
|
+
endpointGroupId: 'string',
|
|
13985
|
+
endpointId: 'string',
|
|
13986
|
+
endpointSubAddress: 'string',
|
|
13987
|
+
endpointSubAddressType: 'string',
|
|
13988
|
+
endpointType: 'string',
|
|
13989
|
+
endpointZoneId: 'string',
|
|
13990
|
+
name: 'string',
|
|
12238
13991
|
state: 'string',
|
|
12239
|
-
tags: { 'type': 'array', 'itemType': ListBasicAcceleratorsResponseBodyAcceleratorsTags },
|
|
12240
|
-
type: 'string',
|
|
12241
13992
|
};
|
|
12242
13993
|
}
|
|
12243
13994
|
|
|
@@ -12580,6 +14331,28 @@ export class ListCustomRoutingPortMappingsByDestinationResponseBodyPortMappings
|
|
|
12580
14331
|
}
|
|
12581
14332
|
}
|
|
12582
14333
|
|
|
14334
|
+
export class ListEndpointGroupsRequestTag extends $tea.Model {
|
|
14335
|
+
key?: string;
|
|
14336
|
+
value?: string;
|
|
14337
|
+
static names(): { [key: string]: string } {
|
|
14338
|
+
return {
|
|
14339
|
+
key: 'Key',
|
|
14340
|
+
value: 'Value',
|
|
14341
|
+
};
|
|
14342
|
+
}
|
|
14343
|
+
|
|
14344
|
+
static types(): { [key: string]: any } {
|
|
14345
|
+
return {
|
|
14346
|
+
key: 'string',
|
|
14347
|
+
value: 'string',
|
|
14348
|
+
};
|
|
14349
|
+
}
|
|
14350
|
+
|
|
14351
|
+
constructor(map?: { [key: string]: any }) {
|
|
14352
|
+
super(map);
|
|
14353
|
+
}
|
|
14354
|
+
}
|
|
14355
|
+
|
|
12583
14356
|
export class ListEndpointGroupsResponseBodyEndpointGroupsEndpointConfigurations extends $tea.Model {
|
|
12584
14357
|
enableClientIPPreservation?: boolean;
|
|
12585
14358
|
endpoint?: string;
|
|
@@ -12639,6 +14412,28 @@ export class ListEndpointGroupsResponseBodyEndpointGroupsPortOverrides extends $
|
|
|
12639
14412
|
}
|
|
12640
14413
|
}
|
|
12641
14414
|
|
|
14415
|
+
export class ListEndpointGroupsResponseBodyEndpointGroupsTags extends $tea.Model {
|
|
14416
|
+
key?: string;
|
|
14417
|
+
value?: string;
|
|
14418
|
+
static names(): { [key: string]: string } {
|
|
14419
|
+
return {
|
|
14420
|
+
key: 'Key',
|
|
14421
|
+
value: 'Value',
|
|
14422
|
+
};
|
|
14423
|
+
}
|
|
14424
|
+
|
|
14425
|
+
static types(): { [key: string]: any } {
|
|
14426
|
+
return {
|
|
14427
|
+
key: 'string',
|
|
14428
|
+
value: 'string',
|
|
14429
|
+
};
|
|
14430
|
+
}
|
|
14431
|
+
|
|
14432
|
+
constructor(map?: { [key: string]: any }) {
|
|
14433
|
+
super(map);
|
|
14434
|
+
}
|
|
14435
|
+
}
|
|
14436
|
+
|
|
12642
14437
|
export class ListEndpointGroupsResponseBodyEndpointGroups extends $tea.Model {
|
|
12643
14438
|
acceleratorId?: string;
|
|
12644
14439
|
description?: string;
|
|
@@ -12659,6 +14454,7 @@ export class ListEndpointGroupsResponseBodyEndpointGroups extends $tea.Model {
|
|
|
12659
14454
|
name?: string;
|
|
12660
14455
|
portOverrides?: ListEndpointGroupsResponseBodyEndpointGroupsPortOverrides[];
|
|
12661
14456
|
state?: string;
|
|
14457
|
+
tags?: ListEndpointGroupsResponseBodyEndpointGroupsTags[];
|
|
12662
14458
|
thresholdCount?: number;
|
|
12663
14459
|
trafficPercentage?: number;
|
|
12664
14460
|
static names(): { [key: string]: string } {
|
|
@@ -12682,6 +14478,7 @@ export class ListEndpointGroupsResponseBodyEndpointGroups extends $tea.Model {
|
|
|
12682
14478
|
name: 'Name',
|
|
12683
14479
|
portOverrides: 'PortOverrides',
|
|
12684
14480
|
state: 'State',
|
|
14481
|
+
tags: 'Tags',
|
|
12685
14482
|
thresholdCount: 'ThresholdCount',
|
|
12686
14483
|
trafficPercentage: 'TrafficPercentage',
|
|
12687
14484
|
};
|
|
@@ -12708,6 +14505,7 @@ export class ListEndpointGroupsResponseBodyEndpointGroups extends $tea.Model {
|
|
|
12708
14505
|
name: 'string',
|
|
12709
14506
|
portOverrides: { 'type': 'array', 'itemType': ListEndpointGroupsResponseBodyEndpointGroupsPortOverrides },
|
|
12710
14507
|
state: 'string',
|
|
14508
|
+
tags: { 'type': 'array', 'itemType': ListEndpointGroupsResponseBodyEndpointGroupsTags },
|
|
12711
14509
|
thresholdCount: 'number',
|
|
12712
14510
|
trafficPercentage: 'number',
|
|
12713
14511
|
};
|
|
@@ -14249,7 +16047,7 @@ export default class Client extends OpenApi {
|
|
|
14249
16047
|
query["Duration"] = request.duration;
|
|
14250
16048
|
}
|
|
14251
16049
|
|
|
14252
|
-
if (!Util.isUnset(request.ipSetConfig)) {
|
|
16050
|
+
if (!Util.isUnset($tea.toMap(request.ipSetConfig))) {
|
|
14253
16051
|
query["IpSetConfig"] = request.ipSetConfig;
|
|
14254
16052
|
}
|
|
14255
16053
|
|
|
@@ -14510,6 +16308,133 @@ export default class Client extends OpenApi {
|
|
|
14510
16308
|
return await this.createBandwidthPackageWithOptions(request, runtime);
|
|
14511
16309
|
}
|
|
14512
16310
|
|
|
16311
|
+
async createBasicAccelerateIpWithOptions(request: CreateBasicAccelerateIpRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicAccelerateIpResponse> {
|
|
16312
|
+
Util.validateModel(request);
|
|
16313
|
+
let query = { };
|
|
16314
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
16315
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
16316
|
+
}
|
|
16317
|
+
|
|
16318
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
16319
|
+
query["ClientToken"] = request.clientToken;
|
|
16320
|
+
}
|
|
16321
|
+
|
|
16322
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
16323
|
+
query["IpSetId"] = request.ipSetId;
|
|
16324
|
+
}
|
|
16325
|
+
|
|
16326
|
+
if (!Util.isUnset(request.regionId)) {
|
|
16327
|
+
query["RegionId"] = request.regionId;
|
|
16328
|
+
}
|
|
16329
|
+
|
|
16330
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
16331
|
+
query: OpenApiUtil.query(query),
|
|
16332
|
+
});
|
|
16333
|
+
let params = new $OpenApi.Params({
|
|
16334
|
+
action: "CreateBasicAccelerateIp",
|
|
16335
|
+
version: "2019-11-20",
|
|
16336
|
+
protocol: "HTTPS",
|
|
16337
|
+
pathname: "/",
|
|
16338
|
+
method: "POST",
|
|
16339
|
+
authType: "AK",
|
|
16340
|
+
style: "RPC",
|
|
16341
|
+
reqBodyType: "formData",
|
|
16342
|
+
bodyType: "json",
|
|
16343
|
+
});
|
|
16344
|
+
return $tea.cast<CreateBasicAccelerateIpResponse>(await this.callApi(params, req, runtime), new CreateBasicAccelerateIpResponse({}));
|
|
16345
|
+
}
|
|
16346
|
+
|
|
16347
|
+
async createBasicAccelerateIp(request: CreateBasicAccelerateIpRequest): Promise<CreateBasicAccelerateIpResponse> {
|
|
16348
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16349
|
+
return await this.createBasicAccelerateIpWithOptions(request, runtime);
|
|
16350
|
+
}
|
|
16351
|
+
|
|
16352
|
+
async createBasicAccelerateIpEndpointRelationWithOptions(request: CreateBasicAccelerateIpEndpointRelationRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicAccelerateIpEndpointRelationResponse> {
|
|
16353
|
+
Util.validateModel(request);
|
|
16354
|
+
let query = { };
|
|
16355
|
+
if (!Util.isUnset(request.accelerateIpId)) {
|
|
16356
|
+
query["AccelerateIpId"] = request.accelerateIpId;
|
|
16357
|
+
}
|
|
16358
|
+
|
|
16359
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
16360
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
16361
|
+
}
|
|
16362
|
+
|
|
16363
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
16364
|
+
query["ClientToken"] = request.clientToken;
|
|
16365
|
+
}
|
|
16366
|
+
|
|
16367
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
16368
|
+
query["EndpointId"] = request.endpointId;
|
|
16369
|
+
}
|
|
16370
|
+
|
|
16371
|
+
if (!Util.isUnset(request.regionId)) {
|
|
16372
|
+
query["RegionId"] = request.regionId;
|
|
16373
|
+
}
|
|
16374
|
+
|
|
16375
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
16376
|
+
query: OpenApiUtil.query(query),
|
|
16377
|
+
});
|
|
16378
|
+
let params = new $OpenApi.Params({
|
|
16379
|
+
action: "CreateBasicAccelerateIpEndpointRelation",
|
|
16380
|
+
version: "2019-11-20",
|
|
16381
|
+
protocol: "HTTPS",
|
|
16382
|
+
pathname: "/",
|
|
16383
|
+
method: "POST",
|
|
16384
|
+
authType: "AK",
|
|
16385
|
+
style: "RPC",
|
|
16386
|
+
reqBodyType: "formData",
|
|
16387
|
+
bodyType: "json",
|
|
16388
|
+
});
|
|
16389
|
+
return $tea.cast<CreateBasicAccelerateIpEndpointRelationResponse>(await this.callApi(params, req, runtime), new CreateBasicAccelerateIpEndpointRelationResponse({}));
|
|
16390
|
+
}
|
|
16391
|
+
|
|
16392
|
+
async createBasicAccelerateIpEndpointRelation(request: CreateBasicAccelerateIpEndpointRelationRequest): Promise<CreateBasicAccelerateIpEndpointRelationResponse> {
|
|
16393
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16394
|
+
return await this.createBasicAccelerateIpEndpointRelationWithOptions(request, runtime);
|
|
16395
|
+
}
|
|
16396
|
+
|
|
16397
|
+
async createBasicAccelerateIpEndpointRelationsWithOptions(request: CreateBasicAccelerateIpEndpointRelationsRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicAccelerateIpEndpointRelationsResponse> {
|
|
16398
|
+
Util.validateModel(request);
|
|
16399
|
+
let query = { };
|
|
16400
|
+
if (!Util.isUnset(request.accelerateIpEndpointRelations)) {
|
|
16401
|
+
query["AccelerateIpEndpointRelations"] = request.accelerateIpEndpointRelations;
|
|
16402
|
+
}
|
|
16403
|
+
|
|
16404
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
16405
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
16406
|
+
}
|
|
16407
|
+
|
|
16408
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
16409
|
+
query["ClientToken"] = request.clientToken;
|
|
16410
|
+
}
|
|
16411
|
+
|
|
16412
|
+
if (!Util.isUnset(request.regionId)) {
|
|
16413
|
+
query["RegionId"] = request.regionId;
|
|
16414
|
+
}
|
|
16415
|
+
|
|
16416
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
16417
|
+
query: OpenApiUtil.query(query),
|
|
16418
|
+
});
|
|
16419
|
+
let params = new $OpenApi.Params({
|
|
16420
|
+
action: "CreateBasicAccelerateIpEndpointRelations",
|
|
16421
|
+
version: "2019-11-20",
|
|
16422
|
+
protocol: "HTTPS",
|
|
16423
|
+
pathname: "/",
|
|
16424
|
+
method: "POST",
|
|
16425
|
+
authType: "AK",
|
|
16426
|
+
style: "RPC",
|
|
16427
|
+
reqBodyType: "formData",
|
|
16428
|
+
bodyType: "json",
|
|
16429
|
+
});
|
|
16430
|
+
return $tea.cast<CreateBasicAccelerateIpEndpointRelationsResponse>(await this.callApi(params, req, runtime), new CreateBasicAccelerateIpEndpointRelationsResponse({}));
|
|
16431
|
+
}
|
|
16432
|
+
|
|
16433
|
+
async createBasicAccelerateIpEndpointRelations(request: CreateBasicAccelerateIpEndpointRelationsRequest): Promise<CreateBasicAccelerateIpEndpointRelationsResponse> {
|
|
16434
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16435
|
+
return await this.createBasicAccelerateIpEndpointRelationsWithOptions(request, runtime);
|
|
16436
|
+
}
|
|
16437
|
+
|
|
14513
16438
|
async createBasicAcceleratorWithOptions(request: CreateBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicAcceleratorResponse> {
|
|
14514
16439
|
Util.validateModel(request);
|
|
14515
16440
|
let query = { };
|
|
@@ -14575,6 +16500,71 @@ export default class Client extends OpenApi {
|
|
|
14575
16500
|
return await this.createBasicAcceleratorWithOptions(request, runtime);
|
|
14576
16501
|
}
|
|
14577
16502
|
|
|
16503
|
+
async createBasicEndpointWithOptions(request: CreateBasicEndpointRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicEndpointResponse> {
|
|
16504
|
+
Util.validateModel(request);
|
|
16505
|
+
let query = { };
|
|
16506
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
16507
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
16508
|
+
}
|
|
16509
|
+
|
|
16510
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
16511
|
+
query["ClientToken"] = request.clientToken;
|
|
16512
|
+
}
|
|
16513
|
+
|
|
16514
|
+
if (!Util.isUnset(request.endpointAddress)) {
|
|
16515
|
+
query["EndpointAddress"] = request.endpointAddress;
|
|
16516
|
+
}
|
|
16517
|
+
|
|
16518
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
16519
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
16520
|
+
}
|
|
16521
|
+
|
|
16522
|
+
if (!Util.isUnset(request.endpointSubAddress)) {
|
|
16523
|
+
query["EndpointSubAddress"] = request.endpointSubAddress;
|
|
16524
|
+
}
|
|
16525
|
+
|
|
16526
|
+
if (!Util.isUnset(request.endpointSubAddressType)) {
|
|
16527
|
+
query["EndpointSubAddressType"] = request.endpointSubAddressType;
|
|
16528
|
+
}
|
|
16529
|
+
|
|
16530
|
+
if (!Util.isUnset(request.endpointType)) {
|
|
16531
|
+
query["EndpointType"] = request.endpointType;
|
|
16532
|
+
}
|
|
16533
|
+
|
|
16534
|
+
if (!Util.isUnset(request.endpointZoneId)) {
|
|
16535
|
+
query["EndpointZoneId"] = request.endpointZoneId;
|
|
16536
|
+
}
|
|
16537
|
+
|
|
16538
|
+
if (!Util.isUnset(request.name)) {
|
|
16539
|
+
query["Name"] = request.name;
|
|
16540
|
+
}
|
|
16541
|
+
|
|
16542
|
+
if (!Util.isUnset(request.regionId)) {
|
|
16543
|
+
query["RegionId"] = request.regionId;
|
|
16544
|
+
}
|
|
16545
|
+
|
|
16546
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
16547
|
+
query: OpenApiUtil.query(query),
|
|
16548
|
+
});
|
|
16549
|
+
let params = new $OpenApi.Params({
|
|
16550
|
+
action: "CreateBasicEndpoint",
|
|
16551
|
+
version: "2019-11-20",
|
|
16552
|
+
protocol: "HTTPS",
|
|
16553
|
+
pathname: "/",
|
|
16554
|
+
method: "POST",
|
|
16555
|
+
authType: "AK",
|
|
16556
|
+
style: "RPC",
|
|
16557
|
+
reqBodyType: "formData",
|
|
16558
|
+
bodyType: "json",
|
|
16559
|
+
});
|
|
16560
|
+
return $tea.cast<CreateBasicEndpointResponse>(await this.callApi(params, req, runtime), new CreateBasicEndpointResponse({}));
|
|
16561
|
+
}
|
|
16562
|
+
|
|
16563
|
+
async createBasicEndpoint(request: CreateBasicEndpointRequest): Promise<CreateBasicEndpointResponse> {
|
|
16564
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16565
|
+
return await this.createBasicEndpointWithOptions(request, runtime);
|
|
16566
|
+
}
|
|
16567
|
+
|
|
14578
16568
|
async createBasicEndpointGroupWithOptions(request: CreateBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicEndpointGroupResponse> {
|
|
14579
16569
|
Util.validateModel(request);
|
|
14580
16570
|
let query = { };
|
|
@@ -14594,20 +16584,65 @@ export default class Client extends OpenApi {
|
|
|
14594
16584
|
query["EndpointAddress"] = request.endpointAddress;
|
|
14595
16585
|
}
|
|
14596
16586
|
|
|
14597
|
-
if (!Util.isUnset(request.endpointGroupRegion)) {
|
|
14598
|
-
query["EndpointGroupRegion"] = request.endpointGroupRegion;
|
|
16587
|
+
if (!Util.isUnset(request.endpointGroupRegion)) {
|
|
16588
|
+
query["EndpointGroupRegion"] = request.endpointGroupRegion;
|
|
16589
|
+
}
|
|
16590
|
+
|
|
16591
|
+
if (!Util.isUnset(request.endpointSubAddress)) {
|
|
16592
|
+
query["EndpointSubAddress"] = request.endpointSubAddress;
|
|
16593
|
+
}
|
|
16594
|
+
|
|
16595
|
+
if (!Util.isUnset(request.endpointType)) {
|
|
16596
|
+
query["EndpointType"] = request.endpointType;
|
|
16597
|
+
}
|
|
16598
|
+
|
|
16599
|
+
if (!Util.isUnset(request.name)) {
|
|
16600
|
+
query["Name"] = request.name;
|
|
16601
|
+
}
|
|
16602
|
+
|
|
16603
|
+
if (!Util.isUnset(request.regionId)) {
|
|
16604
|
+
query["RegionId"] = request.regionId;
|
|
16605
|
+
}
|
|
16606
|
+
|
|
16607
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
16608
|
+
query: OpenApiUtil.query(query),
|
|
16609
|
+
});
|
|
16610
|
+
let params = new $OpenApi.Params({
|
|
16611
|
+
action: "CreateBasicEndpointGroup",
|
|
16612
|
+
version: "2019-11-20",
|
|
16613
|
+
protocol: "HTTPS",
|
|
16614
|
+
pathname: "/",
|
|
16615
|
+
method: "POST",
|
|
16616
|
+
authType: "AK",
|
|
16617
|
+
style: "RPC",
|
|
16618
|
+
reqBodyType: "formData",
|
|
16619
|
+
bodyType: "json",
|
|
16620
|
+
});
|
|
16621
|
+
return $tea.cast<CreateBasicEndpointGroupResponse>(await this.callApi(params, req, runtime), new CreateBasicEndpointGroupResponse({}));
|
|
16622
|
+
}
|
|
16623
|
+
|
|
16624
|
+
async createBasicEndpointGroup(request: CreateBasicEndpointGroupRequest): Promise<CreateBasicEndpointGroupResponse> {
|
|
16625
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
16626
|
+
return await this.createBasicEndpointGroupWithOptions(request, runtime);
|
|
16627
|
+
}
|
|
16628
|
+
|
|
16629
|
+
async createBasicEndpointsWithOptions(request: CreateBasicEndpointsRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicEndpointsResponse> {
|
|
16630
|
+
Util.validateModel(request);
|
|
16631
|
+
let query = { };
|
|
16632
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
16633
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
14599
16634
|
}
|
|
14600
16635
|
|
|
14601
|
-
if (!Util.isUnset(request.
|
|
14602
|
-
query["
|
|
16636
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
16637
|
+
query["ClientToken"] = request.clientToken;
|
|
14603
16638
|
}
|
|
14604
16639
|
|
|
14605
|
-
if (!Util.isUnset(request.
|
|
14606
|
-
query["
|
|
16640
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
16641
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
14607
16642
|
}
|
|
14608
16643
|
|
|
14609
|
-
if (!Util.isUnset(request.
|
|
14610
|
-
query["
|
|
16644
|
+
if (!Util.isUnset(request.endpoints)) {
|
|
16645
|
+
query["Endpoints"] = request.endpoints;
|
|
14611
16646
|
}
|
|
14612
16647
|
|
|
14613
16648
|
if (!Util.isUnset(request.regionId)) {
|
|
@@ -14618,7 +16653,7 @@ export default class Client extends OpenApi {
|
|
|
14618
16653
|
query: OpenApiUtil.query(query),
|
|
14619
16654
|
});
|
|
14620
16655
|
let params = new $OpenApi.Params({
|
|
14621
|
-
action: "
|
|
16656
|
+
action: "CreateBasicEndpoints",
|
|
14622
16657
|
version: "2019-11-20",
|
|
14623
16658
|
protocol: "HTTPS",
|
|
14624
16659
|
pathname: "/",
|
|
@@ -14628,12 +16663,12 @@ export default class Client extends OpenApi {
|
|
|
14628
16663
|
reqBodyType: "formData",
|
|
14629
16664
|
bodyType: "json",
|
|
14630
16665
|
});
|
|
14631
|
-
return $tea.cast<
|
|
16666
|
+
return $tea.cast<CreateBasicEndpointsResponse>(await this.callApi(params, req, runtime), new CreateBasicEndpointsResponse({}));
|
|
14632
16667
|
}
|
|
14633
16668
|
|
|
14634
|
-
async
|
|
16669
|
+
async createBasicEndpoints(request: CreateBasicEndpointsRequest): Promise<CreateBasicEndpointsResponse> {
|
|
14635
16670
|
let runtime = new $Util.RuntimeOptions({ });
|
|
14636
|
-
return await this.
|
|
16671
|
+
return await this.createBasicEndpointsWithOptions(request, runtime);
|
|
14637
16672
|
}
|
|
14638
16673
|
|
|
14639
16674
|
async createBasicIpSetWithOptions(request: CreateBasicIpSetRequest, runtime: $Util.RuntimeOptions): Promise<CreateBasicIpSetResponse> {
|
|
@@ -15152,7 +17187,7 @@ export default class Client extends OpenApi {
|
|
|
15152
17187
|
query["Type"] = request.type;
|
|
15153
17188
|
}
|
|
15154
17189
|
|
|
15155
|
-
if (!Util.isUnset(request.XForwardedForConfig)) {
|
|
17190
|
+
if (!Util.isUnset($tea.toMap(request.XForwardedForConfig))) {
|
|
15156
17191
|
query["XForwardedForConfig"] = request.XForwardedForConfig;
|
|
15157
17192
|
}
|
|
15158
17193
|
|
|
@@ -15371,6 +17406,88 @@ export default class Client extends OpenApi {
|
|
|
15371
17406
|
return await this.deleteBandwidthPackageWithOptions(request, runtime);
|
|
15372
17407
|
}
|
|
15373
17408
|
|
|
17409
|
+
async deleteBasicAccelerateIpWithOptions(request: DeleteBasicAccelerateIpRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBasicAccelerateIpResponse> {
|
|
17410
|
+
Util.validateModel(request);
|
|
17411
|
+
let query = { };
|
|
17412
|
+
if (!Util.isUnset(request.accelerateIpId)) {
|
|
17413
|
+
query["AccelerateIpId"] = request.accelerateIpId;
|
|
17414
|
+
}
|
|
17415
|
+
|
|
17416
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
17417
|
+
query["ClientToken"] = request.clientToken;
|
|
17418
|
+
}
|
|
17419
|
+
|
|
17420
|
+
if (!Util.isUnset(request.regionId)) {
|
|
17421
|
+
query["RegionId"] = request.regionId;
|
|
17422
|
+
}
|
|
17423
|
+
|
|
17424
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
17425
|
+
query: OpenApiUtil.query(query),
|
|
17426
|
+
});
|
|
17427
|
+
let params = new $OpenApi.Params({
|
|
17428
|
+
action: "DeleteBasicAccelerateIp",
|
|
17429
|
+
version: "2019-11-20",
|
|
17430
|
+
protocol: "HTTPS",
|
|
17431
|
+
pathname: "/",
|
|
17432
|
+
method: "POST",
|
|
17433
|
+
authType: "AK",
|
|
17434
|
+
style: "RPC",
|
|
17435
|
+
reqBodyType: "formData",
|
|
17436
|
+
bodyType: "json",
|
|
17437
|
+
});
|
|
17438
|
+
return $tea.cast<DeleteBasicAccelerateIpResponse>(await this.callApi(params, req, runtime), new DeleteBasicAccelerateIpResponse({}));
|
|
17439
|
+
}
|
|
17440
|
+
|
|
17441
|
+
async deleteBasicAccelerateIp(request: DeleteBasicAccelerateIpRequest): Promise<DeleteBasicAccelerateIpResponse> {
|
|
17442
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
17443
|
+
return await this.deleteBasicAccelerateIpWithOptions(request, runtime);
|
|
17444
|
+
}
|
|
17445
|
+
|
|
17446
|
+
async deleteBasicAccelerateIpEndpointRelationWithOptions(request: DeleteBasicAccelerateIpEndpointRelationRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBasicAccelerateIpEndpointRelationResponse> {
|
|
17447
|
+
Util.validateModel(request);
|
|
17448
|
+
let query = { };
|
|
17449
|
+
if (!Util.isUnset(request.accelerateIpId)) {
|
|
17450
|
+
query["AccelerateIpId"] = request.accelerateIpId;
|
|
17451
|
+
}
|
|
17452
|
+
|
|
17453
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
17454
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
17455
|
+
}
|
|
17456
|
+
|
|
17457
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
17458
|
+
query["ClientToken"] = request.clientToken;
|
|
17459
|
+
}
|
|
17460
|
+
|
|
17461
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
17462
|
+
query["EndpointId"] = request.endpointId;
|
|
17463
|
+
}
|
|
17464
|
+
|
|
17465
|
+
if (!Util.isUnset(request.regionId)) {
|
|
17466
|
+
query["RegionId"] = request.regionId;
|
|
17467
|
+
}
|
|
17468
|
+
|
|
17469
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
17470
|
+
query: OpenApiUtil.query(query),
|
|
17471
|
+
});
|
|
17472
|
+
let params = new $OpenApi.Params({
|
|
17473
|
+
action: "DeleteBasicAccelerateIpEndpointRelation",
|
|
17474
|
+
version: "2019-11-20",
|
|
17475
|
+
protocol: "HTTPS",
|
|
17476
|
+
pathname: "/",
|
|
17477
|
+
method: "POST",
|
|
17478
|
+
authType: "AK",
|
|
17479
|
+
style: "RPC",
|
|
17480
|
+
reqBodyType: "formData",
|
|
17481
|
+
bodyType: "json",
|
|
17482
|
+
});
|
|
17483
|
+
return $tea.cast<DeleteBasicAccelerateIpEndpointRelationResponse>(await this.callApi(params, req, runtime), new DeleteBasicAccelerateIpEndpointRelationResponse({}));
|
|
17484
|
+
}
|
|
17485
|
+
|
|
17486
|
+
async deleteBasicAccelerateIpEndpointRelation(request: DeleteBasicAccelerateIpEndpointRelationRequest): Promise<DeleteBasicAccelerateIpEndpointRelationResponse> {
|
|
17487
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
17488
|
+
return await this.deleteBasicAccelerateIpEndpointRelationWithOptions(request, runtime);
|
|
17489
|
+
}
|
|
17490
|
+
|
|
15374
17491
|
async deleteBasicAcceleratorWithOptions(request: DeleteBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBasicAcceleratorResponse> {
|
|
15375
17492
|
Util.validateModel(request);
|
|
15376
17493
|
let query = { };
|
|
@@ -15404,6 +17521,47 @@ export default class Client extends OpenApi {
|
|
|
15404
17521
|
return await this.deleteBasicAcceleratorWithOptions(request, runtime);
|
|
15405
17522
|
}
|
|
15406
17523
|
|
|
17524
|
+
async deleteBasicEndpointWithOptions(request: DeleteBasicEndpointRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBasicEndpointResponse> {
|
|
17525
|
+
Util.validateModel(request);
|
|
17526
|
+
let query = { };
|
|
17527
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
17528
|
+
query["ClientToken"] = request.clientToken;
|
|
17529
|
+
}
|
|
17530
|
+
|
|
17531
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
17532
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
17533
|
+
}
|
|
17534
|
+
|
|
17535
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
17536
|
+
query["EndpointId"] = request.endpointId;
|
|
17537
|
+
}
|
|
17538
|
+
|
|
17539
|
+
if (!Util.isUnset(request.regionId)) {
|
|
17540
|
+
query["RegionId"] = request.regionId;
|
|
17541
|
+
}
|
|
17542
|
+
|
|
17543
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
17544
|
+
query: OpenApiUtil.query(query),
|
|
17545
|
+
});
|
|
17546
|
+
let params = new $OpenApi.Params({
|
|
17547
|
+
action: "DeleteBasicEndpoint",
|
|
17548
|
+
version: "2019-11-20",
|
|
17549
|
+
protocol: "HTTPS",
|
|
17550
|
+
pathname: "/",
|
|
17551
|
+
method: "POST",
|
|
17552
|
+
authType: "AK",
|
|
17553
|
+
style: "RPC",
|
|
17554
|
+
reqBodyType: "formData",
|
|
17555
|
+
bodyType: "json",
|
|
17556
|
+
});
|
|
17557
|
+
return $tea.cast<DeleteBasicEndpointResponse>(await this.callApi(params, req, runtime), new DeleteBasicEndpointResponse({}));
|
|
17558
|
+
}
|
|
17559
|
+
|
|
17560
|
+
async deleteBasicEndpoint(request: DeleteBasicEndpointRequest): Promise<DeleteBasicEndpointResponse> {
|
|
17561
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
17562
|
+
return await this.deleteBasicEndpointWithOptions(request, runtime);
|
|
17563
|
+
}
|
|
17564
|
+
|
|
15407
17565
|
async deleteBasicEndpointGroupWithOptions(request: DeleteBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBasicEndpointGroupResponse> {
|
|
15408
17566
|
Util.validateModel(request);
|
|
15409
17567
|
let query = { };
|
|
@@ -16636,8 +18794,160 @@ export default class Client extends OpenApi {
|
|
|
16636
18794
|
async getAclWithOptions(request: GetAclRequest, runtime: $Util.RuntimeOptions): Promise<GetAclResponse> {
|
|
16637
18795
|
Util.validateModel(request);
|
|
16638
18796
|
let query = { };
|
|
16639
|
-
if (!Util.isUnset(request.aclId)) {
|
|
16640
|
-
query["AclId"] = request.aclId;
|
|
18797
|
+
if (!Util.isUnset(request.aclId)) {
|
|
18798
|
+
query["AclId"] = request.aclId;
|
|
18799
|
+
}
|
|
18800
|
+
|
|
18801
|
+
if (!Util.isUnset(request.regionId)) {
|
|
18802
|
+
query["RegionId"] = request.regionId;
|
|
18803
|
+
}
|
|
18804
|
+
|
|
18805
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18806
|
+
query: OpenApiUtil.query(query),
|
|
18807
|
+
});
|
|
18808
|
+
let params = new $OpenApi.Params({
|
|
18809
|
+
action: "GetAcl",
|
|
18810
|
+
version: "2019-11-20",
|
|
18811
|
+
protocol: "HTTPS",
|
|
18812
|
+
pathname: "/",
|
|
18813
|
+
method: "POST",
|
|
18814
|
+
authType: "AK",
|
|
18815
|
+
style: "RPC",
|
|
18816
|
+
reqBodyType: "formData",
|
|
18817
|
+
bodyType: "json",
|
|
18818
|
+
});
|
|
18819
|
+
return $tea.cast<GetAclResponse>(await this.callApi(params, req, runtime), new GetAclResponse({}));
|
|
18820
|
+
}
|
|
18821
|
+
|
|
18822
|
+
async getAcl(request: GetAclRequest): Promise<GetAclResponse> {
|
|
18823
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
18824
|
+
return await this.getAclWithOptions(request, runtime);
|
|
18825
|
+
}
|
|
18826
|
+
|
|
18827
|
+
async getBasicAccelerateIpWithOptions(request: GetBasicAccelerateIpRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAccelerateIpResponse> {
|
|
18828
|
+
Util.validateModel(request);
|
|
18829
|
+
let query = { };
|
|
18830
|
+
if (!Util.isUnset(request.accelerateIpId)) {
|
|
18831
|
+
query["AccelerateIpId"] = request.accelerateIpId;
|
|
18832
|
+
}
|
|
18833
|
+
|
|
18834
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
18835
|
+
query["ClientToken"] = request.clientToken;
|
|
18836
|
+
}
|
|
18837
|
+
|
|
18838
|
+
if (!Util.isUnset(request.regionId)) {
|
|
18839
|
+
query["RegionId"] = request.regionId;
|
|
18840
|
+
}
|
|
18841
|
+
|
|
18842
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18843
|
+
query: OpenApiUtil.query(query),
|
|
18844
|
+
});
|
|
18845
|
+
let params = new $OpenApi.Params({
|
|
18846
|
+
action: "GetBasicAccelerateIp",
|
|
18847
|
+
version: "2019-11-20",
|
|
18848
|
+
protocol: "HTTPS",
|
|
18849
|
+
pathname: "/",
|
|
18850
|
+
method: "POST",
|
|
18851
|
+
authType: "AK",
|
|
18852
|
+
style: "RPC",
|
|
18853
|
+
reqBodyType: "formData",
|
|
18854
|
+
bodyType: "json",
|
|
18855
|
+
});
|
|
18856
|
+
return $tea.cast<GetBasicAccelerateIpResponse>(await this.callApi(params, req, runtime), new GetBasicAccelerateIpResponse({}));
|
|
18857
|
+
}
|
|
18858
|
+
|
|
18859
|
+
async getBasicAccelerateIp(request: GetBasicAccelerateIpRequest): Promise<GetBasicAccelerateIpResponse> {
|
|
18860
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
18861
|
+
return await this.getBasicAccelerateIpWithOptions(request, runtime);
|
|
18862
|
+
}
|
|
18863
|
+
|
|
18864
|
+
async getBasicAccelerateIpEndpointRelationWithOptions(request: GetBasicAccelerateIpEndpointRelationRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAccelerateIpEndpointRelationResponse> {
|
|
18865
|
+
Util.validateModel(request);
|
|
18866
|
+
let query = { };
|
|
18867
|
+
if (!Util.isUnset(request.accelerateIpId)) {
|
|
18868
|
+
query["AccelerateIpId"] = request.accelerateIpId;
|
|
18869
|
+
}
|
|
18870
|
+
|
|
18871
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
18872
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
18873
|
+
}
|
|
18874
|
+
|
|
18875
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
18876
|
+
query["ClientToken"] = request.clientToken;
|
|
18877
|
+
}
|
|
18878
|
+
|
|
18879
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
18880
|
+
query["EndpointId"] = request.endpointId;
|
|
18881
|
+
}
|
|
18882
|
+
|
|
18883
|
+
if (!Util.isUnset(request.regionId)) {
|
|
18884
|
+
query["RegionId"] = request.regionId;
|
|
18885
|
+
}
|
|
18886
|
+
|
|
18887
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18888
|
+
query: OpenApiUtil.query(query),
|
|
18889
|
+
});
|
|
18890
|
+
let params = new $OpenApi.Params({
|
|
18891
|
+
action: "GetBasicAccelerateIpEndpointRelation",
|
|
18892
|
+
version: "2019-11-20",
|
|
18893
|
+
protocol: "HTTPS",
|
|
18894
|
+
pathname: "/",
|
|
18895
|
+
method: "POST",
|
|
18896
|
+
authType: "AK",
|
|
18897
|
+
style: "RPC",
|
|
18898
|
+
reqBodyType: "formData",
|
|
18899
|
+
bodyType: "json",
|
|
18900
|
+
});
|
|
18901
|
+
return $tea.cast<GetBasicAccelerateIpEndpointRelationResponse>(await this.callApi(params, req, runtime), new GetBasicAccelerateIpEndpointRelationResponse({}));
|
|
18902
|
+
}
|
|
18903
|
+
|
|
18904
|
+
async getBasicAccelerateIpEndpointRelation(request: GetBasicAccelerateIpEndpointRelationRequest): Promise<GetBasicAccelerateIpEndpointRelationResponse> {
|
|
18905
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
18906
|
+
return await this.getBasicAccelerateIpEndpointRelationWithOptions(request, runtime);
|
|
18907
|
+
}
|
|
18908
|
+
|
|
18909
|
+
async getBasicAccelerateIpIdleCountWithOptions(request: GetBasicAccelerateIpIdleCountRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAccelerateIpIdleCountResponse> {
|
|
18910
|
+
Util.validateModel(request);
|
|
18911
|
+
let query = { };
|
|
18912
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
18913
|
+
query["ClientToken"] = request.clientToken;
|
|
18914
|
+
}
|
|
18915
|
+
|
|
18916
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
18917
|
+
query["IpSetId"] = request.ipSetId;
|
|
18918
|
+
}
|
|
18919
|
+
|
|
18920
|
+
if (!Util.isUnset(request.regionId)) {
|
|
18921
|
+
query["RegionId"] = request.regionId;
|
|
18922
|
+
}
|
|
18923
|
+
|
|
18924
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18925
|
+
query: OpenApiUtil.query(query),
|
|
18926
|
+
});
|
|
18927
|
+
let params = new $OpenApi.Params({
|
|
18928
|
+
action: "GetBasicAccelerateIpIdleCount",
|
|
18929
|
+
version: "2019-11-20",
|
|
18930
|
+
protocol: "HTTPS",
|
|
18931
|
+
pathname: "/",
|
|
18932
|
+
method: "POST",
|
|
18933
|
+
authType: "AK",
|
|
18934
|
+
style: "RPC",
|
|
18935
|
+
reqBodyType: "formData",
|
|
18936
|
+
bodyType: "json",
|
|
18937
|
+
});
|
|
18938
|
+
return $tea.cast<GetBasicAccelerateIpIdleCountResponse>(await this.callApi(params, req, runtime), new GetBasicAccelerateIpIdleCountResponse({}));
|
|
18939
|
+
}
|
|
18940
|
+
|
|
18941
|
+
async getBasicAccelerateIpIdleCount(request: GetBasicAccelerateIpIdleCountRequest): Promise<GetBasicAccelerateIpIdleCountResponse> {
|
|
18942
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
18943
|
+
return await this.getBasicAccelerateIpIdleCountWithOptions(request, runtime);
|
|
18944
|
+
}
|
|
18945
|
+
|
|
18946
|
+
async getBasicAcceleratorWithOptions(request: GetBasicAcceleratorRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicAcceleratorResponse> {
|
|
18947
|
+
Util.validateModel(request);
|
|
18948
|
+
let query = { };
|
|
18949
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
18950
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
16641
18951
|
}
|
|
16642
18952
|
|
|
16643
18953
|
if (!Util.isUnset(request.regionId)) {
|
|
@@ -16648,7 +18958,7 @@ export default class Client extends OpenApi {
|
|
|
16648
18958
|
query: OpenApiUtil.query(query),
|
|
16649
18959
|
});
|
|
16650
18960
|
let params = new $OpenApi.Params({
|
|
16651
|
-
action: "
|
|
18961
|
+
action: "GetBasicAccelerator",
|
|
16652
18962
|
version: "2019-11-20",
|
|
16653
18963
|
protocol: "HTTPS",
|
|
16654
18964
|
pathname: "/",
|
|
@@ -16658,19 +18968,23 @@ export default class Client extends OpenApi {
|
|
|
16658
18968
|
reqBodyType: "formData",
|
|
16659
18969
|
bodyType: "json",
|
|
16660
18970
|
});
|
|
16661
|
-
return $tea.cast<
|
|
18971
|
+
return $tea.cast<GetBasicAcceleratorResponse>(await this.callApi(params, req, runtime), new GetBasicAcceleratorResponse({}));
|
|
16662
18972
|
}
|
|
16663
18973
|
|
|
16664
|
-
async
|
|
18974
|
+
async getBasicAccelerator(request: GetBasicAcceleratorRequest): Promise<GetBasicAcceleratorResponse> {
|
|
16665
18975
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16666
|
-
return await this.
|
|
18976
|
+
return await this.getBasicAcceleratorWithOptions(request, runtime);
|
|
16667
18977
|
}
|
|
16668
18978
|
|
|
16669
|
-
async
|
|
18979
|
+
async getBasicEndpointWithOptions(request: GetBasicEndpointRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicEndpointResponse> {
|
|
16670
18980
|
Util.validateModel(request);
|
|
16671
18981
|
let query = { };
|
|
16672
|
-
if (!Util.isUnset(request.
|
|
16673
|
-
query["
|
|
18982
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
18983
|
+
query["ClientToken"] = request.clientToken;
|
|
18984
|
+
}
|
|
18985
|
+
|
|
18986
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
18987
|
+
query["EndpointId"] = request.endpointId;
|
|
16674
18988
|
}
|
|
16675
18989
|
|
|
16676
18990
|
if (!Util.isUnset(request.regionId)) {
|
|
@@ -16681,7 +18995,7 @@ export default class Client extends OpenApi {
|
|
|
16681
18995
|
query: OpenApiUtil.query(query),
|
|
16682
18996
|
});
|
|
16683
18997
|
let params = new $OpenApi.Params({
|
|
16684
|
-
action: "
|
|
18998
|
+
action: "GetBasicEndpoint",
|
|
16685
18999
|
version: "2019-11-20",
|
|
16686
19000
|
protocol: "HTTPS",
|
|
16687
19001
|
pathname: "/",
|
|
@@ -16691,12 +19005,12 @@ export default class Client extends OpenApi {
|
|
|
16691
19005
|
reqBodyType: "formData",
|
|
16692
19006
|
bodyType: "json",
|
|
16693
19007
|
});
|
|
16694
|
-
return $tea.cast<
|
|
19008
|
+
return $tea.cast<GetBasicEndpointResponse>(await this.callApi(params, req, runtime), new GetBasicEndpointResponse({}));
|
|
16695
19009
|
}
|
|
16696
19010
|
|
|
16697
|
-
async
|
|
19011
|
+
async getBasicEndpoint(request: GetBasicEndpointRequest): Promise<GetBasicEndpointResponse> {
|
|
16698
19012
|
let runtime = new $Util.RuntimeOptions({ });
|
|
16699
|
-
return await this.
|
|
19013
|
+
return await this.getBasicEndpointWithOptions(request, runtime);
|
|
16700
19014
|
}
|
|
16701
19015
|
|
|
16702
19016
|
async getBasicEndpointGroupWithOptions(request: GetBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<GetBasicEndpointGroupResponse> {
|
|
@@ -17252,6 +19566,112 @@ export default class Client extends OpenApi {
|
|
|
17252
19566
|
return await this.listBandwidthackagesWithOptions(request, runtime);
|
|
17253
19567
|
}
|
|
17254
19568
|
|
|
19569
|
+
async listBasicAccelerateIpEndpointRelationsWithOptions(request: ListBasicAccelerateIpEndpointRelationsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicAccelerateIpEndpointRelationsResponse> {
|
|
19570
|
+
Util.validateModel(request);
|
|
19571
|
+
let query = { };
|
|
19572
|
+
if (!Util.isUnset(request.accelerateIpId)) {
|
|
19573
|
+
query["AccelerateIpId"] = request.accelerateIpId;
|
|
19574
|
+
}
|
|
19575
|
+
|
|
19576
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
19577
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
19578
|
+
}
|
|
19579
|
+
|
|
19580
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
19581
|
+
query["ClientToken"] = request.clientToken;
|
|
19582
|
+
}
|
|
19583
|
+
|
|
19584
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
19585
|
+
query["EndpointId"] = request.endpointId;
|
|
19586
|
+
}
|
|
19587
|
+
|
|
19588
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
19589
|
+
query["MaxResults"] = request.maxResults;
|
|
19590
|
+
}
|
|
19591
|
+
|
|
19592
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
19593
|
+
query["NextToken"] = request.nextToken;
|
|
19594
|
+
}
|
|
19595
|
+
|
|
19596
|
+
if (!Util.isUnset(request.regionId)) {
|
|
19597
|
+
query["RegionId"] = request.regionId;
|
|
19598
|
+
}
|
|
19599
|
+
|
|
19600
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
19601
|
+
query: OpenApiUtil.query(query),
|
|
19602
|
+
});
|
|
19603
|
+
let params = new $OpenApi.Params({
|
|
19604
|
+
action: "ListBasicAccelerateIpEndpointRelations",
|
|
19605
|
+
version: "2019-11-20",
|
|
19606
|
+
protocol: "HTTPS",
|
|
19607
|
+
pathname: "/",
|
|
19608
|
+
method: "POST",
|
|
19609
|
+
authType: "AK",
|
|
19610
|
+
style: "RPC",
|
|
19611
|
+
reqBodyType: "formData",
|
|
19612
|
+
bodyType: "json",
|
|
19613
|
+
});
|
|
19614
|
+
return $tea.cast<ListBasicAccelerateIpEndpointRelationsResponse>(await this.callApi(params, req, runtime), new ListBasicAccelerateIpEndpointRelationsResponse({}));
|
|
19615
|
+
}
|
|
19616
|
+
|
|
19617
|
+
async listBasicAccelerateIpEndpointRelations(request: ListBasicAccelerateIpEndpointRelationsRequest): Promise<ListBasicAccelerateIpEndpointRelationsResponse> {
|
|
19618
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
19619
|
+
return await this.listBasicAccelerateIpEndpointRelationsWithOptions(request, runtime);
|
|
19620
|
+
}
|
|
19621
|
+
|
|
19622
|
+
async listBasicAccelerateIpsWithOptions(request: ListBasicAccelerateIpsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicAccelerateIpsResponse> {
|
|
19623
|
+
Util.validateModel(request);
|
|
19624
|
+
let query = { };
|
|
19625
|
+
if (!Util.isUnset(request.accelerateIpAddress)) {
|
|
19626
|
+
query["AccelerateIpAddress"] = request.accelerateIpAddress;
|
|
19627
|
+
}
|
|
19628
|
+
|
|
19629
|
+
if (!Util.isUnset(request.accelerateIpId)) {
|
|
19630
|
+
query["AccelerateIpId"] = request.accelerateIpId;
|
|
19631
|
+
}
|
|
19632
|
+
|
|
19633
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
19634
|
+
query["ClientToken"] = request.clientToken;
|
|
19635
|
+
}
|
|
19636
|
+
|
|
19637
|
+
if (!Util.isUnset(request.ipSetId)) {
|
|
19638
|
+
query["IpSetId"] = request.ipSetId;
|
|
19639
|
+
}
|
|
19640
|
+
|
|
19641
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
19642
|
+
query["MaxResults"] = request.maxResults;
|
|
19643
|
+
}
|
|
19644
|
+
|
|
19645
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
19646
|
+
query["NextToken"] = request.nextToken;
|
|
19647
|
+
}
|
|
19648
|
+
|
|
19649
|
+
if (!Util.isUnset(request.regionId)) {
|
|
19650
|
+
query["RegionId"] = request.regionId;
|
|
19651
|
+
}
|
|
19652
|
+
|
|
19653
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
19654
|
+
query: OpenApiUtil.query(query),
|
|
19655
|
+
});
|
|
19656
|
+
let params = new $OpenApi.Params({
|
|
19657
|
+
action: "ListBasicAccelerateIps",
|
|
19658
|
+
version: "2019-11-20",
|
|
19659
|
+
protocol: "HTTPS",
|
|
19660
|
+
pathname: "/",
|
|
19661
|
+
method: "POST",
|
|
19662
|
+
authType: "AK",
|
|
19663
|
+
style: "RPC",
|
|
19664
|
+
reqBodyType: "formData",
|
|
19665
|
+
bodyType: "json",
|
|
19666
|
+
});
|
|
19667
|
+
return $tea.cast<ListBasicAccelerateIpsResponse>(await this.callApi(params, req, runtime), new ListBasicAccelerateIpsResponse({}));
|
|
19668
|
+
}
|
|
19669
|
+
|
|
19670
|
+
async listBasicAccelerateIps(request: ListBasicAccelerateIpsRequest): Promise<ListBasicAccelerateIpsResponse> {
|
|
19671
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
19672
|
+
return await this.listBasicAccelerateIpsWithOptions(request, runtime);
|
|
19673
|
+
}
|
|
19674
|
+
|
|
17255
19675
|
async listBasicAcceleratorsWithOptions(request: ListBasicAcceleratorsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicAcceleratorsResponse> {
|
|
17256
19676
|
Util.validateModel(request);
|
|
17257
19677
|
let query = { };
|
|
@@ -17305,6 +19725,63 @@ export default class Client extends OpenApi {
|
|
|
17305
19725
|
return await this.listBasicAcceleratorsWithOptions(request, runtime);
|
|
17306
19726
|
}
|
|
17307
19727
|
|
|
19728
|
+
async listBasicEndpointsWithOptions(request: ListBasicEndpointsRequest, runtime: $Util.RuntimeOptions): Promise<ListBasicEndpointsResponse> {
|
|
19729
|
+
Util.validateModel(request);
|
|
19730
|
+
let query = { };
|
|
19731
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
19732
|
+
query["ClientToken"] = request.clientToken;
|
|
19733
|
+
}
|
|
19734
|
+
|
|
19735
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
19736
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
19737
|
+
}
|
|
19738
|
+
|
|
19739
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
19740
|
+
query["EndpointId"] = request.endpointId;
|
|
19741
|
+
}
|
|
19742
|
+
|
|
19743
|
+
if (!Util.isUnset(request.endpointType)) {
|
|
19744
|
+
query["EndpointType"] = request.endpointType;
|
|
19745
|
+
}
|
|
19746
|
+
|
|
19747
|
+
if (!Util.isUnset(request.maxResults)) {
|
|
19748
|
+
query["MaxResults"] = request.maxResults;
|
|
19749
|
+
}
|
|
19750
|
+
|
|
19751
|
+
if (!Util.isUnset(request.name)) {
|
|
19752
|
+
query["Name"] = request.name;
|
|
19753
|
+
}
|
|
19754
|
+
|
|
19755
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
19756
|
+
query["NextToken"] = request.nextToken;
|
|
19757
|
+
}
|
|
19758
|
+
|
|
19759
|
+
if (!Util.isUnset(request.regionId)) {
|
|
19760
|
+
query["RegionId"] = request.regionId;
|
|
19761
|
+
}
|
|
19762
|
+
|
|
19763
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
19764
|
+
query: OpenApiUtil.query(query),
|
|
19765
|
+
});
|
|
19766
|
+
let params = new $OpenApi.Params({
|
|
19767
|
+
action: "ListBasicEndpoints",
|
|
19768
|
+
version: "2019-11-20",
|
|
19769
|
+
protocol: "HTTPS",
|
|
19770
|
+
pathname: "/",
|
|
19771
|
+
method: "POST",
|
|
19772
|
+
authType: "AK",
|
|
19773
|
+
style: "RPC",
|
|
19774
|
+
reqBodyType: "formData",
|
|
19775
|
+
bodyType: "json",
|
|
19776
|
+
});
|
|
19777
|
+
return $tea.cast<ListBasicEndpointsResponse>(await this.callApi(params, req, runtime), new ListBasicEndpointsResponse({}));
|
|
19778
|
+
}
|
|
19779
|
+
|
|
19780
|
+
async listBasicEndpoints(request: ListBasicEndpointsRequest): Promise<ListBasicEndpointsResponse> {
|
|
19781
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
19782
|
+
return await this.listBasicEndpointsWithOptions(request, runtime);
|
|
19783
|
+
}
|
|
19784
|
+
|
|
17308
19785
|
async listBusiRegionsWithOptions(request: ListBusiRegionsRequest, runtime: $Util.RuntimeOptions): Promise<ListBusiRegionsResponse> {
|
|
17309
19786
|
Util.validateModel(request);
|
|
17310
19787
|
let query = { };
|
|
@@ -17679,6 +20156,10 @@ export default class Client extends OpenApi {
|
|
|
17679
20156
|
query["RegionId"] = request.regionId;
|
|
17680
20157
|
}
|
|
17681
20158
|
|
|
20159
|
+
if (!Util.isUnset(request.tag)) {
|
|
20160
|
+
query["Tag"] = request.tag;
|
|
20161
|
+
}
|
|
20162
|
+
|
|
17682
20163
|
let req = new $OpenApi.OpenApiRequest({
|
|
17683
20164
|
query: OpenApiUtil.query(query),
|
|
17684
20165
|
});
|
|
@@ -18237,6 +20718,59 @@ export default class Client extends OpenApi {
|
|
|
18237
20718
|
return await this.updateAclAttributeWithOptions(request, runtime);
|
|
18238
20719
|
}
|
|
18239
20720
|
|
|
20721
|
+
async updateAdditionalCertificateWithListenerWithOptions(request: UpdateAdditionalCertificateWithListenerRequest, runtime: $Util.RuntimeOptions): Promise<UpdateAdditionalCertificateWithListenerResponse> {
|
|
20722
|
+
Util.validateModel(request);
|
|
20723
|
+
let query = { };
|
|
20724
|
+
if (!Util.isUnset(request.acceleratorId)) {
|
|
20725
|
+
query["AcceleratorId"] = request.acceleratorId;
|
|
20726
|
+
}
|
|
20727
|
+
|
|
20728
|
+
if (!Util.isUnset(request.certificateId)) {
|
|
20729
|
+
query["CertificateId"] = request.certificateId;
|
|
20730
|
+
}
|
|
20731
|
+
|
|
20732
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
20733
|
+
query["ClientToken"] = request.clientToken;
|
|
20734
|
+
}
|
|
20735
|
+
|
|
20736
|
+
if (!Util.isUnset(request.domain)) {
|
|
20737
|
+
query["Domain"] = request.domain;
|
|
20738
|
+
}
|
|
20739
|
+
|
|
20740
|
+
if (!Util.isUnset(request.dryRun)) {
|
|
20741
|
+
query["DryRun"] = request.dryRun;
|
|
20742
|
+
}
|
|
20743
|
+
|
|
20744
|
+
if (!Util.isUnset(request.listenerId)) {
|
|
20745
|
+
query["ListenerId"] = request.listenerId;
|
|
20746
|
+
}
|
|
20747
|
+
|
|
20748
|
+
if (!Util.isUnset(request.regionId)) {
|
|
20749
|
+
query["RegionId"] = request.regionId;
|
|
20750
|
+
}
|
|
20751
|
+
|
|
20752
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
20753
|
+
query: OpenApiUtil.query(query),
|
|
20754
|
+
});
|
|
20755
|
+
let params = new $OpenApi.Params({
|
|
20756
|
+
action: "UpdateAdditionalCertificateWithListener",
|
|
20757
|
+
version: "2019-11-20",
|
|
20758
|
+
protocol: "HTTPS",
|
|
20759
|
+
pathname: "/",
|
|
20760
|
+
method: "POST",
|
|
20761
|
+
authType: "AK",
|
|
20762
|
+
style: "RPC",
|
|
20763
|
+
reqBodyType: "formData",
|
|
20764
|
+
bodyType: "json",
|
|
20765
|
+
});
|
|
20766
|
+
return $tea.cast<UpdateAdditionalCertificateWithListenerResponse>(await this.callApi(params, req, runtime), new UpdateAdditionalCertificateWithListenerResponse({}));
|
|
20767
|
+
}
|
|
20768
|
+
|
|
20769
|
+
async updateAdditionalCertificateWithListener(request: UpdateAdditionalCertificateWithListenerRequest): Promise<UpdateAdditionalCertificateWithListenerResponse> {
|
|
20770
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
20771
|
+
return await this.updateAdditionalCertificateWithListenerWithOptions(request, runtime);
|
|
20772
|
+
}
|
|
20773
|
+
|
|
18240
20774
|
async updateApplicationMonitorWithOptions(request: UpdateApplicationMonitorRequest, runtime: $Util.RuntimeOptions): Promise<UpdateApplicationMonitorResponse> {
|
|
18241
20775
|
Util.validateModel(request);
|
|
18242
20776
|
let query = { };
|
|
@@ -18461,6 +20995,51 @@ export default class Client extends OpenApi {
|
|
|
18461
20995
|
return await this.updateBasicAcceleratorWithOptions(request, runtime);
|
|
18462
20996
|
}
|
|
18463
20997
|
|
|
20998
|
+
async updateBasicEndpointWithOptions(request: UpdateBasicEndpointRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBasicEndpointResponse> {
|
|
20999
|
+
Util.validateModel(request);
|
|
21000
|
+
let query = { };
|
|
21001
|
+
if (!Util.isUnset(request.clientToken)) {
|
|
21002
|
+
query["ClientToken"] = request.clientToken;
|
|
21003
|
+
}
|
|
21004
|
+
|
|
21005
|
+
if (!Util.isUnset(request.endpointGroupId)) {
|
|
21006
|
+
query["EndpointGroupId"] = request.endpointGroupId;
|
|
21007
|
+
}
|
|
21008
|
+
|
|
21009
|
+
if (!Util.isUnset(request.endpointId)) {
|
|
21010
|
+
query["EndpointId"] = request.endpointId;
|
|
21011
|
+
}
|
|
21012
|
+
|
|
21013
|
+
if (!Util.isUnset(request.name)) {
|
|
21014
|
+
query["Name"] = request.name;
|
|
21015
|
+
}
|
|
21016
|
+
|
|
21017
|
+
if (!Util.isUnset(request.regionId)) {
|
|
21018
|
+
query["RegionId"] = request.regionId;
|
|
21019
|
+
}
|
|
21020
|
+
|
|
21021
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
21022
|
+
query: OpenApiUtil.query(query),
|
|
21023
|
+
});
|
|
21024
|
+
let params = new $OpenApi.Params({
|
|
21025
|
+
action: "UpdateBasicEndpoint",
|
|
21026
|
+
version: "2019-11-20",
|
|
21027
|
+
protocol: "HTTPS",
|
|
21028
|
+
pathname: "/",
|
|
21029
|
+
method: "POST",
|
|
21030
|
+
authType: "AK",
|
|
21031
|
+
style: "RPC",
|
|
21032
|
+
reqBodyType: "formData",
|
|
21033
|
+
bodyType: "json",
|
|
21034
|
+
});
|
|
21035
|
+
return $tea.cast<UpdateBasicEndpointResponse>(await this.callApi(params, req, runtime), new UpdateBasicEndpointResponse({}));
|
|
21036
|
+
}
|
|
21037
|
+
|
|
21038
|
+
async updateBasicEndpoint(request: UpdateBasicEndpointRequest): Promise<UpdateBasicEndpointResponse> {
|
|
21039
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
21040
|
+
return await this.updateBasicEndpointWithOptions(request, runtime);
|
|
21041
|
+
}
|
|
21042
|
+
|
|
18464
21043
|
async updateBasicEndpointGroupWithOptions(request: UpdateBasicEndpointGroupRequest, runtime: $Util.RuntimeOptions): Promise<UpdateBasicEndpointGroupResponse> {
|
|
18465
21044
|
Util.validateModel(request);
|
|
18466
21045
|
let query = { };
|
|
@@ -19080,7 +21659,7 @@ export default class Client extends OpenApi {
|
|
|
19080
21659
|
query["SecurityPolicyId"] = request.securityPolicyId;
|
|
19081
21660
|
}
|
|
19082
21661
|
|
|
19083
|
-
if (!Util.isUnset(request.XForwardedForConfig)) {
|
|
21662
|
+
if (!Util.isUnset($tea.toMap(request.XForwardedForConfig))) {
|
|
19084
21663
|
query["XForwardedForConfig"] = request.XForwardedForConfig;
|
|
19085
21664
|
}
|
|
19086
21665
|
|