@alicloud/apig20240327 3.0.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +1560 -121
- package/dist/client.js +903 -54
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +2268 -213
package/dist/client.d.ts
CHANGED
|
@@ -1221,7 +1221,7 @@ export declare class CreateHttpApiOperationResponseBodyData extends $dara.Model
|
|
|
1221
1221
|
export declare class CreateHttpApiRouteRequestBackendConfigServices extends $dara.Model {
|
|
1222
1222
|
/**
|
|
1223
1223
|
* @remarks
|
|
1224
|
-
*
|
|
1224
|
+
* The service port. If you want to use a dynamic port, do not pass this parameter.
|
|
1225
1225
|
*
|
|
1226
1226
|
* @example
|
|
1227
1227
|
* 8080
|
|
@@ -1229,9 +1229,10 @@ export declare class CreateHttpApiRouteRequestBackendConfigServices extends $dar
|
|
|
1229
1229
|
port?: number;
|
|
1230
1230
|
/**
|
|
1231
1231
|
* @remarks
|
|
1232
|
-
*
|
|
1233
|
-
*
|
|
1234
|
-
*
|
|
1232
|
+
* The protocol. Valid values:
|
|
1233
|
+
*
|
|
1234
|
+
* * HTTP
|
|
1235
|
+
* * HTTPS
|
|
1235
1236
|
*
|
|
1236
1237
|
* @example
|
|
1237
1238
|
* HTTP
|
|
@@ -1239,7 +1240,7 @@ export declare class CreateHttpApiRouteRequestBackendConfigServices extends $dar
|
|
|
1239
1240
|
protocol?: string;
|
|
1240
1241
|
/**
|
|
1241
1242
|
* @remarks
|
|
1242
|
-
*
|
|
1243
|
+
* The service ID.
|
|
1243
1244
|
*
|
|
1244
1245
|
* @example
|
|
1245
1246
|
* svc-crbgq0dlhtgr***
|
|
@@ -1247,7 +1248,7 @@ export declare class CreateHttpApiRouteRequestBackendConfigServices extends $dar
|
|
|
1247
1248
|
serviceId?: string;
|
|
1248
1249
|
/**
|
|
1249
1250
|
* @remarks
|
|
1250
|
-
*
|
|
1251
|
+
* The service version. Pass this parameter for tag-based routing.
|
|
1251
1252
|
*
|
|
1252
1253
|
* @example
|
|
1253
1254
|
* v1
|
|
@@ -1255,7 +1256,7 @@ export declare class CreateHttpApiRouteRequestBackendConfigServices extends $dar
|
|
|
1255
1256
|
version?: string;
|
|
1256
1257
|
/**
|
|
1257
1258
|
* @remarks
|
|
1258
|
-
*
|
|
1259
|
+
* The percentage value of traffic.
|
|
1259
1260
|
*
|
|
1260
1261
|
* @example
|
|
1261
1262
|
* 49
|
|
@@ -1275,11 +1276,12 @@ export declare class CreateHttpApiRouteRequestBackendConfigServices extends $dar
|
|
|
1275
1276
|
export declare class CreateHttpApiRouteRequestBackendConfig extends $dara.Model {
|
|
1276
1277
|
/**
|
|
1277
1278
|
* @remarks
|
|
1278
|
-
*
|
|
1279
|
-
*
|
|
1280
|
-
*
|
|
1281
|
-
*
|
|
1282
|
-
*
|
|
1279
|
+
* The scenario of the backend service.
|
|
1280
|
+
*
|
|
1281
|
+
* * SingleService
|
|
1282
|
+
* * MultiServiceByRatio
|
|
1283
|
+
* * Mock
|
|
1284
|
+
* * Redirect
|
|
1283
1285
|
*
|
|
1284
1286
|
* @example
|
|
1285
1287
|
* SingleService
|
|
@@ -1287,7 +1289,7 @@ export declare class CreateHttpApiRouteRequestBackendConfig extends $dara.Model
|
|
|
1287
1289
|
scene?: string;
|
|
1288
1290
|
/**
|
|
1289
1291
|
* @remarks
|
|
1290
|
-
*
|
|
1292
|
+
* The backend services.
|
|
1291
1293
|
*/
|
|
1292
1294
|
services?: CreateHttpApiRouteRequestBackendConfigServices[];
|
|
1293
1295
|
static names(): {
|
|
@@ -1304,7 +1306,7 @@ export declare class CreateHttpApiRouteRequestBackendConfig extends $dara.Model
|
|
|
1304
1306
|
export declare class CreateHttpApiRouteResponseBodyData extends $dara.Model {
|
|
1305
1307
|
/**
|
|
1306
1308
|
* @remarks
|
|
1307
|
-
*
|
|
1309
|
+
* The route ID.
|
|
1308
1310
|
*
|
|
1309
1311
|
* @example
|
|
1310
1312
|
* hr-cr82undlhtgrlej***
|
|
@@ -1323,6 +1325,9 @@ export declare class CreateHttpApiRouteResponseBodyData extends $dara.Model {
|
|
|
1323
1325
|
}
|
|
1324
1326
|
export declare class CreatePolicyResponseBodyData extends $dara.Model {
|
|
1325
1327
|
/**
|
|
1328
|
+
* @remarks
|
|
1329
|
+
* Policy ID
|
|
1330
|
+
*
|
|
1326
1331
|
* @example
|
|
1327
1332
|
* p-cq7l5s5lhtgi6qasr***
|
|
1328
1333
|
*/
|
|
@@ -1340,6 +1345,9 @@ export declare class CreatePolicyResponseBodyData extends $dara.Model {
|
|
|
1340
1345
|
}
|
|
1341
1346
|
export declare class CreatePolicyAttachmentResponseBodyData extends $dara.Model {
|
|
1342
1347
|
/**
|
|
1348
|
+
* @remarks
|
|
1349
|
+
* Policy Mount ID
|
|
1350
|
+
*
|
|
1343
1351
|
* @example
|
|
1344
1352
|
* pr-cqooju5lhtgquuj6***
|
|
1345
1353
|
*/
|
|
@@ -1355,29 +1363,132 @@ export declare class CreatePolicyAttachmentResponseBodyData extends $dara.Model
|
|
|
1355
1363
|
[key: string]: any;
|
|
1356
1364
|
});
|
|
1357
1365
|
}
|
|
1366
|
+
export declare class CreateServiceRequestServiceConfigs extends $dara.Model {
|
|
1367
|
+
/**
|
|
1368
|
+
* @remarks
|
|
1369
|
+
* List of domain names or fixed addresses.
|
|
1370
|
+
*/
|
|
1371
|
+
addresses?: string[];
|
|
1372
|
+
/**
|
|
1373
|
+
* @remarks
|
|
1374
|
+
* AI service configuration.
|
|
1375
|
+
*/
|
|
1376
|
+
aiServiceConfig?: AiServiceConfig;
|
|
1377
|
+
/**
|
|
1378
|
+
* @remarks
|
|
1379
|
+
* List of DNS server addresses.
|
|
1380
|
+
*/
|
|
1381
|
+
dnsServers?: string[];
|
|
1382
|
+
/**
|
|
1383
|
+
* @remarks
|
|
1384
|
+
* Service group name.
|
|
1385
|
+
* Needs to be specified when `sourceType` is MSE_NACOS.
|
|
1386
|
+
*
|
|
1387
|
+
* @example
|
|
1388
|
+
* DEFAULT_GROUP
|
|
1389
|
+
*/
|
|
1390
|
+
groupName?: string;
|
|
1391
|
+
/**
|
|
1392
|
+
* @remarks
|
|
1393
|
+
* Service name.
|
|
1394
|
+
*
|
|
1395
|
+
* @example
|
|
1396
|
+
* user-service
|
|
1397
|
+
*/
|
|
1398
|
+
name?: string;
|
|
1399
|
+
/**
|
|
1400
|
+
* @remarks
|
|
1401
|
+
* Namespace of the service:
|
|
1402
|
+
*
|
|
1403
|
+
* - When `sourceType` is K8S, it represents the namespace where the K8S service is located.
|
|
1404
|
+
* - When `sourceType` is MSE_NACOS, it represents the namespace in Nacos.
|
|
1405
|
+
*
|
|
1406
|
+
* It needs to be specified when `sourceType` is K8S or MSE_NACOS.
|
|
1407
|
+
*
|
|
1408
|
+
* @example
|
|
1409
|
+
* PUBLIC
|
|
1410
|
+
*/
|
|
1411
|
+
namespace?: string;
|
|
1412
|
+
/**
|
|
1413
|
+
* @remarks
|
|
1414
|
+
* Function version or alias.
|
|
1415
|
+
*
|
|
1416
|
+
* @example
|
|
1417
|
+
* LATEST
|
|
1418
|
+
*/
|
|
1419
|
+
qualifier?: string;
|
|
1420
|
+
static names(): {
|
|
1421
|
+
[key: string]: string;
|
|
1422
|
+
};
|
|
1423
|
+
static types(): {
|
|
1424
|
+
[key: string]: any;
|
|
1425
|
+
};
|
|
1426
|
+
validate(): void;
|
|
1427
|
+
constructor(map?: {
|
|
1428
|
+
[key: string]: any;
|
|
1429
|
+
});
|
|
1430
|
+
}
|
|
1431
|
+
export declare class CreateServiceResponseBodyData extends $dara.Model {
|
|
1432
|
+
/**
|
|
1433
|
+
* @remarks
|
|
1434
|
+
* List of service IDs.
|
|
1435
|
+
*/
|
|
1436
|
+
serviceIds?: string[];
|
|
1437
|
+
static names(): {
|
|
1438
|
+
[key: string]: string;
|
|
1439
|
+
};
|
|
1440
|
+
static types(): {
|
|
1441
|
+
[key: string]: any;
|
|
1442
|
+
};
|
|
1443
|
+
validate(): void;
|
|
1444
|
+
constructor(map?: {
|
|
1445
|
+
[key: string]: any;
|
|
1446
|
+
});
|
|
1447
|
+
}
|
|
1358
1448
|
export declare class DeployHttpApiRequestRestApiConfigEnvironmentServiceConfigs extends $dara.Model {
|
|
1449
|
+
/**
|
|
1450
|
+
* @remarks
|
|
1451
|
+
* Configuration of matching conditions related to API deployment.
|
|
1452
|
+
*/
|
|
1359
1453
|
match?: HttpApiBackendMatchConditions;
|
|
1360
1454
|
/**
|
|
1455
|
+
* @remarks
|
|
1456
|
+
* Service port, do not provide for dynamic ports.
|
|
1457
|
+
*
|
|
1361
1458
|
* @example
|
|
1362
1459
|
* 8080
|
|
1363
1460
|
*/
|
|
1364
1461
|
port?: number;
|
|
1365
1462
|
/**
|
|
1463
|
+
* @remarks
|
|
1464
|
+
* Service protocol:
|
|
1465
|
+
* - HTTP.
|
|
1466
|
+
* - HTTPS.
|
|
1467
|
+
*
|
|
1366
1468
|
* @example
|
|
1367
1469
|
* HTTP
|
|
1368
1470
|
*/
|
|
1369
1471
|
protocol?: string;
|
|
1370
1472
|
/**
|
|
1473
|
+
* @remarks
|
|
1474
|
+
* Service ID.
|
|
1475
|
+
*
|
|
1371
1476
|
* @example
|
|
1372
1477
|
* svc-cr6pk4tlhtgm58e***
|
|
1373
1478
|
*/
|
|
1374
1479
|
serviceId?: string;
|
|
1375
1480
|
/**
|
|
1481
|
+
* @remarks
|
|
1482
|
+
* Service version.
|
|
1483
|
+
*
|
|
1376
1484
|
* @example
|
|
1377
1485
|
* v1
|
|
1378
1486
|
*/
|
|
1379
1487
|
version?: string;
|
|
1380
1488
|
/**
|
|
1489
|
+
* @remarks
|
|
1490
|
+
* Weight, range [1,100], valid only in the by-ratio scenario.
|
|
1491
|
+
*
|
|
1381
1492
|
* @example
|
|
1382
1493
|
* 49
|
|
1383
1494
|
*/
|
|
@@ -1395,16 +1506,30 @@ export declare class DeployHttpApiRequestRestApiConfigEnvironmentServiceConfigs
|
|
|
1395
1506
|
}
|
|
1396
1507
|
export declare class DeployHttpApiRequestRestApiConfigEnvironment extends $dara.Model {
|
|
1397
1508
|
/**
|
|
1509
|
+
* @remarks
|
|
1510
|
+
* API publication scenario.
|
|
1511
|
+
*
|
|
1398
1512
|
* @example
|
|
1399
1513
|
* SingleService
|
|
1400
1514
|
*/
|
|
1401
1515
|
backendScene?: string;
|
|
1516
|
+
/**
|
|
1517
|
+
* @remarks
|
|
1518
|
+
* List of user domains.
|
|
1519
|
+
*/
|
|
1402
1520
|
customDomainIds?: string[];
|
|
1403
1521
|
/**
|
|
1522
|
+
* @remarks
|
|
1523
|
+
* Environment ID.
|
|
1524
|
+
*
|
|
1404
1525
|
* @example
|
|
1405
1526
|
* env-cpqnr6tlhtgubc***
|
|
1406
1527
|
*/
|
|
1407
1528
|
environmentId?: string;
|
|
1529
|
+
/**
|
|
1530
|
+
* @remarks
|
|
1531
|
+
* Existing service configurations. Only one entry is allowed in a single-service scenario, while multiple entries are allowed in scenarios such as by ratio or by content.
|
|
1532
|
+
*/
|
|
1408
1533
|
serviceConfigs?: DeployHttpApiRequestRestApiConfigEnvironmentServiceConfigs[];
|
|
1409
1534
|
static names(): {
|
|
1410
1535
|
[key: string]: string;
|
|
@@ -1418,9 +1543,23 @@ export declare class DeployHttpApiRequestRestApiConfigEnvironment extends $dara.
|
|
|
1418
1543
|
});
|
|
1419
1544
|
}
|
|
1420
1545
|
export declare class DeployHttpApiRequestRestApiConfig extends $dara.Model {
|
|
1546
|
+
/**
|
|
1547
|
+
* @remarks
|
|
1548
|
+
* Publication description.
|
|
1549
|
+
*
|
|
1550
|
+
* @example
|
|
1551
|
+
* 用户服务API发布。
|
|
1552
|
+
*/
|
|
1421
1553
|
description?: string;
|
|
1554
|
+
/**
|
|
1555
|
+
* @remarks
|
|
1556
|
+
* Publication environment configuration.
|
|
1557
|
+
*/
|
|
1422
1558
|
environment?: DeployHttpApiRequestRestApiConfigEnvironment;
|
|
1423
1559
|
/**
|
|
1560
|
+
* @remarks
|
|
1561
|
+
* Historical version number. If this field is specified, the publication information will be based on the historical version information.
|
|
1562
|
+
*
|
|
1424
1563
|
* @example
|
|
1425
1564
|
* apr-xxx
|
|
1426
1565
|
*/
|
|
@@ -1458,6 +1597,9 @@ export declare class ExportHttpApiResponseBodyData extends $dara.Model {
|
|
|
1458
1597
|
}
|
|
1459
1598
|
export declare class GetDashboardRequestFilter extends $dara.Model {
|
|
1460
1599
|
/**
|
|
1600
|
+
* @remarks
|
|
1601
|
+
* Route name
|
|
1602
|
+
*
|
|
1461
1603
|
* @example
|
|
1462
1604
|
* test-route
|
|
1463
1605
|
*/
|
|
@@ -1475,21 +1617,33 @@ export declare class GetDashboardRequestFilter extends $dara.Model {
|
|
|
1475
1617
|
}
|
|
1476
1618
|
export declare class GetDashboardResponseBodyData extends $dara.Model {
|
|
1477
1619
|
/**
|
|
1620
|
+
* @remarks
|
|
1621
|
+
* Gateway unique identifier
|
|
1622
|
+
*
|
|
1478
1623
|
* @example
|
|
1479
1624
|
* gw-co370icmjeu****
|
|
1480
1625
|
*/
|
|
1481
1626
|
gatewayId?: string;
|
|
1482
1627
|
/**
|
|
1628
|
+
* @remarks
|
|
1629
|
+
* Dashboard name
|
|
1630
|
+
*
|
|
1483
1631
|
* @example
|
|
1484
1632
|
* PLUGIN
|
|
1485
1633
|
*/
|
|
1486
1634
|
name?: string;
|
|
1487
1635
|
/**
|
|
1636
|
+
* @remarks
|
|
1637
|
+
* Dashboard title
|
|
1638
|
+
*
|
|
1488
1639
|
* @example
|
|
1489
1640
|
* APIG Plugin
|
|
1490
1641
|
*/
|
|
1491
1642
|
title?: string;
|
|
1492
1643
|
/**
|
|
1644
|
+
* @remarks
|
|
1645
|
+
* Dashboard URL link
|
|
1646
|
+
*
|
|
1493
1647
|
* @example
|
|
1494
1648
|
* https://sls.console.aliyun.com/lognext/project/xxxxx
|
|
1495
1649
|
*/
|
|
@@ -1506,7 +1660,18 @@ export declare class GetDashboardResponseBodyData extends $dara.Model {
|
|
|
1506
1660
|
});
|
|
1507
1661
|
}
|
|
1508
1662
|
export declare class GetDomainResponseBodyDataStatisticsInfo extends $dara.Model {
|
|
1663
|
+
/**
|
|
1664
|
+
* @remarks
|
|
1665
|
+
* The array of related resource infomations.
|
|
1666
|
+
*/
|
|
1509
1667
|
resourceStatistics?: ResourceStatistic[];
|
|
1668
|
+
/**
|
|
1669
|
+
* @remarks
|
|
1670
|
+
* The total number of entries returned.
|
|
1671
|
+
*
|
|
1672
|
+
* @example
|
|
1673
|
+
* 1
|
|
1674
|
+
*/
|
|
1510
1675
|
totalCount?: string;
|
|
1511
1676
|
static names(): {
|
|
1512
1677
|
[key: string]: string;
|
|
@@ -1528,7 +1693,21 @@ export declare class GetDomainResponseBodyData extends $dara.Model {
|
|
|
1528
1693
|
* RSA
|
|
1529
1694
|
*/
|
|
1530
1695
|
algorithm?: string;
|
|
1696
|
+
/**
|
|
1697
|
+
* @remarks
|
|
1698
|
+
* CA certificate identifier
|
|
1699
|
+
*
|
|
1700
|
+
* @example
|
|
1701
|
+
* 876****-cn-hangzhou
|
|
1702
|
+
*/
|
|
1531
1703
|
caCertIdentifier?: string;
|
|
1704
|
+
/**
|
|
1705
|
+
* @remarks
|
|
1706
|
+
* Certificate Identifier
|
|
1707
|
+
*
|
|
1708
|
+
* @example
|
|
1709
|
+
* 645****-cn-hangzhou
|
|
1710
|
+
*/
|
|
1532
1711
|
certIdentifier?: string;
|
|
1533
1712
|
/**
|
|
1534
1713
|
* @remarks
|
|
@@ -1538,6 +1717,21 @@ export declare class GetDomainResponseBodyData extends $dara.Model {
|
|
|
1538
1717
|
* test-cert
|
|
1539
1718
|
*/
|
|
1540
1719
|
certName?: string;
|
|
1720
|
+
/**
|
|
1721
|
+
* @remarks
|
|
1722
|
+
* Client CA Cert
|
|
1723
|
+
*
|
|
1724
|
+
* @example
|
|
1725
|
+
* -----BEGIN CERTIFICATE-----
|
|
1726
|
+
* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/mpTQwDQYJKoZIhvcNAQEL
|
|
1727
|
+
* BxSbrGeJ8i0576Gn7Qezyho9abZOUhGaPeoB
|
|
1728
|
+
* AIHWWl428uUSG/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
|
|
1729
|
+
* yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy+ZMJ8r4swA4swHwYDVR0jBBgwFoAU
|
|
1730
|
+
* qroVyYKk7ylhcSn+ZMJ8r4swA4swDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0B
|
|
1731
|
+
* xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=
|
|
1732
|
+
* -----END CERTIFICATE-----
|
|
1733
|
+
*/
|
|
1734
|
+
clientCACert?: string;
|
|
1541
1735
|
/**
|
|
1542
1736
|
* @remarks
|
|
1543
1737
|
* Where it was created from.
|
|
@@ -1594,6 +1788,14 @@ export declare class GetDomainResponseBodyData extends $dara.Model {
|
|
|
1594
1788
|
* Alibaba
|
|
1595
1789
|
*/
|
|
1596
1790
|
issuer?: string;
|
|
1791
|
+
/**
|
|
1792
|
+
* @remarks
|
|
1793
|
+
* true
|
|
1794
|
+
*
|
|
1795
|
+
* @example
|
|
1796
|
+
* false
|
|
1797
|
+
*/
|
|
1798
|
+
mTLSEnabled?: boolean;
|
|
1597
1799
|
/**
|
|
1598
1800
|
* @remarks
|
|
1599
1801
|
* Domain name.
|
|
@@ -1629,6 +1831,13 @@ export declare class GetDomainResponseBodyData extends $dara.Model {
|
|
|
1629
1831
|
* HTTP
|
|
1630
1832
|
*/
|
|
1631
1833
|
protocol?: string;
|
|
1834
|
+
/**
|
|
1835
|
+
* @remarks
|
|
1836
|
+
* The ID of the resource group.
|
|
1837
|
+
*
|
|
1838
|
+
* @example
|
|
1839
|
+
* rg-aekzvlxzgo5b4si
|
|
1840
|
+
*/
|
|
1632
1841
|
resourceGroupId?: string;
|
|
1633
1842
|
/**
|
|
1634
1843
|
* @remarks
|
|
@@ -1638,7 +1847,15 @@ export declare class GetDomainResponseBodyData extends $dara.Model {
|
|
|
1638
1847
|
* aliyun.com
|
|
1639
1848
|
*/
|
|
1640
1849
|
sans?: string;
|
|
1850
|
+
/**
|
|
1851
|
+
* @remarks
|
|
1852
|
+
* The array of domain related resource information
|
|
1853
|
+
*/
|
|
1641
1854
|
statisticsInfo?: GetDomainResponseBodyDataStatisticsInfo;
|
|
1855
|
+
/**
|
|
1856
|
+
* @remarks
|
|
1857
|
+
* The TLS cipher suites config.
|
|
1858
|
+
*/
|
|
1642
1859
|
tlsCipherSuitesConfig?: TlsCipherSuitesConfig;
|
|
1643
1860
|
/**
|
|
1644
1861
|
* @remarks
|
|
@@ -2286,36 +2503,57 @@ export declare class GetGatewayResponseBodyData extends $dara.Model {
|
|
|
2286
2503
|
}
|
|
2287
2504
|
export declare class GetPolicyAttachmentResponseBodyData extends $dara.Model {
|
|
2288
2505
|
/**
|
|
2506
|
+
* @remarks
|
|
2507
|
+
* Attached Resource ID
|
|
2508
|
+
*
|
|
2289
2509
|
* @example
|
|
2290
2510
|
* op-csbkd9llhtgqhqua***
|
|
2291
2511
|
*/
|
|
2292
2512
|
attachResourceId?: string;
|
|
2293
2513
|
/**
|
|
2514
|
+
* @remarks
|
|
2515
|
+
* Attached resource type, HttpApi, GatewayRoute, Operation, GatewayService, GatewayServicePort, Gateway, Domain
|
|
2516
|
+
*
|
|
2294
2517
|
* @example
|
|
2295
2518
|
* Operation
|
|
2296
2519
|
*/
|
|
2297
2520
|
attachResourceType?: string;
|
|
2298
2521
|
/**
|
|
2522
|
+
* @remarks
|
|
2523
|
+
* Policy attachment configuration
|
|
2524
|
+
*
|
|
2299
2525
|
* @example
|
|
2300
2526
|
* {"unitNum":1,"timeUnit":"s","enable":true}
|
|
2301
2527
|
*/
|
|
2302
2528
|
config?: string;
|
|
2303
2529
|
/**
|
|
2530
|
+
* @remarks
|
|
2531
|
+
* Environment ID
|
|
2532
|
+
*
|
|
2304
2533
|
* @example
|
|
2305
2534
|
* env-cq7l5s5lhtgi6qa***
|
|
2306
2535
|
*/
|
|
2307
2536
|
environmentId?: string;
|
|
2308
2537
|
/**
|
|
2538
|
+
* @remarks
|
|
2539
|
+
* Gateway Instance ID
|
|
2540
|
+
*
|
|
2309
2541
|
* @example
|
|
2310
2542
|
* gw-cq2vundlhtg***
|
|
2311
2543
|
*/
|
|
2312
2544
|
gatewayId?: string;
|
|
2313
2545
|
/**
|
|
2546
|
+
* @remarks
|
|
2547
|
+
* Policy Attachment ID
|
|
2548
|
+
*
|
|
2314
2549
|
* @example
|
|
2315
2550
|
* pr-cqoojualhtgquuj***
|
|
2316
2551
|
*/
|
|
2317
2552
|
policyAttachmentId?: string;
|
|
2318
2553
|
/**
|
|
2554
|
+
* @remarks
|
|
2555
|
+
* Policy ID
|
|
2556
|
+
*
|
|
2319
2557
|
* @example
|
|
2320
2558
|
* p-cq7l5s5bblhtgi6qas***
|
|
2321
2559
|
*/
|
|
@@ -2333,11 +2571,17 @@ export declare class GetPolicyAttachmentResponseBodyData extends $dara.Model {
|
|
|
2333
2571
|
}
|
|
2334
2572
|
export declare class GetResourceOverviewResponseBodyDataApi extends $dara.Model {
|
|
2335
2573
|
/**
|
|
2574
|
+
* @remarks
|
|
2575
|
+
* Number of published APIs.
|
|
2576
|
+
*
|
|
2336
2577
|
* @example
|
|
2337
2578
|
* 1
|
|
2338
2579
|
*/
|
|
2339
2580
|
publishedCount?: number;
|
|
2340
2581
|
/**
|
|
2582
|
+
* @remarks
|
|
2583
|
+
* Number of APIs.
|
|
2584
|
+
*
|
|
2341
2585
|
* @example
|
|
2342
2586
|
* 1
|
|
2343
2587
|
*/
|
|
@@ -2355,11 +2599,17 @@ export declare class GetResourceOverviewResponseBodyDataApi extends $dara.Model
|
|
|
2355
2599
|
}
|
|
2356
2600
|
export declare class GetResourceOverviewResponseBodyDataGateway extends $dara.Model {
|
|
2357
2601
|
/**
|
|
2602
|
+
* @remarks
|
|
2603
|
+
* Number of running gateways.
|
|
2604
|
+
*
|
|
2358
2605
|
* @example
|
|
2359
2606
|
* 1
|
|
2360
2607
|
*/
|
|
2361
2608
|
runningCount?: number;
|
|
2362
2609
|
/**
|
|
2610
|
+
* @remarks
|
|
2611
|
+
* Number of gateway instances.
|
|
2612
|
+
*
|
|
2363
2613
|
* @example
|
|
2364
2614
|
* 1
|
|
2365
2615
|
*/
|
|
@@ -2376,7 +2626,15 @@ export declare class GetResourceOverviewResponseBodyDataGateway extends $dara.Mo
|
|
|
2376
2626
|
});
|
|
2377
2627
|
}
|
|
2378
2628
|
export declare class GetResourceOverviewResponseBodyData extends $dara.Model {
|
|
2629
|
+
/**
|
|
2630
|
+
* @remarks
|
|
2631
|
+
* API information.
|
|
2632
|
+
*/
|
|
2379
2633
|
api?: GetResourceOverviewResponseBodyDataApi;
|
|
2634
|
+
/**
|
|
2635
|
+
* @remarks
|
|
2636
|
+
* Gateway information.
|
|
2637
|
+
*/
|
|
2380
2638
|
gateway?: GetResourceOverviewResponseBodyDataGateway;
|
|
2381
2639
|
static names(): {
|
|
2382
2640
|
[key: string]: string;
|
|
@@ -2391,26 +2649,47 @@ export declare class GetResourceOverviewResponseBodyData extends $dara.Model {
|
|
|
2391
2649
|
}
|
|
2392
2650
|
export declare class GetTraceConfigResponseBodyData extends $dara.Model {
|
|
2393
2651
|
/**
|
|
2652
|
+
* @remarks
|
|
2653
|
+
* Whether to Enable Tracing:
|
|
2654
|
+
* true: Enabled
|
|
2655
|
+
* false: Disabled
|
|
2656
|
+
*
|
|
2394
2657
|
* @example
|
|
2395
2658
|
* true
|
|
2396
2659
|
*/
|
|
2397
2660
|
enable?: boolean;
|
|
2398
2661
|
/**
|
|
2662
|
+
* @remarks
|
|
2663
|
+
* Sampling Rate
|
|
2664
|
+
*
|
|
2399
2665
|
* @example
|
|
2400
2666
|
* 50
|
|
2401
2667
|
*/
|
|
2402
2668
|
sampleRatio?: number;
|
|
2403
2669
|
/**
|
|
2670
|
+
* @remarks
|
|
2671
|
+
* Service ID, present when the tracing type is SKYWALKING
|
|
2672
|
+
*
|
|
2404
2673
|
* @example
|
|
2405
2674
|
* ss-co370icmjeu****
|
|
2406
2675
|
*/
|
|
2407
2676
|
serviceId?: string;
|
|
2408
2677
|
/**
|
|
2678
|
+
* @remarks
|
|
2679
|
+
* 服务端口,链路追踪类型为SKYWALKING时存在该参数
|
|
2680
|
+
*
|
|
2409
2681
|
* @example
|
|
2410
2682
|
* 8090
|
|
2411
2683
|
*/
|
|
2412
2684
|
servicePort?: string;
|
|
2413
2685
|
/**
|
|
2686
|
+
* @remarks
|
|
2687
|
+
* Tracing Type:
|
|
2688
|
+
* - XTRACE
|
|
2689
|
+
* - SKYWALKING
|
|
2690
|
+
* - OPENTELEMETRY
|
|
2691
|
+
* - OTSKYWALKING
|
|
2692
|
+
*
|
|
2414
2693
|
* @example
|
|
2415
2694
|
* SKYWALKING
|
|
2416
2695
|
*/
|
|
@@ -3150,6 +3429,10 @@ export declare class ListGatewaysResponseBodyDataItems extends $dara.Model {
|
|
|
3150
3429
|
* Running
|
|
3151
3430
|
*/
|
|
3152
3431
|
status?: string;
|
|
3432
|
+
/**
|
|
3433
|
+
* @remarks
|
|
3434
|
+
* List of sub domain information
|
|
3435
|
+
*/
|
|
3153
3436
|
subDomainInfos?: SubDomainInfo[];
|
|
3154
3437
|
/**
|
|
3155
3438
|
* @remarks
|
|
@@ -3288,12 +3571,12 @@ export declare class ListHttpApiOperationsResponseBodyData extends $dara.Model {
|
|
|
3288
3571
|
[key: string]: any;
|
|
3289
3572
|
});
|
|
3290
3573
|
}
|
|
3291
|
-
export declare class
|
|
3574
|
+
export declare class ListHttpApiRoutesResponseBodyData extends $dara.Model {
|
|
3292
3575
|
/**
|
|
3293
3576
|
* @remarks
|
|
3294
|
-
*
|
|
3577
|
+
* List of routes.
|
|
3295
3578
|
*/
|
|
3296
|
-
items?:
|
|
3579
|
+
items?: HttpRoute[];
|
|
3297
3580
|
/**
|
|
3298
3581
|
* @remarks
|
|
3299
3582
|
* Page number.
|
|
@@ -3307,15 +3590,15 @@ export declare class ListHttpApisResponseBodyData extends $dara.Model {
|
|
|
3307
3590
|
* Page size.
|
|
3308
3591
|
*
|
|
3309
3592
|
* @example
|
|
3310
|
-
*
|
|
3593
|
+
* 20
|
|
3311
3594
|
*/
|
|
3312
3595
|
pageSize?: number;
|
|
3313
3596
|
/**
|
|
3314
3597
|
* @remarks
|
|
3315
|
-
* Total
|
|
3598
|
+
* Total number of items.
|
|
3316
3599
|
*
|
|
3317
3600
|
* @example
|
|
3318
|
-
*
|
|
3601
|
+
* 9
|
|
3319
3602
|
*/
|
|
3320
3603
|
totalSize?: number;
|
|
3321
3604
|
static names(): {
|
|
@@ -3329,19 +3612,32 @@ export declare class ListHttpApisResponseBodyData extends $dara.Model {
|
|
|
3329
3612
|
[key: string]: any;
|
|
3330
3613
|
});
|
|
3331
3614
|
}
|
|
3332
|
-
export declare class
|
|
3333
|
-
items?: PolicyClassInfo[];
|
|
3615
|
+
export declare class ListHttpApisResponseBodyData extends $dara.Model {
|
|
3334
3616
|
/**
|
|
3617
|
+
* @remarks
|
|
3618
|
+
* API information.
|
|
3619
|
+
*/
|
|
3620
|
+
items?: HttpApiInfoByName[];
|
|
3621
|
+
/**
|
|
3622
|
+
* @remarks
|
|
3623
|
+
* Page number.
|
|
3624
|
+
*
|
|
3335
3625
|
* @example
|
|
3336
3626
|
* 1
|
|
3337
3627
|
*/
|
|
3338
3628
|
pageNumber?: number;
|
|
3339
3629
|
/**
|
|
3630
|
+
* @remarks
|
|
3631
|
+
* Page size.
|
|
3632
|
+
*
|
|
3340
3633
|
* @example
|
|
3341
3634
|
* 10
|
|
3342
3635
|
*/
|
|
3343
3636
|
pageSize?: number;
|
|
3344
3637
|
/**
|
|
3638
|
+
* @remarks
|
|
3639
|
+
* Total count.
|
|
3640
|
+
*
|
|
3345
3641
|
* @example
|
|
3346
3642
|
* 10
|
|
3347
3643
|
*/
|
|
@@ -3357,21 +3653,34 @@ export declare class ListPolicyClassesResponseBodyData extends $dara.Model {
|
|
|
3357
3653
|
[key: string]: any;
|
|
3358
3654
|
});
|
|
3359
3655
|
}
|
|
3360
|
-
export declare class
|
|
3361
|
-
|
|
3656
|
+
export declare class ListPolicyClassesResponseBodyData extends $dara.Model {
|
|
3657
|
+
/**
|
|
3658
|
+
* @remarks
|
|
3659
|
+
* List of policy templates
|
|
3660
|
+
*/
|
|
3661
|
+
items?: PolicyClassInfo[];
|
|
3362
3662
|
/**
|
|
3663
|
+
* @remarks
|
|
3664
|
+
* Page number.
|
|
3665
|
+
*
|
|
3363
3666
|
* @example
|
|
3364
3667
|
* 1
|
|
3365
3668
|
*/
|
|
3366
3669
|
pageNumber?: number;
|
|
3367
3670
|
/**
|
|
3671
|
+
* @remarks
|
|
3672
|
+
* Page size
|
|
3673
|
+
*
|
|
3368
3674
|
* @example
|
|
3369
3675
|
* 10
|
|
3370
3676
|
*/
|
|
3371
3677
|
pageSize?: number;
|
|
3372
3678
|
/**
|
|
3679
|
+
* @remarks
|
|
3680
|
+
* Total number of items.
|
|
3681
|
+
*
|
|
3373
3682
|
* @example
|
|
3374
|
-
*
|
|
3683
|
+
* 10
|
|
3375
3684
|
*/
|
|
3376
3685
|
totalSize?: number;
|
|
3377
3686
|
static names(): {
|
|
@@ -3385,8 +3694,93 @@ export declare class ListSslCertsResponseBodyData extends $dara.Model {
|
|
|
3385
3694
|
[key: string]: any;
|
|
3386
3695
|
});
|
|
3387
3696
|
}
|
|
3388
|
-
export declare class
|
|
3697
|
+
export declare class ListServicesResponseBodyData extends $dara.Model {
|
|
3389
3698
|
/**
|
|
3699
|
+
* @remarks
|
|
3700
|
+
* Service list.
|
|
3701
|
+
*/
|
|
3702
|
+
items?: Service[];
|
|
3703
|
+
/**
|
|
3704
|
+
* @remarks
|
|
3705
|
+
* Page number.
|
|
3706
|
+
*
|
|
3707
|
+
* @example
|
|
3708
|
+
* 1
|
|
3709
|
+
*/
|
|
3710
|
+
pageNumber?: number;
|
|
3711
|
+
/**
|
|
3712
|
+
* @remarks
|
|
3713
|
+
* Page size.
|
|
3714
|
+
*
|
|
3715
|
+
* @example
|
|
3716
|
+
* 10
|
|
3717
|
+
*/
|
|
3718
|
+
pageSize?: number;
|
|
3719
|
+
/**
|
|
3720
|
+
* @remarks
|
|
3721
|
+
* Total count.
|
|
3722
|
+
*
|
|
3723
|
+
* @example
|
|
3724
|
+
* 18
|
|
3725
|
+
*/
|
|
3726
|
+
totalSize?: number;
|
|
3727
|
+
static names(): {
|
|
3728
|
+
[key: string]: string;
|
|
3729
|
+
};
|
|
3730
|
+
static types(): {
|
|
3731
|
+
[key: string]: any;
|
|
3732
|
+
};
|
|
3733
|
+
validate(): void;
|
|
3734
|
+
constructor(map?: {
|
|
3735
|
+
[key: string]: any;
|
|
3736
|
+
});
|
|
3737
|
+
}
|
|
3738
|
+
export declare class ListSslCertsResponseBodyData extends $dara.Model {
|
|
3739
|
+
/**
|
|
3740
|
+
* @remarks
|
|
3741
|
+
* List of certificate information.
|
|
3742
|
+
*/
|
|
3743
|
+
items?: SslCertMetaInfo[];
|
|
3744
|
+
/**
|
|
3745
|
+
* @remarks
|
|
3746
|
+
* Page number.
|
|
3747
|
+
*
|
|
3748
|
+
* @example
|
|
3749
|
+
* 1
|
|
3750
|
+
*/
|
|
3751
|
+
pageNumber?: number;
|
|
3752
|
+
/**
|
|
3753
|
+
* @remarks
|
|
3754
|
+
* Page size.
|
|
3755
|
+
*
|
|
3756
|
+
* @example
|
|
3757
|
+
* 10
|
|
3758
|
+
*/
|
|
3759
|
+
pageSize?: number;
|
|
3760
|
+
/**
|
|
3761
|
+
* @remarks
|
|
3762
|
+
* Total count.
|
|
3763
|
+
*
|
|
3764
|
+
* @example
|
|
3765
|
+
* 2
|
|
3766
|
+
*/
|
|
3767
|
+
totalSize?: number;
|
|
3768
|
+
static names(): {
|
|
3769
|
+
[key: string]: string;
|
|
3770
|
+
};
|
|
3771
|
+
static types(): {
|
|
3772
|
+
[key: string]: any;
|
|
3773
|
+
};
|
|
3774
|
+
validate(): void;
|
|
3775
|
+
constructor(map?: {
|
|
3776
|
+
[key: string]: any;
|
|
3777
|
+
});
|
|
3778
|
+
}
|
|
3779
|
+
export declare class ListZonesResponseBodyDataItems extends $dara.Model {
|
|
3780
|
+
/**
|
|
3781
|
+
* @remarks
|
|
3782
|
+
* 可用区ID。
|
|
3783
|
+
*
|
|
3390
3784
|
* @example
|
|
3391
3785
|
* cn-shenzhen-c
|
|
3392
3786
|
*/
|
|
@@ -3403,6 +3797,10 @@ export declare class ListZonesResponseBodyDataItems extends $dara.Model {
|
|
|
3403
3797
|
});
|
|
3404
3798
|
}
|
|
3405
3799
|
export declare class ListZonesResponseBodyData extends $dara.Model {
|
|
3800
|
+
/**
|
|
3801
|
+
* @remarks
|
|
3802
|
+
* List of availability zones.
|
|
3803
|
+
*/
|
|
3406
3804
|
items?: ListZonesResponseBodyDataItems[];
|
|
3407
3805
|
static names(): {
|
|
3408
3806
|
[key: string]: string;
|
|
@@ -3438,7 +3836,7 @@ export declare class UpdateDomainResponseBodyData extends $dara.Model {
|
|
|
3438
3836
|
export declare class UpdateHttpApiRequestIngressConfig extends $dara.Model {
|
|
3439
3837
|
/**
|
|
3440
3838
|
* @remarks
|
|
3441
|
-
*
|
|
3839
|
+
* The environment ID.
|
|
3442
3840
|
*
|
|
3443
3841
|
* @example
|
|
3444
3842
|
* env-cr6ql0tlhtgmc****
|
|
@@ -3446,7 +3844,7 @@ export declare class UpdateHttpApiRequestIngressConfig extends $dara.Model {
|
|
|
3446
3844
|
environmentId?: string;
|
|
3447
3845
|
/**
|
|
3448
3846
|
* @remarks
|
|
3449
|
-
* Ingress
|
|
3847
|
+
* The Ingress class for listening.
|
|
3450
3848
|
*
|
|
3451
3849
|
* @example
|
|
3452
3850
|
* mse
|
|
@@ -3454,7 +3852,7 @@ export declare class UpdateHttpApiRequestIngressConfig extends $dara.Model {
|
|
|
3454
3852
|
ingressClass?: string;
|
|
3455
3853
|
/**
|
|
3456
3854
|
* @remarks
|
|
3457
|
-
*
|
|
3855
|
+
* Specifies whether to update the address in Ingress Status.
|
|
3458
3856
|
*
|
|
3459
3857
|
* @example
|
|
3460
3858
|
* false
|
|
@@ -3462,7 +3860,7 @@ export declare class UpdateHttpApiRequestIngressConfig extends $dara.Model {
|
|
|
3462
3860
|
overrideIngressIp?: boolean;
|
|
3463
3861
|
/**
|
|
3464
3862
|
* @remarks
|
|
3465
|
-
*
|
|
3863
|
+
* The source ID.
|
|
3466
3864
|
*
|
|
3467
3865
|
* @example
|
|
3468
3866
|
* src-crdddallhtgtr****
|
|
@@ -3470,7 +3868,7 @@ export declare class UpdateHttpApiRequestIngressConfig extends $dara.Model {
|
|
|
3470
3868
|
sourceId?: string;
|
|
3471
3869
|
/**
|
|
3472
3870
|
* @remarks
|
|
3473
|
-
*
|
|
3871
|
+
* The namespace for listening.
|
|
3474
3872
|
*
|
|
3475
3873
|
* @example
|
|
3476
3874
|
* default
|
|
@@ -3747,10 +4145,12 @@ export declare class DashboardFilter extends $dara.Model {
|
|
|
3747
4145
|
}
|
|
3748
4146
|
export declare class DomainInfo extends $dara.Model {
|
|
3749
4147
|
certIdentifier?: string;
|
|
4148
|
+
clientCACert?: string;
|
|
3750
4149
|
createFrom?: string;
|
|
3751
4150
|
createTimestamp?: number;
|
|
3752
4151
|
domainId?: string;
|
|
3753
4152
|
forceHttps?: boolean;
|
|
4153
|
+
mTLSEnabled?: boolean;
|
|
3754
4154
|
name?: string;
|
|
3755
4155
|
protocol?: string;
|
|
3756
4156
|
/**
|
|
@@ -4780,21 +5180,33 @@ export declare class AddGatewaySecurityGroupRuleResponse extends $dara.Model {
|
|
|
4780
5180
|
}
|
|
4781
5181
|
export declare class ChangeResourceGroupRequest extends $dara.Model {
|
|
4782
5182
|
/**
|
|
5183
|
+
* @remarks
|
|
5184
|
+
* Target resource group ID.
|
|
5185
|
+
*
|
|
4783
5186
|
* @example
|
|
4784
5187
|
* rg-aekzdrfx2xdnaja
|
|
4785
5188
|
*/
|
|
4786
5189
|
resourceGroupId?: string;
|
|
4787
5190
|
/**
|
|
5191
|
+
* @remarks
|
|
5192
|
+
* Resource ID
|
|
5193
|
+
*
|
|
4788
5194
|
* @example
|
|
4789
5195
|
* gw-ct4i14um1hkn0tpqfae0
|
|
4790
5196
|
*/
|
|
4791
5197
|
resourceId?: string;
|
|
4792
5198
|
/**
|
|
5199
|
+
* @remarks
|
|
5200
|
+
* Resource type
|
|
5201
|
+
*
|
|
4793
5202
|
* @example
|
|
4794
5203
|
* gateway
|
|
4795
5204
|
*/
|
|
4796
5205
|
resourceType?: string;
|
|
4797
5206
|
/**
|
|
5207
|
+
* @remarks
|
|
5208
|
+
* Service name, fixed value apig
|
|
5209
|
+
*
|
|
4798
5210
|
* @example
|
|
4799
5211
|
* apig
|
|
4800
5212
|
*/
|
|
@@ -4812,6 +5224,9 @@ export declare class ChangeResourceGroupRequest extends $dara.Model {
|
|
|
4812
5224
|
}
|
|
4813
5225
|
export declare class ChangeResourceGroupResponseBody extends $dara.Model {
|
|
4814
5226
|
/**
|
|
5227
|
+
* @remarks
|
|
5228
|
+
* Request ID.
|
|
5229
|
+
*
|
|
4815
5230
|
* @example
|
|
4816
5231
|
* 59F86F37-787A-52DB-9475-DB5A255517F0
|
|
4817
5232
|
*/
|
|
@@ -4861,6 +5276,18 @@ export declare class CreateDomainRequest extends $dara.Model {
|
|
|
4861
5276
|
* 1ef1da5f-38ed-69b3-****-037781890265
|
|
4862
5277
|
*/
|
|
4863
5278
|
certIdentifier?: string;
|
|
5279
|
+
/**
|
|
5280
|
+
* @remarks
|
|
5281
|
+
* Client CA Certificate
|
|
5282
|
+
*
|
|
5283
|
+
* @example
|
|
5284
|
+
* -----BEGIN CERTIFICATE-----
|
|
5285
|
+
* MIIFBTCCAu2gAwIBAgIUORLpYPGSFD1YOP6PMbE7Wd/mpTQwDQYJKoZIhvcNAQEL
|
|
5286
|
+
* BQAwE************************************************2VwVOJ2gqX3
|
|
5287
|
+
* YuGaxvIbDy0iQJ1GMerPRyzJTeVEtdIKT29u0PdFRr4KZWom35qX7G4=
|
|
5288
|
+
* -----END CERTIFICATE-----
|
|
5289
|
+
*/
|
|
5290
|
+
clientCACert?: string;
|
|
4864
5291
|
/**
|
|
4865
5292
|
* @remarks
|
|
4866
5293
|
* Set the HTTPS protocol type, whether to enable forced HTTPS redirection.
|
|
@@ -4877,6 +5304,11 @@ export declare class CreateDomainRequest extends $dara.Model {
|
|
|
4877
5304
|
* Open
|
|
4878
5305
|
*/
|
|
4879
5306
|
http2Option?: string;
|
|
5307
|
+
/**
|
|
5308
|
+
* @remarks
|
|
5309
|
+
* Whether to enable mTLS mutual authentication
|
|
5310
|
+
*/
|
|
5311
|
+
mTLSEnabled?: boolean;
|
|
4880
5312
|
/**
|
|
4881
5313
|
* @remarks
|
|
4882
5314
|
* Domain name.
|
|
@@ -5335,25 +5767,25 @@ export declare class CreateHttpApiOperationResponse extends $dara.Model {
|
|
|
5335
5767
|
export declare class CreateHttpApiRouteRequest extends $dara.Model {
|
|
5336
5768
|
/**
|
|
5337
5769
|
* @remarks
|
|
5338
|
-
*
|
|
5770
|
+
* The backend service configurations of the route.
|
|
5339
5771
|
*/
|
|
5340
5772
|
backendConfig?: CreateHttpApiRouteRequestBackendConfig;
|
|
5341
5773
|
/**
|
|
5342
5774
|
* @remarks
|
|
5343
|
-
*
|
|
5775
|
+
* The route description.
|
|
5344
5776
|
*
|
|
5345
5777
|
* @example
|
|
5346
|
-
*
|
|
5778
|
+
* User logon route
|
|
5347
5779
|
*/
|
|
5348
5780
|
description?: string;
|
|
5349
5781
|
/**
|
|
5350
5782
|
* @remarks
|
|
5351
|
-
*
|
|
5783
|
+
* The domain name IDs.
|
|
5352
5784
|
*/
|
|
5353
5785
|
domainIds?: string[];
|
|
5354
5786
|
/**
|
|
5355
5787
|
* @remarks
|
|
5356
|
-
*
|
|
5788
|
+
* The environment ID.
|
|
5357
5789
|
*
|
|
5358
5790
|
* @example
|
|
5359
5791
|
* env-cpqnr6tlhtgubcv***
|
|
@@ -5361,12 +5793,12 @@ export declare class CreateHttpApiRouteRequest extends $dara.Model {
|
|
|
5361
5793
|
environmentId?: string;
|
|
5362
5794
|
/**
|
|
5363
5795
|
* @remarks
|
|
5364
|
-
*
|
|
5796
|
+
* The rule for matching the route.
|
|
5365
5797
|
*/
|
|
5366
5798
|
match?: HttpRouteMatch;
|
|
5367
5799
|
/**
|
|
5368
5800
|
* @remarks
|
|
5369
|
-
*
|
|
5801
|
+
* The route name.
|
|
5370
5802
|
*
|
|
5371
5803
|
* @example
|
|
5372
5804
|
* login
|
|
@@ -5386,7 +5818,7 @@ export declare class CreateHttpApiRouteRequest extends $dara.Model {
|
|
|
5386
5818
|
export declare class CreateHttpApiRouteResponseBody extends $dara.Model {
|
|
5387
5819
|
/**
|
|
5388
5820
|
* @remarks
|
|
5389
|
-
*
|
|
5821
|
+
* The status code.
|
|
5390
5822
|
*
|
|
5391
5823
|
* @example
|
|
5392
5824
|
* Ok
|
|
@@ -5394,12 +5826,12 @@ export declare class CreateHttpApiRouteResponseBody extends $dara.Model {
|
|
|
5394
5826
|
code?: string;
|
|
5395
5827
|
/**
|
|
5396
5828
|
* @remarks
|
|
5397
|
-
*
|
|
5829
|
+
* The response data.
|
|
5398
5830
|
*/
|
|
5399
5831
|
data?: CreateHttpApiRouteResponseBodyData;
|
|
5400
5832
|
/**
|
|
5401
5833
|
* @remarks
|
|
5402
|
-
*
|
|
5834
|
+
* The returned message.
|
|
5403
5835
|
*
|
|
5404
5836
|
* @example
|
|
5405
5837
|
* success
|
|
@@ -5407,7 +5839,7 @@ export declare class CreateHttpApiRouteResponseBody extends $dara.Model {
|
|
|
5407
5839
|
message?: string;
|
|
5408
5840
|
/**
|
|
5409
5841
|
* @remarks
|
|
5410
|
-
*
|
|
5842
|
+
* The request ID.
|
|
5411
5843
|
*
|
|
5412
5844
|
* @example
|
|
5413
5845
|
* 3ACFC7A7-45A9-58CF-B2D5-765B60254695
|
|
@@ -5444,6 +5876,8 @@ export declare class CreateHttpApiRouteResponse extends $dara.Model {
|
|
|
5444
5876
|
export declare class CreatePolicyRequest extends $dara.Model {
|
|
5445
5877
|
/**
|
|
5446
5878
|
* @remarks
|
|
5879
|
+
* Policy type, including RateLimit, ConcurrencyLimit, CircuitBreaker, HttpRewrite, HeaderModify, Cors, Authentication, FlowCopy, Timeout, Retry, IpAccessControl, DirectResponse, Redirect, Fallback, ServiceTls, ServiceLb, ServicePortTls, Waf, JWTAuth, OIDCAuth, ExternalZAuth, AiProxy, ModelRouter, AiStatistics, AiSecurityGuard, AiFallback, ModelMapper, AiTokenRateLimit, AiCache, DynamicRoute
|
|
5880
|
+
*
|
|
5447
5881
|
* This parameter is required.
|
|
5448
5882
|
*
|
|
5449
5883
|
* @example
|
|
@@ -5452,15 +5886,26 @@ export declare class CreatePolicyRequest extends $dara.Model {
|
|
|
5452
5886
|
className?: string;
|
|
5453
5887
|
/**
|
|
5454
5888
|
* @remarks
|
|
5889
|
+
* Policy configuration
|
|
5890
|
+
*
|
|
5455
5891
|
* This parameter is required.
|
|
5456
5892
|
*
|
|
5457
5893
|
* @example
|
|
5458
5894
|
* {"unitNum":1,"timeUnit":"s","enable":true}
|
|
5459
5895
|
*/
|
|
5460
5896
|
config?: string;
|
|
5897
|
+
/**
|
|
5898
|
+
* @remarks
|
|
5899
|
+
* Policy description
|
|
5900
|
+
*
|
|
5901
|
+
* @example
|
|
5902
|
+
* timeout policy
|
|
5903
|
+
*/
|
|
5461
5904
|
description?: string;
|
|
5462
5905
|
/**
|
|
5463
5906
|
* @remarks
|
|
5907
|
+
* Policy name
|
|
5908
|
+
*
|
|
5464
5909
|
* This parameter is required.
|
|
5465
5910
|
*
|
|
5466
5911
|
* @example
|
|
@@ -5480,19 +5925,29 @@ export declare class CreatePolicyRequest extends $dara.Model {
|
|
|
5480
5925
|
}
|
|
5481
5926
|
export declare class CreatePolicyResponseBody extends $dara.Model {
|
|
5482
5927
|
/**
|
|
5928
|
+
* @remarks
|
|
5929
|
+
* Response status code.
|
|
5930
|
+
*
|
|
5483
5931
|
* @example
|
|
5484
5932
|
* Ok
|
|
5485
5933
|
*/
|
|
5486
5934
|
code?: string;
|
|
5935
|
+
/**
|
|
5936
|
+
* @remarks
|
|
5937
|
+
* Response data.
|
|
5938
|
+
*/
|
|
5487
5939
|
data?: CreatePolicyResponseBodyData;
|
|
5488
5940
|
/**
|
|
5941
|
+
* @remarks
|
|
5942
|
+
* Response message.
|
|
5943
|
+
*
|
|
5489
5944
|
* @example
|
|
5490
5945
|
* success
|
|
5491
5946
|
*/
|
|
5492
5947
|
message?: string;
|
|
5493
5948
|
/**
|
|
5494
5949
|
* @remarks
|
|
5495
|
-
*
|
|
5950
|
+
* ID of the request
|
|
5496
5951
|
*
|
|
5497
5952
|
* @example
|
|
5498
5953
|
* 393E2630-DBE7-5221-AB35-9E7406754***
|
|
@@ -5529,6 +5984,8 @@ export declare class CreatePolicyResponse extends $dara.Model {
|
|
|
5529
5984
|
export declare class CreatePolicyAttachmentRequest extends $dara.Model {
|
|
5530
5985
|
/**
|
|
5531
5986
|
* @remarks
|
|
5987
|
+
* Attached resource ID
|
|
5988
|
+
*
|
|
5532
5989
|
* This parameter is required.
|
|
5533
5990
|
*
|
|
5534
5991
|
* @example
|
|
@@ -5537,6 +5994,8 @@ export declare class CreatePolicyAttachmentRequest extends $dara.Model {
|
|
|
5537
5994
|
attachResourceId?: string;
|
|
5538
5995
|
/**
|
|
5539
5996
|
* @remarks
|
|
5997
|
+
* Attached resource type, such as HttpApi, GatewayRoute, Operation, GatewayService, GatewayServicePort, Gateway, Domain
|
|
5998
|
+
*
|
|
5540
5999
|
* This parameter is required.
|
|
5541
6000
|
*
|
|
5542
6001
|
* @example
|
|
@@ -5545,6 +6004,8 @@ export declare class CreatePolicyAttachmentRequest extends $dara.Model {
|
|
|
5545
6004
|
attachResourceType?: string;
|
|
5546
6005
|
/**
|
|
5547
6006
|
* @remarks
|
|
6007
|
+
* Environment ID
|
|
6008
|
+
*
|
|
5548
6009
|
* This parameter is required.
|
|
5549
6010
|
*
|
|
5550
6011
|
* @example
|
|
@@ -5553,6 +6014,8 @@ export declare class CreatePolicyAttachmentRequest extends $dara.Model {
|
|
|
5553
6014
|
environmentId?: string;
|
|
5554
6015
|
/**
|
|
5555
6016
|
* @remarks
|
|
6017
|
+
* Gateway instance ID
|
|
6018
|
+
*
|
|
5556
6019
|
* This parameter is required.
|
|
5557
6020
|
*
|
|
5558
6021
|
* @example
|
|
@@ -5561,6 +6024,8 @@ export declare class CreatePolicyAttachmentRequest extends $dara.Model {
|
|
|
5561
6024
|
gatewayId?: string;
|
|
5562
6025
|
/**
|
|
5563
6026
|
* @remarks
|
|
6027
|
+
* Policy ID
|
|
6028
|
+
*
|
|
5564
6029
|
* This parameter is required.
|
|
5565
6030
|
*
|
|
5566
6031
|
* @example
|
|
@@ -5580,19 +6045,29 @@ export declare class CreatePolicyAttachmentRequest extends $dara.Model {
|
|
|
5580
6045
|
}
|
|
5581
6046
|
export declare class CreatePolicyAttachmentResponseBody extends $dara.Model {
|
|
5582
6047
|
/**
|
|
6048
|
+
* @remarks
|
|
6049
|
+
* Response code.
|
|
6050
|
+
*
|
|
5583
6051
|
* @example
|
|
5584
6052
|
* Ok
|
|
5585
6053
|
*/
|
|
5586
6054
|
code?: string;
|
|
6055
|
+
/**
|
|
6056
|
+
* @remarks
|
|
6057
|
+
* Response data.
|
|
6058
|
+
*/
|
|
5587
6059
|
data?: CreatePolicyAttachmentResponseBodyData;
|
|
5588
6060
|
/**
|
|
6061
|
+
* @remarks
|
|
6062
|
+
* Response message.
|
|
6063
|
+
*
|
|
5589
6064
|
* @example
|
|
5590
6065
|
* success
|
|
5591
6066
|
*/
|
|
5592
6067
|
message?: string;
|
|
5593
6068
|
/**
|
|
5594
6069
|
* @remarks
|
|
5595
|
-
*
|
|
6070
|
+
* ID of the request
|
|
5596
6071
|
*
|
|
5597
6072
|
* @example
|
|
5598
6073
|
* 585657D2-1C20-5B8A-AF17-D727C64***
|
|
@@ -5626,6 +6101,111 @@ export declare class CreatePolicyAttachmentResponse extends $dara.Model {
|
|
|
5626
6101
|
[key: string]: any;
|
|
5627
6102
|
});
|
|
5628
6103
|
}
|
|
6104
|
+
export declare class CreateServiceRequest extends $dara.Model {
|
|
6105
|
+
/**
|
|
6106
|
+
* @remarks
|
|
6107
|
+
* Gateway ID.
|
|
6108
|
+
*
|
|
6109
|
+
* @example
|
|
6110
|
+
* gw-cq7l5s5lhtg***
|
|
6111
|
+
*/
|
|
6112
|
+
gatewayId?: string;
|
|
6113
|
+
/**
|
|
6114
|
+
* @remarks
|
|
6115
|
+
* Resource group ID.
|
|
6116
|
+
*
|
|
6117
|
+
* @example
|
|
6118
|
+
* rg-xxx
|
|
6119
|
+
*/
|
|
6120
|
+
resourceGroupId?: string;
|
|
6121
|
+
/**
|
|
6122
|
+
* @remarks
|
|
6123
|
+
* List of service configuration information.
|
|
6124
|
+
*/
|
|
6125
|
+
serviceConfigs?: CreateServiceRequestServiceConfigs[];
|
|
6126
|
+
/**
|
|
6127
|
+
* @remarks
|
|
6128
|
+
* Service source:
|
|
6129
|
+
* - MSE_NACOS: Services in MSE Nacos.
|
|
6130
|
+
* - K8S: Services in the K8S cluster of container service.
|
|
6131
|
+
* - VIP: Fixed address service.
|
|
6132
|
+
* - DNS: DNS domain name service.
|
|
6133
|
+
* - FC3: Function Compute service.
|
|
6134
|
+
* - SAE_K8S_SERVICE: SAE K8S service.
|
|
6135
|
+
*
|
|
6136
|
+
* @example
|
|
6137
|
+
* MSE_NACOS
|
|
6138
|
+
*/
|
|
6139
|
+
sourceType?: string;
|
|
6140
|
+
static names(): {
|
|
6141
|
+
[key: string]: string;
|
|
6142
|
+
};
|
|
6143
|
+
static types(): {
|
|
6144
|
+
[key: string]: any;
|
|
6145
|
+
};
|
|
6146
|
+
validate(): void;
|
|
6147
|
+
constructor(map?: {
|
|
6148
|
+
[key: string]: any;
|
|
6149
|
+
});
|
|
6150
|
+
}
|
|
6151
|
+
export declare class CreateServiceResponseBody extends $dara.Model {
|
|
6152
|
+
/**
|
|
6153
|
+
* @remarks
|
|
6154
|
+
* Response status code.
|
|
6155
|
+
*
|
|
6156
|
+
* @example
|
|
6157
|
+
* Ok
|
|
6158
|
+
*/
|
|
6159
|
+
code?: string;
|
|
6160
|
+
/**
|
|
6161
|
+
* @remarks
|
|
6162
|
+
* Response data.
|
|
6163
|
+
*/
|
|
6164
|
+
data?: CreateServiceResponseBodyData;
|
|
6165
|
+
/**
|
|
6166
|
+
* @remarks
|
|
6167
|
+
* Response message.
|
|
6168
|
+
*
|
|
6169
|
+
* @example
|
|
6170
|
+
* success
|
|
6171
|
+
*/
|
|
6172
|
+
message?: string;
|
|
6173
|
+
/**
|
|
6174
|
+
* @remarks
|
|
6175
|
+
* Request ID.
|
|
6176
|
+
*
|
|
6177
|
+
* @example
|
|
6178
|
+
* C67DED2B-F19B-5BEC-88C1-D6EB854CD0D4
|
|
6179
|
+
*/
|
|
6180
|
+
requestId?: string;
|
|
6181
|
+
static names(): {
|
|
6182
|
+
[key: string]: string;
|
|
6183
|
+
};
|
|
6184
|
+
static types(): {
|
|
6185
|
+
[key: string]: any;
|
|
6186
|
+
};
|
|
6187
|
+
validate(): void;
|
|
6188
|
+
constructor(map?: {
|
|
6189
|
+
[key: string]: any;
|
|
6190
|
+
});
|
|
6191
|
+
}
|
|
6192
|
+
export declare class CreateServiceResponse extends $dara.Model {
|
|
6193
|
+
headers?: {
|
|
6194
|
+
[key: string]: string;
|
|
6195
|
+
};
|
|
6196
|
+
statusCode?: number;
|
|
6197
|
+
body?: CreateServiceResponseBody;
|
|
6198
|
+
static names(): {
|
|
6199
|
+
[key: string]: string;
|
|
6200
|
+
};
|
|
6201
|
+
static types(): {
|
|
6202
|
+
[key: string]: any;
|
|
6203
|
+
};
|
|
6204
|
+
validate(): void;
|
|
6205
|
+
constructor(map?: {
|
|
6206
|
+
[key: string]: any;
|
|
6207
|
+
});
|
|
6208
|
+
}
|
|
5629
6209
|
export declare class DeleteDomainResponseBody extends $dara.Model {
|
|
5630
6210
|
/**
|
|
5631
6211
|
* @remarks
|
|
@@ -5861,7 +6441,7 @@ export declare class DeleteGatewaySecurityGroupRuleResponse extends $dara.Model
|
|
|
5861
6441
|
export declare class DeleteHttpApiResponseBody extends $dara.Model {
|
|
5862
6442
|
/**
|
|
5863
6443
|
* @remarks
|
|
5864
|
-
*
|
|
6444
|
+
* The status code.
|
|
5865
6445
|
*
|
|
5866
6446
|
* @example
|
|
5867
6447
|
* Ok
|
|
@@ -5869,7 +6449,7 @@ export declare class DeleteHttpApiResponseBody extends $dara.Model {
|
|
|
5869
6449
|
code?: string;
|
|
5870
6450
|
/**
|
|
5871
6451
|
* @remarks
|
|
5872
|
-
*
|
|
6452
|
+
* The returned message.
|
|
5873
6453
|
*
|
|
5874
6454
|
* @example
|
|
5875
6455
|
* success
|
|
@@ -5877,7 +6457,7 @@ export declare class DeleteHttpApiResponseBody extends $dara.Model {
|
|
|
5877
6457
|
message?: string;
|
|
5878
6458
|
/**
|
|
5879
6459
|
* @remarks
|
|
5880
|
-
*
|
|
6460
|
+
* The request ID.
|
|
5881
6461
|
*
|
|
5882
6462
|
* @example
|
|
5883
6463
|
* 5B626361-070A-56A7-B127-ADAC8F3655DB
|
|
@@ -6019,18 +6599,24 @@ export declare class DeleteHttpApiRouteResponse extends $dara.Model {
|
|
|
6019
6599
|
}
|
|
6020
6600
|
export declare class DeletePolicyResponseBody extends $dara.Model {
|
|
6021
6601
|
/**
|
|
6602
|
+
* @remarks
|
|
6603
|
+
* Response status code.
|
|
6604
|
+
*
|
|
6022
6605
|
* @example
|
|
6023
6606
|
* Ok
|
|
6024
6607
|
*/
|
|
6025
6608
|
code?: string;
|
|
6026
6609
|
/**
|
|
6610
|
+
* @remarks
|
|
6611
|
+
* Response message.
|
|
6612
|
+
*
|
|
6027
6613
|
* @example
|
|
6028
6614
|
* success
|
|
6029
6615
|
*/
|
|
6030
6616
|
message?: string;
|
|
6031
6617
|
/**
|
|
6032
6618
|
* @remarks
|
|
6033
|
-
*
|
|
6619
|
+
* ID of the request
|
|
6034
6620
|
*
|
|
6035
6621
|
* @example
|
|
6036
6622
|
* 393E2630-DBE7-5221-AB35-9E7406754***
|
|
@@ -6066,18 +6652,24 @@ export declare class DeletePolicyResponse extends $dara.Model {
|
|
|
6066
6652
|
}
|
|
6067
6653
|
export declare class DeletePolicyAttachmentResponseBody extends $dara.Model {
|
|
6068
6654
|
/**
|
|
6655
|
+
* @remarks
|
|
6656
|
+
* Response status code.
|
|
6657
|
+
*
|
|
6069
6658
|
* @example
|
|
6070
6659
|
* 200
|
|
6071
6660
|
*/
|
|
6072
6661
|
code?: string;
|
|
6073
6662
|
/**
|
|
6663
|
+
* @remarks
|
|
6664
|
+
* Response message.
|
|
6665
|
+
*
|
|
6074
6666
|
* @example
|
|
6075
6667
|
* success
|
|
6076
6668
|
*/
|
|
6077
6669
|
message?: string;
|
|
6078
6670
|
/**
|
|
6079
6671
|
* @remarks
|
|
6080
|
-
*
|
|
6672
|
+
* ID of the request
|
|
6081
6673
|
*
|
|
6082
6674
|
* @example
|
|
6083
6675
|
* CE857A85-251D-5018-8103-A38957D71***
|
|
@@ -6112,9 +6704,16 @@ export declare class DeletePolicyAttachmentResponse extends $dara.Model {
|
|
|
6112
6704
|
});
|
|
6113
6705
|
}
|
|
6114
6706
|
export declare class DeployHttpApiRequest extends $dara.Model {
|
|
6115
|
-
restApiConfig?: DeployHttpApiRequestRestApiConfig;
|
|
6116
6707
|
/**
|
|
6117
|
-
* @
|
|
6708
|
+
* @remarks
|
|
6709
|
+
* Rest API deployment configuration. Required when deploying an HTTP API as a Rest API.
|
|
6710
|
+
*/
|
|
6711
|
+
restApiConfig?: DeployHttpApiRequestRestApiConfig;
|
|
6712
|
+
/**
|
|
6713
|
+
* @remarks
|
|
6714
|
+
* Route ID. This must be provided when publishing the route of an HTTP API.
|
|
6715
|
+
*
|
|
6716
|
+
* @example
|
|
6118
6717
|
* hr-cr82undlhtgrl***
|
|
6119
6718
|
*/
|
|
6120
6719
|
routeId?: string;
|
|
@@ -6131,16 +6730,25 @@ export declare class DeployHttpApiRequest extends $dara.Model {
|
|
|
6131
6730
|
}
|
|
6132
6731
|
export declare class DeployHttpApiResponseBody extends $dara.Model {
|
|
6133
6732
|
/**
|
|
6733
|
+
* @remarks
|
|
6734
|
+
* Response status code.
|
|
6735
|
+
*
|
|
6134
6736
|
* @example
|
|
6135
6737
|
* Ok
|
|
6136
6738
|
*/
|
|
6137
6739
|
code?: string;
|
|
6138
6740
|
/**
|
|
6741
|
+
* @remarks
|
|
6742
|
+
* 响应消息。
|
|
6743
|
+
*
|
|
6139
6744
|
* @example
|
|
6140
6745
|
* success
|
|
6141
6746
|
*/
|
|
6142
6747
|
message?: string;
|
|
6143
6748
|
/**
|
|
6749
|
+
* @remarks
|
|
6750
|
+
* Request ID.
|
|
6751
|
+
*
|
|
6144
6752
|
* @example
|
|
6145
6753
|
* 0C2D1C68-0D93-5561-8EE6-FDB7BF067A30
|
|
6146
6754
|
*/
|
|
@@ -6233,23 +6841,50 @@ export declare class ExportHttpApiResponse extends $dara.Model {
|
|
|
6233
6841
|
}
|
|
6234
6842
|
export declare class GetDashboardRequest extends $dara.Model {
|
|
6235
6843
|
/**
|
|
6844
|
+
* @remarks
|
|
6845
|
+
* zh: Chinese
|
|
6846
|
+
* en: English
|
|
6847
|
+
*
|
|
6236
6848
|
* @example
|
|
6237
6849
|
* zh
|
|
6238
6850
|
*/
|
|
6239
6851
|
acceptLanguage?: string;
|
|
6852
|
+
/**
|
|
6853
|
+
* @remarks
|
|
6854
|
+
* API ID
|
|
6855
|
+
*
|
|
6856
|
+
* @example
|
|
6857
|
+
* api-c9uuekzmia8q2****
|
|
6858
|
+
*/
|
|
6240
6859
|
apiId?: string;
|
|
6860
|
+
/**
|
|
6861
|
+
* @remarks
|
|
6862
|
+
* Filter configuration
|
|
6863
|
+
*/
|
|
6241
6864
|
filter?: GetDashboardRequestFilter;
|
|
6242
6865
|
/**
|
|
6866
|
+
* @remarks
|
|
6867
|
+
* Dashboard name:
|
|
6868
|
+
* - LOG: Access log
|
|
6869
|
+
* - PLUGIN: Plugin log
|
|
6870
|
+
*
|
|
6243
6871
|
* @example
|
|
6244
6872
|
* PLUGIN
|
|
6245
6873
|
*/
|
|
6246
6874
|
name?: string;
|
|
6247
6875
|
/**
|
|
6876
|
+
* @remarks
|
|
6877
|
+
* Plugin ID.
|
|
6878
|
+
*
|
|
6248
6879
|
* @example
|
|
6249
6880
|
* pls-dn82a9djd8z****
|
|
6250
6881
|
*/
|
|
6251
6882
|
pluginClassId?: string;
|
|
6252
6883
|
/**
|
|
6884
|
+
* @remarks
|
|
6885
|
+
* Dashboard source:
|
|
6886
|
+
* - SLS: Log dashboard
|
|
6887
|
+
*
|
|
6253
6888
|
* @example
|
|
6254
6889
|
* SLS
|
|
6255
6890
|
*/
|
|
@@ -6267,23 +6902,50 @@ export declare class GetDashboardRequest extends $dara.Model {
|
|
|
6267
6902
|
}
|
|
6268
6903
|
export declare class GetDashboardShrinkRequest extends $dara.Model {
|
|
6269
6904
|
/**
|
|
6905
|
+
* @remarks
|
|
6906
|
+
* zh: Chinese
|
|
6907
|
+
* en: English
|
|
6908
|
+
*
|
|
6270
6909
|
* @example
|
|
6271
6910
|
* zh
|
|
6272
6911
|
*/
|
|
6273
6912
|
acceptLanguage?: string;
|
|
6913
|
+
/**
|
|
6914
|
+
* @remarks
|
|
6915
|
+
* API ID
|
|
6916
|
+
*
|
|
6917
|
+
* @example
|
|
6918
|
+
* api-c9uuekzmia8q2****
|
|
6919
|
+
*/
|
|
6274
6920
|
apiId?: string;
|
|
6921
|
+
/**
|
|
6922
|
+
* @remarks
|
|
6923
|
+
* Filter configuration
|
|
6924
|
+
*/
|
|
6275
6925
|
filterShrink?: string;
|
|
6276
6926
|
/**
|
|
6927
|
+
* @remarks
|
|
6928
|
+
* Dashboard name:
|
|
6929
|
+
* - LOG: Access log
|
|
6930
|
+
* - PLUGIN: Plugin log
|
|
6931
|
+
*
|
|
6277
6932
|
* @example
|
|
6278
6933
|
* PLUGIN
|
|
6279
6934
|
*/
|
|
6280
6935
|
name?: string;
|
|
6281
6936
|
/**
|
|
6937
|
+
* @remarks
|
|
6938
|
+
* Plugin ID.
|
|
6939
|
+
*
|
|
6282
6940
|
* @example
|
|
6283
6941
|
* pls-dn82a9djd8z****
|
|
6284
6942
|
*/
|
|
6285
6943
|
pluginClassId?: string;
|
|
6286
6944
|
/**
|
|
6945
|
+
* @remarks
|
|
6946
|
+
* Dashboard source:
|
|
6947
|
+
* - SLS: Log dashboard
|
|
6948
|
+
*
|
|
6287
6949
|
* @example
|
|
6288
6950
|
* SLS
|
|
6289
6951
|
*/
|
|
@@ -6301,30 +6963,46 @@ export declare class GetDashboardShrinkRequest extends $dara.Model {
|
|
|
6301
6963
|
}
|
|
6302
6964
|
export declare class GetDashboardResponseBody extends $dara.Model {
|
|
6303
6965
|
/**
|
|
6966
|
+
* @remarks
|
|
6967
|
+
* Response code
|
|
6968
|
+
*
|
|
6304
6969
|
* @example
|
|
6305
6970
|
* 200
|
|
6306
6971
|
*/
|
|
6307
6972
|
code?: number;
|
|
6973
|
+
/**
|
|
6974
|
+
* @remarks
|
|
6975
|
+
* Response data
|
|
6976
|
+
*/
|
|
6308
6977
|
data?: GetDashboardResponseBodyData;
|
|
6309
6978
|
/**
|
|
6979
|
+
* @remarks
|
|
6980
|
+
* Backend error code
|
|
6981
|
+
*
|
|
6310
6982
|
* @example
|
|
6311
6983
|
* Ok
|
|
6312
6984
|
*/
|
|
6313
6985
|
errorCode?: string;
|
|
6314
6986
|
/**
|
|
6987
|
+
* @remarks
|
|
6988
|
+
* Error message
|
|
6989
|
+
*
|
|
6315
6990
|
* @example
|
|
6316
6991
|
* success
|
|
6317
6992
|
*/
|
|
6318
6993
|
message?: string;
|
|
6319
6994
|
/**
|
|
6320
6995
|
* @remarks
|
|
6321
|
-
*
|
|
6996
|
+
* Request ID
|
|
6322
6997
|
*
|
|
6323
6998
|
* @example
|
|
6324
6999
|
* 2F46B9E7-67EF-5C8A-BA52-D38D5B32AF2C
|
|
6325
7000
|
*/
|
|
6326
7001
|
requestId?: string;
|
|
6327
7002
|
/**
|
|
7003
|
+
* @remarks
|
|
7004
|
+
* Whether the request was successful
|
|
7005
|
+
*
|
|
6328
7006
|
* @example
|
|
6329
7007
|
* true
|
|
6330
7008
|
*/
|
|
@@ -6358,6 +7036,13 @@ export declare class GetDashboardResponse extends $dara.Model {
|
|
|
6358
7036
|
});
|
|
6359
7037
|
}
|
|
6360
7038
|
export declare class GetDomainRequest extends $dara.Model {
|
|
7039
|
+
/**
|
|
7040
|
+
* @remarks
|
|
7041
|
+
* Indicates whether include domain related resource information.
|
|
7042
|
+
*
|
|
7043
|
+
* @example
|
|
7044
|
+
* true
|
|
7045
|
+
*/
|
|
6361
7046
|
withStatistics?: boolean;
|
|
6362
7047
|
static names(): {
|
|
6363
7048
|
[key: string]: string;
|
|
@@ -6748,12 +7433,22 @@ export declare class GetHttpApiRouteResponse extends $dara.Model {
|
|
|
6748
7433
|
}
|
|
6749
7434
|
export declare class GetPolicyResponseBody extends $dara.Model {
|
|
6750
7435
|
/**
|
|
7436
|
+
* @remarks
|
|
7437
|
+
* Response code.
|
|
7438
|
+
*
|
|
6751
7439
|
* @example
|
|
6752
7440
|
* Ok
|
|
6753
7441
|
*/
|
|
6754
7442
|
code?: string;
|
|
7443
|
+
/**
|
|
7444
|
+
* @remarks
|
|
7445
|
+
* Response data.
|
|
7446
|
+
*/
|
|
6755
7447
|
data?: PolicyDetailInfo;
|
|
6756
7448
|
/**
|
|
7449
|
+
* @remarks
|
|
7450
|
+
* Response message.
|
|
7451
|
+
*
|
|
6757
7452
|
* @example
|
|
6758
7453
|
* success
|
|
6759
7454
|
*/
|
|
@@ -6796,19 +7491,29 @@ export declare class GetPolicyResponse extends $dara.Model {
|
|
|
6796
7491
|
}
|
|
6797
7492
|
export declare class GetPolicyAttachmentResponseBody extends $dara.Model {
|
|
6798
7493
|
/**
|
|
7494
|
+
* @remarks
|
|
7495
|
+
* Response code.
|
|
7496
|
+
*
|
|
6799
7497
|
* @example
|
|
6800
7498
|
* 200
|
|
6801
7499
|
*/
|
|
6802
7500
|
code?: string;
|
|
7501
|
+
/**
|
|
7502
|
+
* @remarks
|
|
7503
|
+
* Response data.
|
|
7504
|
+
*/
|
|
6803
7505
|
data?: GetPolicyAttachmentResponseBodyData;
|
|
6804
7506
|
/**
|
|
7507
|
+
* @remarks
|
|
7508
|
+
* Response message.
|
|
7509
|
+
*
|
|
6805
7510
|
* @example
|
|
6806
7511
|
* success
|
|
6807
7512
|
*/
|
|
6808
7513
|
message?: string;
|
|
6809
7514
|
/**
|
|
6810
7515
|
* @remarks
|
|
6811
|
-
*
|
|
7516
|
+
* ID of the request
|
|
6812
7517
|
*
|
|
6813
7518
|
* @example
|
|
6814
7519
|
* 2C3B9A12-3868-5EB9-fBEA-F99E03DD1***
|
|
@@ -6844,17 +7549,30 @@ export declare class GetPolicyAttachmentResponse extends $dara.Model {
|
|
|
6844
7549
|
}
|
|
6845
7550
|
export declare class GetResourceOverviewResponseBody extends $dara.Model {
|
|
6846
7551
|
/**
|
|
7552
|
+
* @remarks
|
|
7553
|
+
* Response status code.
|
|
7554
|
+
*
|
|
6847
7555
|
* @example
|
|
6848
7556
|
* Ok
|
|
6849
7557
|
*/
|
|
6850
7558
|
code?: string;
|
|
7559
|
+
/**
|
|
7560
|
+
* @remarks
|
|
7561
|
+
* Resource information.
|
|
7562
|
+
*/
|
|
6851
7563
|
data?: GetResourceOverviewResponseBodyData;
|
|
6852
7564
|
/**
|
|
7565
|
+
* @remarks
|
|
7566
|
+
* Response message.
|
|
7567
|
+
*
|
|
6853
7568
|
* @example
|
|
6854
7569
|
* success
|
|
6855
7570
|
*/
|
|
6856
7571
|
message?: string;
|
|
6857
7572
|
/**
|
|
7573
|
+
* @remarks
|
|
7574
|
+
* Request ID.
|
|
7575
|
+
*
|
|
6858
7576
|
* @example
|
|
6859
7577
|
* DD19A442-93C5-5C97-AFA0-B9C57EBD781B
|
|
6860
7578
|
*/
|
|
@@ -6887,8 +7605,71 @@ export declare class GetResourceOverviewResponse extends $dara.Model {
|
|
|
6887
7605
|
[key: string]: any;
|
|
6888
7606
|
});
|
|
6889
7607
|
}
|
|
7608
|
+
export declare class GetServiceResponseBody extends $dara.Model {
|
|
7609
|
+
/**
|
|
7610
|
+
* @remarks
|
|
7611
|
+
* Response status code.
|
|
7612
|
+
*
|
|
7613
|
+
* @example
|
|
7614
|
+
* Ok
|
|
7615
|
+
*/
|
|
7616
|
+
code?: string;
|
|
7617
|
+
/**
|
|
7618
|
+
* @remarks
|
|
7619
|
+
* Service details data.
|
|
7620
|
+
*/
|
|
7621
|
+
data?: Service;
|
|
7622
|
+
/**
|
|
7623
|
+
* @remarks
|
|
7624
|
+
* Response message.
|
|
7625
|
+
*
|
|
7626
|
+
* @example
|
|
7627
|
+
* success
|
|
7628
|
+
*/
|
|
7629
|
+
message?: string;
|
|
7630
|
+
/**
|
|
7631
|
+
* @remarks
|
|
7632
|
+
* Request ID.
|
|
7633
|
+
*
|
|
7634
|
+
* @example
|
|
7635
|
+
* 8FA9BB94-915B-5299-A694-49FCC7F5DD00
|
|
7636
|
+
*/
|
|
7637
|
+
requestId?: string;
|
|
7638
|
+
static names(): {
|
|
7639
|
+
[key: string]: string;
|
|
7640
|
+
};
|
|
7641
|
+
static types(): {
|
|
7642
|
+
[key: string]: any;
|
|
7643
|
+
};
|
|
7644
|
+
validate(): void;
|
|
7645
|
+
constructor(map?: {
|
|
7646
|
+
[key: string]: any;
|
|
7647
|
+
});
|
|
7648
|
+
}
|
|
7649
|
+
export declare class GetServiceResponse extends $dara.Model {
|
|
7650
|
+
headers?: {
|
|
7651
|
+
[key: string]: string;
|
|
7652
|
+
};
|
|
7653
|
+
statusCode?: number;
|
|
7654
|
+
body?: GetServiceResponseBody;
|
|
7655
|
+
static names(): {
|
|
7656
|
+
[key: string]: string;
|
|
7657
|
+
};
|
|
7658
|
+
static types(): {
|
|
7659
|
+
[key: string]: any;
|
|
7660
|
+
};
|
|
7661
|
+
validate(): void;
|
|
7662
|
+
constructor(map?: {
|
|
7663
|
+
[key: string]: any;
|
|
7664
|
+
});
|
|
7665
|
+
}
|
|
6890
7666
|
export declare class GetTraceConfigRequest extends $dara.Model {
|
|
6891
7667
|
/**
|
|
7668
|
+
* @remarks
|
|
7669
|
+
* Language Type:
|
|
7670
|
+
* zh: Chinese
|
|
7671
|
+
* en: English
|
|
7672
|
+
*
|
|
6892
7673
|
* @example
|
|
6893
7674
|
* zh
|
|
6894
7675
|
*/
|
|
@@ -6906,22 +7687,40 @@ export declare class GetTraceConfigRequest extends $dara.Model {
|
|
|
6906
7687
|
}
|
|
6907
7688
|
export declare class GetTraceConfigResponseBody extends $dara.Model {
|
|
6908
7689
|
/**
|
|
7690
|
+
* @remarks
|
|
7691
|
+
* Response Code
|
|
7692
|
+
*
|
|
6909
7693
|
* @example
|
|
6910
7694
|
* 200
|
|
6911
7695
|
*/
|
|
6912
7696
|
code?: number;
|
|
7697
|
+
/**
|
|
7698
|
+
* @remarks
|
|
7699
|
+
* Response Data
|
|
7700
|
+
*/
|
|
6913
7701
|
data?: GetTraceConfigResponseBodyData;
|
|
6914
7702
|
/**
|
|
7703
|
+
* @remarks
|
|
7704
|
+
* Error Message
|
|
7705
|
+
*
|
|
6915
7706
|
* @example
|
|
6916
7707
|
* success
|
|
6917
7708
|
*/
|
|
6918
7709
|
message?: string;
|
|
6919
7710
|
/**
|
|
7711
|
+
* @remarks
|
|
7712
|
+
* Request ID
|
|
7713
|
+
*
|
|
6920
7714
|
* @example
|
|
6921
7715
|
* 2F46B9E7-67EF-5C8A-BA52-D38D5B32AF2C
|
|
6922
7716
|
*/
|
|
6923
7717
|
requestId?: string;
|
|
6924
7718
|
/**
|
|
7719
|
+
* @remarks
|
|
7720
|
+
* Boolean Request Result, with the following values:
|
|
7721
|
+
* true: Request succeeded.
|
|
7722
|
+
* false: Request failed.
|
|
7723
|
+
*
|
|
6925
7724
|
* @example
|
|
6926
7725
|
* true
|
|
6927
7726
|
*/
|
|
@@ -7676,6 +8475,180 @@ export declare class ListHttpApiOperationsResponse extends $dara.Model {
|
|
|
7676
8475
|
[key: string]: any;
|
|
7677
8476
|
});
|
|
7678
8477
|
}
|
|
8478
|
+
export declare class ListHttpApiRoutesRequest extends $dara.Model {
|
|
8479
|
+
/**
|
|
8480
|
+
* @remarks
|
|
8481
|
+
* Filter the interface list based on a specific consumer authorization rule ID. The interface list in the response will only include authorized interfaces.
|
|
8482
|
+
*
|
|
8483
|
+
* @example
|
|
8484
|
+
* cas-xxx
|
|
8485
|
+
*/
|
|
8486
|
+
consumerAuthorizationRuleId?: string;
|
|
8487
|
+
/**
|
|
8488
|
+
* @remarks
|
|
8489
|
+
* Deployment status of the route.
|
|
8490
|
+
*
|
|
8491
|
+
* @example
|
|
8492
|
+
* NotDeployed
|
|
8493
|
+
*/
|
|
8494
|
+
deployStatuses?: string;
|
|
8495
|
+
/**
|
|
8496
|
+
* @remarks
|
|
8497
|
+
* Filter route information by domain ID.
|
|
8498
|
+
*
|
|
8499
|
+
* @example
|
|
8500
|
+
* d-xxx
|
|
8501
|
+
*/
|
|
8502
|
+
domainId?: string;
|
|
8503
|
+
/**
|
|
8504
|
+
* @remarks
|
|
8505
|
+
* Environment ID.
|
|
8506
|
+
*
|
|
8507
|
+
* @example
|
|
8508
|
+
* env-cpqnr6tlhtgubc***
|
|
8509
|
+
*/
|
|
8510
|
+
environmentId?: string;
|
|
8511
|
+
/**
|
|
8512
|
+
* @remarks
|
|
8513
|
+
* Cloud-native API Gateway ID.
|
|
8514
|
+
*
|
|
8515
|
+
* @example
|
|
8516
|
+
* gw-cpv4sqdl****
|
|
8517
|
+
*/
|
|
8518
|
+
gatewayId?: string;
|
|
8519
|
+
/**
|
|
8520
|
+
* @remarks
|
|
8521
|
+
* Route name.
|
|
8522
|
+
*
|
|
8523
|
+
* @example
|
|
8524
|
+
* itemcenter-gateway
|
|
8525
|
+
*/
|
|
8526
|
+
name?: string;
|
|
8527
|
+
/**
|
|
8528
|
+
* @remarks
|
|
8529
|
+
* Fuzzy search by route name.
|
|
8530
|
+
*
|
|
8531
|
+
* @example
|
|
8532
|
+
* item
|
|
8533
|
+
*/
|
|
8534
|
+
nameLike?: string;
|
|
8535
|
+
/**
|
|
8536
|
+
* @remarks
|
|
8537
|
+
* Page number, starting from 1. Default is 1 if not specified.
|
|
8538
|
+
*
|
|
8539
|
+
* @example
|
|
8540
|
+
* 1
|
|
8541
|
+
*/
|
|
8542
|
+
pageNumber?: number;
|
|
8543
|
+
/**
|
|
8544
|
+
* @remarks
|
|
8545
|
+
* Page size, valid range [1, 100]. Default is 10 if not specified.
|
|
8546
|
+
*
|
|
8547
|
+
* @example
|
|
8548
|
+
* 10
|
|
8549
|
+
*/
|
|
8550
|
+
pageSize?: number;
|
|
8551
|
+
/**
|
|
8552
|
+
* @remarks
|
|
8553
|
+
* Fuzzy search by route path.
|
|
8554
|
+
*
|
|
8555
|
+
* @example
|
|
8556
|
+
* /v1
|
|
8557
|
+
*/
|
|
8558
|
+
pathLike?: string;
|
|
8559
|
+
/**
|
|
8560
|
+
* @remarks
|
|
8561
|
+
* The response includes consumer authorization information.
|
|
8562
|
+
*
|
|
8563
|
+
* @example
|
|
8564
|
+
* true
|
|
8565
|
+
*/
|
|
8566
|
+
withAuthPolicyInfo?: boolean;
|
|
8567
|
+
/**
|
|
8568
|
+
* @remarks
|
|
8569
|
+
* Each route information in the response carries the list of authorization rules for the specified consumer ID.
|
|
8570
|
+
*
|
|
8571
|
+
* @example
|
|
8572
|
+
* cs-xxx
|
|
8573
|
+
*/
|
|
8574
|
+
withConsumerInfoById?: string;
|
|
8575
|
+
/**
|
|
8576
|
+
* @remarks
|
|
8577
|
+
* Each route information in the response carries the attachment information for the specified plugin ID.
|
|
8578
|
+
*
|
|
8579
|
+
* @example
|
|
8580
|
+
* pl-xxx
|
|
8581
|
+
*/
|
|
8582
|
+
withPluginAttachmentByPluginId?: string;
|
|
8583
|
+
static names(): {
|
|
8584
|
+
[key: string]: string;
|
|
8585
|
+
};
|
|
8586
|
+
static types(): {
|
|
8587
|
+
[key: string]: any;
|
|
8588
|
+
};
|
|
8589
|
+
validate(): void;
|
|
8590
|
+
constructor(map?: {
|
|
8591
|
+
[key: string]: any;
|
|
8592
|
+
});
|
|
8593
|
+
}
|
|
8594
|
+
export declare class ListHttpApiRoutesResponseBody extends $dara.Model {
|
|
8595
|
+
/**
|
|
8596
|
+
* @remarks
|
|
8597
|
+
* Response status code.
|
|
8598
|
+
*
|
|
8599
|
+
* @example
|
|
8600
|
+
* Ok
|
|
8601
|
+
*/
|
|
8602
|
+
code?: string;
|
|
8603
|
+
/**
|
|
8604
|
+
* @remarks
|
|
8605
|
+
* Response data.
|
|
8606
|
+
*/
|
|
8607
|
+
data?: ListHttpApiRoutesResponseBodyData;
|
|
8608
|
+
/**
|
|
8609
|
+
* @remarks
|
|
8610
|
+
* Response message.
|
|
8611
|
+
*
|
|
8612
|
+
* @example
|
|
8613
|
+
* success
|
|
8614
|
+
*/
|
|
8615
|
+
message?: string;
|
|
8616
|
+
/**
|
|
8617
|
+
* @remarks
|
|
8618
|
+
* Request ID.
|
|
8619
|
+
*
|
|
8620
|
+
* @example
|
|
8621
|
+
* CBEEB8C1-108E-50F0-9BEA-DED79553C309
|
|
8622
|
+
*/
|
|
8623
|
+
requestId?: string;
|
|
8624
|
+
static names(): {
|
|
8625
|
+
[key: string]: string;
|
|
8626
|
+
};
|
|
8627
|
+
static types(): {
|
|
8628
|
+
[key: string]: any;
|
|
8629
|
+
};
|
|
8630
|
+
validate(): void;
|
|
8631
|
+
constructor(map?: {
|
|
8632
|
+
[key: string]: any;
|
|
8633
|
+
});
|
|
8634
|
+
}
|
|
8635
|
+
export declare class ListHttpApiRoutesResponse extends $dara.Model {
|
|
8636
|
+
headers?: {
|
|
8637
|
+
[key: string]: string;
|
|
8638
|
+
};
|
|
8639
|
+
statusCode?: number;
|
|
8640
|
+
body?: ListHttpApiRoutesResponseBody;
|
|
8641
|
+
static names(): {
|
|
8642
|
+
[key: string]: string;
|
|
8643
|
+
};
|
|
8644
|
+
static types(): {
|
|
8645
|
+
[key: string]: any;
|
|
8646
|
+
};
|
|
8647
|
+
validate(): void;
|
|
8648
|
+
constructor(map?: {
|
|
8649
|
+
[key: string]: any;
|
|
8650
|
+
});
|
|
8651
|
+
}
|
|
7679
8652
|
export declare class ListHttpApisRequest extends $dara.Model {
|
|
7680
8653
|
/**
|
|
7681
8654
|
* @remarks
|
|
@@ -7703,7 +8676,7 @@ export declare class ListHttpApisRequest extends $dara.Model {
|
|
|
7703
8676
|
name?: string;
|
|
7704
8677
|
/**
|
|
7705
8678
|
* @remarks
|
|
7706
|
-
* Page number, starting from 1, default is 1 if not
|
|
8679
|
+
* Page number, starting from 1, default is 1 if not specified.
|
|
7707
8680
|
*
|
|
7708
8681
|
* @example
|
|
7709
8682
|
* 1
|
|
@@ -7711,16 +8684,23 @@ export declare class ListHttpApisRequest extends $dara.Model {
|
|
|
7711
8684
|
pageNumber?: number;
|
|
7712
8685
|
/**
|
|
7713
8686
|
* @remarks
|
|
7714
|
-
* Page size, valid range [1, 100], default is 10 if not
|
|
8687
|
+
* Page size, valid range [1, 100], default is 10 if not specified.
|
|
7715
8688
|
*
|
|
7716
8689
|
* @example
|
|
7717
8690
|
* 10
|
|
7718
8691
|
*/
|
|
7719
8692
|
pageSize?: number;
|
|
8693
|
+
/**
|
|
8694
|
+
* @remarks
|
|
8695
|
+
* Resource group ID.
|
|
8696
|
+
*
|
|
8697
|
+
* @example
|
|
8698
|
+
* rg-ahr5uil8raz0rq3b
|
|
8699
|
+
*/
|
|
7720
8700
|
resourceGroupId?: string;
|
|
7721
8701
|
/**
|
|
7722
8702
|
* @remarks
|
|
7723
|
-
* Type of HTTP API.
|
|
8703
|
+
* Type of HTTP API. Multiple types can be passed, separated by ",".
|
|
7724
8704
|
* - Http
|
|
7725
8705
|
* - Rest
|
|
7726
8706
|
* - WebSocket
|
|
@@ -7732,12 +8712,19 @@ export declare class ListHttpApisRequest extends $dara.Model {
|
|
|
7732
8712
|
types?: string;
|
|
7733
8713
|
/**
|
|
7734
8714
|
* @remarks
|
|
7735
|
-
* Each API information in the response carries consumer authentication policy information
|
|
8715
|
+
* Each API information in the response carries consumer authentication policy information for the specified environment ID.
|
|
7736
8716
|
*
|
|
7737
8717
|
* @example
|
|
7738
8718
|
* env-xxx
|
|
7739
8719
|
*/
|
|
7740
8720
|
withAuthPolicyInEnvironmentId?: string;
|
|
8721
|
+
/**
|
|
8722
|
+
* @remarks
|
|
8723
|
+
* Whether the authentication policy is enabled.
|
|
8724
|
+
*
|
|
8725
|
+
* @example
|
|
8726
|
+
* true
|
|
8727
|
+
*/
|
|
7741
8728
|
withAuthPolicyList?: boolean;
|
|
7742
8729
|
/**
|
|
7743
8730
|
* @remarks
|
|
@@ -7747,9 +8734,37 @@ export declare class ListHttpApisRequest extends $dara.Model {
|
|
|
7747
8734
|
* cs-xxx
|
|
7748
8735
|
*/
|
|
7749
8736
|
withConsumerInfoById?: string;
|
|
8737
|
+
/**
|
|
8738
|
+
* @remarks
|
|
8739
|
+
* Environment information
|
|
8740
|
+
*
|
|
8741
|
+
* @example
|
|
8742
|
+
* true
|
|
8743
|
+
*/
|
|
7750
8744
|
withEnvironmentInfo?: boolean;
|
|
8745
|
+
/**
|
|
8746
|
+
* @remarks
|
|
8747
|
+
* Environment ID
|
|
8748
|
+
*
|
|
8749
|
+
* @example
|
|
8750
|
+
* env-ctovu5mm1hksb4q8ln40
|
|
8751
|
+
*/
|
|
7751
8752
|
withEnvironmentInfoById?: string;
|
|
8753
|
+
/**
|
|
8754
|
+
* @remarks
|
|
8755
|
+
* Ingress information
|
|
8756
|
+
*
|
|
8757
|
+
* @example
|
|
8758
|
+
* false
|
|
8759
|
+
*/
|
|
7752
8760
|
withIngressInfo?: boolean;
|
|
8761
|
+
/**
|
|
8762
|
+
* @remarks
|
|
8763
|
+
* Plugin ID, used to get plugin release information based on this ID.
|
|
8764
|
+
*
|
|
8765
|
+
* @example
|
|
8766
|
+
* pl-ct9qn3um1hktue8dqol0
|
|
8767
|
+
*/
|
|
7753
8768
|
withPluginAttachmentByPluginId?: string;
|
|
7754
8769
|
static names(): {
|
|
7755
8770
|
[key: string]: string;
|
|
@@ -7765,7 +8780,128 @@ export declare class ListHttpApisRequest extends $dara.Model {
|
|
|
7765
8780
|
export declare class ListHttpApisResponseBody extends $dara.Model {
|
|
7766
8781
|
/**
|
|
7767
8782
|
* @remarks
|
|
7768
|
-
* Response status code.
|
|
8783
|
+
* Response status code.
|
|
8784
|
+
*
|
|
8785
|
+
* @example
|
|
8786
|
+
* Ok
|
|
8787
|
+
*/
|
|
8788
|
+
code?: string;
|
|
8789
|
+
/**
|
|
8790
|
+
* @remarks
|
|
8791
|
+
* API list.
|
|
8792
|
+
*/
|
|
8793
|
+
data?: ListHttpApisResponseBodyData;
|
|
8794
|
+
/**
|
|
8795
|
+
* @remarks
|
|
8796
|
+
* Response message.
|
|
8797
|
+
*
|
|
8798
|
+
* @example
|
|
8799
|
+
* success
|
|
8800
|
+
*/
|
|
8801
|
+
message?: string;
|
|
8802
|
+
/**
|
|
8803
|
+
* @remarks
|
|
8804
|
+
* Request ID.
|
|
8805
|
+
*
|
|
8806
|
+
* @example
|
|
8807
|
+
* 585657D2-1C20-5B8A-AF17-D727C6490BE4
|
|
8808
|
+
*/
|
|
8809
|
+
requestId?: string;
|
|
8810
|
+
static names(): {
|
|
8811
|
+
[key: string]: string;
|
|
8812
|
+
};
|
|
8813
|
+
static types(): {
|
|
8814
|
+
[key: string]: any;
|
|
8815
|
+
};
|
|
8816
|
+
validate(): void;
|
|
8817
|
+
constructor(map?: {
|
|
8818
|
+
[key: string]: any;
|
|
8819
|
+
});
|
|
8820
|
+
}
|
|
8821
|
+
export declare class ListHttpApisResponse extends $dara.Model {
|
|
8822
|
+
headers?: {
|
|
8823
|
+
[key: string]: string;
|
|
8824
|
+
};
|
|
8825
|
+
statusCode?: number;
|
|
8826
|
+
body?: ListHttpApisResponseBody;
|
|
8827
|
+
static names(): {
|
|
8828
|
+
[key: string]: string;
|
|
8829
|
+
};
|
|
8830
|
+
static types(): {
|
|
8831
|
+
[key: string]: any;
|
|
8832
|
+
};
|
|
8833
|
+
validate(): void;
|
|
8834
|
+
constructor(map?: {
|
|
8835
|
+
[key: string]: any;
|
|
8836
|
+
});
|
|
8837
|
+
}
|
|
8838
|
+
export declare class ListPolicyClassesRequest extends $dara.Model {
|
|
8839
|
+
/**
|
|
8840
|
+
* @remarks
|
|
8841
|
+
* Types of attachment points supported by the policy.
|
|
8842
|
+
*
|
|
8843
|
+
* - HttpApi: HttpApi.
|
|
8844
|
+
* - Operation: Operation of HttpApi.
|
|
8845
|
+
* - GatewayRoute: Gateway route.
|
|
8846
|
+
* - GatewayService: Gateway service.
|
|
8847
|
+
* - GatewayServicePort: Gateway service port.
|
|
8848
|
+
* - Domain: Gateway domain.
|
|
8849
|
+
* - Gateway: Gateway.
|
|
8850
|
+
*
|
|
8851
|
+
* @example
|
|
8852
|
+
* Operation
|
|
8853
|
+
*/
|
|
8854
|
+
attachResourceType?: string;
|
|
8855
|
+
/**
|
|
8856
|
+
* @remarks
|
|
8857
|
+
* Direction of the policy.
|
|
8858
|
+
* - Outbound: OutBound.
|
|
8859
|
+
* - Inbound: InBound.
|
|
8860
|
+
* - Both directions: Both.
|
|
8861
|
+
*
|
|
8862
|
+
* @example
|
|
8863
|
+
* InBound
|
|
8864
|
+
*/
|
|
8865
|
+
direction?: string;
|
|
8866
|
+
/**
|
|
8867
|
+
* @remarks
|
|
8868
|
+
* Page number, default is 1.
|
|
8869
|
+
*
|
|
8870
|
+
* @example
|
|
8871
|
+
* 1
|
|
8872
|
+
*/
|
|
8873
|
+
pageNumber?: number;
|
|
8874
|
+
/**
|
|
8875
|
+
* @remarks
|
|
8876
|
+
* Page size
|
|
8877
|
+
*
|
|
8878
|
+
* @example
|
|
8879
|
+
* 10
|
|
8880
|
+
*/
|
|
8881
|
+
pageSize?: number;
|
|
8882
|
+
/**
|
|
8883
|
+
* @remarks
|
|
8884
|
+
* Type of the policy template.
|
|
8885
|
+
*
|
|
8886
|
+
* @example
|
|
8887
|
+
* FlowControl
|
|
8888
|
+
*/
|
|
8889
|
+
type?: string;
|
|
8890
|
+
static names(): {
|
|
8891
|
+
[key: string]: string;
|
|
8892
|
+
};
|
|
8893
|
+
static types(): {
|
|
8894
|
+
[key: string]: any;
|
|
8895
|
+
};
|
|
8896
|
+
validate(): void;
|
|
8897
|
+
constructor(map?: {
|
|
8898
|
+
[key: string]: any;
|
|
8899
|
+
});
|
|
8900
|
+
}
|
|
8901
|
+
export declare class ListPolicyClassesResponseBody extends $dara.Model {
|
|
8902
|
+
/**
|
|
8903
|
+
* @remarks
|
|
8904
|
+
* Response code.
|
|
7769
8905
|
*
|
|
7770
8906
|
* @example
|
|
7771
8907
|
* Ok
|
|
@@ -7773,12 +8909,12 @@ export declare class ListHttpApisResponseBody extends $dara.Model {
|
|
|
7773
8909
|
code?: string;
|
|
7774
8910
|
/**
|
|
7775
8911
|
* @remarks
|
|
7776
|
-
*
|
|
8912
|
+
* Policy template information.
|
|
7777
8913
|
*/
|
|
7778
|
-
data?:
|
|
8914
|
+
data?: ListPolicyClassesResponseBodyData;
|
|
7779
8915
|
/**
|
|
7780
8916
|
* @remarks
|
|
7781
|
-
*
|
|
8917
|
+
* ResponseMessage
|
|
7782
8918
|
*
|
|
7783
8919
|
* @example
|
|
7784
8920
|
* success
|
|
@@ -7789,7 +8925,7 @@ export declare class ListHttpApisResponseBody extends $dara.Model {
|
|
|
7789
8925
|
* Request ID.
|
|
7790
8926
|
*
|
|
7791
8927
|
* @example
|
|
7792
|
-
*
|
|
8928
|
+
* 23B45FA9-7208-5E55-B5CE-B6B2567DD822
|
|
7793
8929
|
*/
|
|
7794
8930
|
requestId?: string;
|
|
7795
8931
|
static names(): {
|
|
@@ -7803,12 +8939,12 @@ export declare class ListHttpApisResponseBody extends $dara.Model {
|
|
|
7803
8939
|
[key: string]: any;
|
|
7804
8940
|
});
|
|
7805
8941
|
}
|
|
7806
|
-
export declare class
|
|
8942
|
+
export declare class ListPolicyClassesResponse extends $dara.Model {
|
|
7807
8943
|
headers?: {
|
|
7808
8944
|
[key: string]: string;
|
|
7809
8945
|
};
|
|
7810
8946
|
statusCode?: number;
|
|
7811
|
-
body?:
|
|
8947
|
+
body?: ListPolicyClassesResponseBody;
|
|
7812
8948
|
static names(): {
|
|
7813
8949
|
[key: string]: string;
|
|
7814
8950
|
};
|
|
@@ -7820,32 +8956,60 @@ export declare class ListHttpApisResponse extends $dara.Model {
|
|
|
7820
8956
|
[key: string]: any;
|
|
7821
8957
|
});
|
|
7822
8958
|
}
|
|
7823
|
-
export declare class
|
|
8959
|
+
export declare class ListServicesRequest extends $dara.Model {
|
|
7824
8960
|
/**
|
|
8961
|
+
* @remarks
|
|
8962
|
+
* Cloud-native API Gateway ID.
|
|
8963
|
+
*
|
|
7825
8964
|
* @example
|
|
7826
|
-
*
|
|
8965
|
+
* gw-cpv4sqdl*****
|
|
7827
8966
|
*/
|
|
7828
|
-
|
|
8967
|
+
gatewayId?: string;
|
|
7829
8968
|
/**
|
|
8969
|
+
* @remarks
|
|
8970
|
+
* Exact query by service name.
|
|
8971
|
+
*
|
|
7830
8972
|
* @example
|
|
7831
|
-
*
|
|
8973
|
+
* user-service
|
|
7832
8974
|
*/
|
|
7833
|
-
|
|
8975
|
+
name?: string;
|
|
7834
8976
|
/**
|
|
8977
|
+
* @remarks
|
|
8978
|
+
* Page number, starting from 1. Default is 1 if not specified.
|
|
8979
|
+
*
|
|
7835
8980
|
* @example
|
|
7836
8981
|
* 1
|
|
7837
8982
|
*/
|
|
7838
8983
|
pageNumber?: number;
|
|
7839
8984
|
/**
|
|
8985
|
+
* @remarks
|
|
8986
|
+
* Page size, valid range [1, 100]. Default is 10 if not specified.
|
|
8987
|
+
*
|
|
7840
8988
|
* @example
|
|
7841
8989
|
* 10
|
|
7842
8990
|
*/
|
|
7843
8991
|
pageSize?: number;
|
|
7844
8992
|
/**
|
|
8993
|
+
* @remarks
|
|
8994
|
+
* Resource group ID.
|
|
8995
|
+
*
|
|
7845
8996
|
* @example
|
|
7846
|
-
*
|
|
8997
|
+
* rg-acfmxxe5rc6cvla
|
|
7847
8998
|
*/
|
|
7848
|
-
|
|
8999
|
+
resourceGroupId?: string;
|
|
9000
|
+
/**
|
|
9001
|
+
* @remarks
|
|
9002
|
+
* Query by service source type. Service sources:
|
|
9003
|
+
* - MSE_NACOS: Services from MSE Nacos.
|
|
9004
|
+
* - K8S: Services from K8S clusters in container services.
|
|
9005
|
+
* - FC3: Services from function computing.
|
|
9006
|
+
* - VIP: Services from a fixed address.
|
|
9007
|
+
* - DNS: Services from a domain name.
|
|
9008
|
+
*
|
|
9009
|
+
* @example
|
|
9010
|
+
* MSE_NACOS
|
|
9011
|
+
*/
|
|
9012
|
+
sourceType?: string;
|
|
7849
9013
|
static names(): {
|
|
7850
9014
|
[key: string]: string;
|
|
7851
9015
|
};
|
|
@@ -7857,21 +9021,34 @@ export declare class ListPolicyClassesRequest extends $dara.Model {
|
|
|
7857
9021
|
[key: string]: any;
|
|
7858
9022
|
});
|
|
7859
9023
|
}
|
|
7860
|
-
export declare class
|
|
9024
|
+
export declare class ListServicesResponseBody extends $dara.Model {
|
|
7861
9025
|
/**
|
|
9026
|
+
* @remarks
|
|
9027
|
+
* Response status code.
|
|
9028
|
+
*
|
|
7862
9029
|
* @example
|
|
7863
9030
|
* Ok
|
|
7864
9031
|
*/
|
|
7865
9032
|
code?: string;
|
|
7866
|
-
data?: ListPolicyClassesResponseBodyData;
|
|
7867
9033
|
/**
|
|
9034
|
+
* @remarks
|
|
9035
|
+
* Response data.
|
|
9036
|
+
*/
|
|
9037
|
+
data?: ListServicesResponseBodyData;
|
|
9038
|
+
/**
|
|
9039
|
+
* @remarks
|
|
9040
|
+
* Response message.
|
|
9041
|
+
*
|
|
7868
9042
|
* @example
|
|
7869
9043
|
* success
|
|
7870
9044
|
*/
|
|
7871
9045
|
message?: string;
|
|
7872
9046
|
/**
|
|
9047
|
+
* @remarks
|
|
9048
|
+
* Request ID.
|
|
9049
|
+
*
|
|
7873
9050
|
* @example
|
|
7874
|
-
*
|
|
9051
|
+
* 585657D2-1C20-5B8A-AF17-D727C6490BE4
|
|
7875
9052
|
*/
|
|
7876
9053
|
requestId?: string;
|
|
7877
9054
|
static names(): {
|
|
@@ -7885,12 +9062,12 @@ export declare class ListPolicyClassesResponseBody extends $dara.Model {
|
|
|
7885
9062
|
[key: string]: any;
|
|
7886
9063
|
});
|
|
7887
9064
|
}
|
|
7888
|
-
export declare class
|
|
9065
|
+
export declare class ListServicesResponse extends $dara.Model {
|
|
7889
9066
|
headers?: {
|
|
7890
9067
|
[key: string]: string;
|
|
7891
9068
|
};
|
|
7892
9069
|
statusCode?: number;
|
|
7893
|
-
body?:
|
|
9070
|
+
body?: ListServicesResponseBody;
|
|
7894
9071
|
static names(): {
|
|
7895
9072
|
[key: string]: string;
|
|
7896
9073
|
};
|
|
@@ -7904,21 +9081,33 @@ export declare class ListPolicyClassesResponse extends $dara.Model {
|
|
|
7904
9081
|
}
|
|
7905
9082
|
export declare class ListSslCertsRequest extends $dara.Model {
|
|
7906
9083
|
/**
|
|
9084
|
+
* @remarks
|
|
9085
|
+
* Name matching keyword.
|
|
9086
|
+
*
|
|
7907
9087
|
* @example
|
|
7908
9088
|
* ali
|
|
7909
9089
|
*/
|
|
7910
9090
|
certNameLike?: string;
|
|
7911
9091
|
/**
|
|
9092
|
+
* @remarks
|
|
9093
|
+
* Domain name.
|
|
9094
|
+
*
|
|
7912
9095
|
* @example
|
|
7913
9096
|
* fun.iot.evideocloud.com.cn
|
|
7914
9097
|
*/
|
|
7915
9098
|
domainName?: string;
|
|
7916
9099
|
/**
|
|
9100
|
+
* @remarks
|
|
9101
|
+
* Page number, default is 1
|
|
9102
|
+
*
|
|
7917
9103
|
* @example
|
|
7918
9104
|
* 1
|
|
7919
9105
|
*/
|
|
7920
9106
|
pageNumber?: number;
|
|
7921
9107
|
/**
|
|
9108
|
+
* @remarks
|
|
9109
|
+
* Page size, default is 10
|
|
9110
|
+
*
|
|
7922
9111
|
* @example
|
|
7923
9112
|
* 10
|
|
7924
9113
|
*/
|
|
@@ -7936,17 +9125,30 @@ export declare class ListSslCertsRequest extends $dara.Model {
|
|
|
7936
9125
|
}
|
|
7937
9126
|
export declare class ListSslCertsResponseBody extends $dara.Model {
|
|
7938
9127
|
/**
|
|
9128
|
+
* @remarks
|
|
9129
|
+
* Response status code.
|
|
9130
|
+
*
|
|
7939
9131
|
* @example
|
|
7940
9132
|
* Ok
|
|
7941
9133
|
*/
|
|
7942
9134
|
code?: string;
|
|
9135
|
+
/**
|
|
9136
|
+
* @remarks
|
|
9137
|
+
* Returned data
|
|
9138
|
+
*/
|
|
7943
9139
|
data?: ListSslCertsResponseBodyData;
|
|
7944
9140
|
/**
|
|
9141
|
+
* @remarks
|
|
9142
|
+
* Response message.
|
|
9143
|
+
*
|
|
7945
9144
|
* @example
|
|
7946
9145
|
* success
|
|
7947
9146
|
*/
|
|
7948
9147
|
message?: string;
|
|
7949
9148
|
/**
|
|
9149
|
+
* @remarks
|
|
9150
|
+
* Request ID.
|
|
9151
|
+
*
|
|
7950
9152
|
* @example
|
|
7951
9153
|
* AADF7197-3384-52AF-A2DE-A66696734129
|
|
7952
9154
|
*/
|
|
@@ -7981,17 +9183,30 @@ export declare class ListSslCertsResponse extends $dara.Model {
|
|
|
7981
9183
|
}
|
|
7982
9184
|
export declare class ListZonesResponseBody extends $dara.Model {
|
|
7983
9185
|
/**
|
|
9186
|
+
* @remarks
|
|
9187
|
+
* Response status code.
|
|
9188
|
+
*
|
|
7984
9189
|
* @example
|
|
7985
9190
|
* Ok
|
|
7986
9191
|
*/
|
|
7987
9192
|
code?: string;
|
|
9193
|
+
/**
|
|
9194
|
+
* @remarks
|
|
9195
|
+
* Returned data.
|
|
9196
|
+
*/
|
|
7988
9197
|
data?: ListZonesResponseBodyData;
|
|
7989
9198
|
/**
|
|
9199
|
+
* @remarks
|
|
9200
|
+
* Response message.
|
|
9201
|
+
*
|
|
7990
9202
|
* @example
|
|
7991
9203
|
* success
|
|
7992
9204
|
*/
|
|
7993
9205
|
message?: string;
|
|
7994
9206
|
/**
|
|
9207
|
+
* @remarks
|
|
9208
|
+
* Request ID.
|
|
9209
|
+
*
|
|
7995
9210
|
* @example
|
|
7996
9211
|
* E8079207-B651-592A-A565-23E9EE5673B0
|
|
7997
9212
|
*/
|
|
@@ -8077,9 +9292,101 @@ export declare class RestartGatewayResponse extends $dara.Model {
|
|
|
8077
9292
|
[key: string]: any;
|
|
8078
9293
|
});
|
|
8079
9294
|
}
|
|
9295
|
+
export declare class UndeployHttpApiRequest extends $dara.Model {
|
|
9296
|
+
/**
|
|
9297
|
+
* @example
|
|
9298
|
+
* env-cqsmtellhtgvo***
|
|
9299
|
+
*/
|
|
9300
|
+
environmentId?: string;
|
|
9301
|
+
/**
|
|
9302
|
+
* @example
|
|
9303
|
+
* hr-cr82undlhtgrle***
|
|
9304
|
+
*/
|
|
9305
|
+
routeId?: string;
|
|
9306
|
+
static names(): {
|
|
9307
|
+
[key: string]: string;
|
|
9308
|
+
};
|
|
9309
|
+
static types(): {
|
|
9310
|
+
[key: string]: any;
|
|
9311
|
+
};
|
|
9312
|
+
validate(): void;
|
|
9313
|
+
constructor(map?: {
|
|
9314
|
+
[key: string]: any;
|
|
9315
|
+
});
|
|
9316
|
+
}
|
|
9317
|
+
export declare class UndeployHttpApiResponseBody extends $dara.Model {
|
|
9318
|
+
/**
|
|
9319
|
+
* @example
|
|
9320
|
+
* Ok
|
|
9321
|
+
*/
|
|
9322
|
+
code?: string;
|
|
9323
|
+
/**
|
|
9324
|
+
* @example
|
|
9325
|
+
* success
|
|
9326
|
+
*/
|
|
9327
|
+
message?: string;
|
|
9328
|
+
/**
|
|
9329
|
+
* @example
|
|
9330
|
+
* 3ACFC7A7-45A9-58CF-B2D5-765B60254695
|
|
9331
|
+
*/
|
|
9332
|
+
requestId?: string;
|
|
9333
|
+
static names(): {
|
|
9334
|
+
[key: string]: string;
|
|
9335
|
+
};
|
|
9336
|
+
static types(): {
|
|
9337
|
+
[key: string]: any;
|
|
9338
|
+
};
|
|
9339
|
+
validate(): void;
|
|
9340
|
+
constructor(map?: {
|
|
9341
|
+
[key: string]: any;
|
|
9342
|
+
});
|
|
9343
|
+
}
|
|
9344
|
+
export declare class UndeployHttpApiResponse extends $dara.Model {
|
|
9345
|
+
headers?: {
|
|
9346
|
+
[key: string]: string;
|
|
9347
|
+
};
|
|
9348
|
+
statusCode?: number;
|
|
9349
|
+
body?: UndeployHttpApiResponseBody;
|
|
9350
|
+
static names(): {
|
|
9351
|
+
[key: string]: string;
|
|
9352
|
+
};
|
|
9353
|
+
static types(): {
|
|
9354
|
+
[key: string]: any;
|
|
9355
|
+
};
|
|
9356
|
+
validate(): void;
|
|
9357
|
+
constructor(map?: {
|
|
9358
|
+
[key: string]: any;
|
|
9359
|
+
});
|
|
9360
|
+
}
|
|
8080
9361
|
export declare class UpdateDomainRequest extends $dara.Model {
|
|
9362
|
+
/**
|
|
9363
|
+
* @remarks
|
|
9364
|
+
* CA certificate identifier
|
|
9365
|
+
*
|
|
9366
|
+
* @example
|
|
9367
|
+
* 1ef1da5f-38ed-69b3-****-037781890265
|
|
9368
|
+
*/
|
|
8081
9369
|
caCertIdentifier?: string;
|
|
9370
|
+
/**
|
|
9371
|
+
* @remarks
|
|
9372
|
+
* Certificate identifier
|
|
9373
|
+
*
|
|
9374
|
+
* @example
|
|
9375
|
+
* 1ef1da5f-38ed-69b3-****-037781890265
|
|
9376
|
+
*/
|
|
8082
9377
|
certIdentifier?: string;
|
|
9378
|
+
/**
|
|
9379
|
+
* @remarks
|
|
9380
|
+
* Client CA Certificate
|
|
9381
|
+
*
|
|
9382
|
+
* @example
|
|
9383
|
+
* -----BEGIN CERTIFICATE-----
|
|
9384
|
+
* MIIFBTCCAu2gAwIBAgIUORLpYPGSFD1YOP6PMbE7Wd/mpTQwDQYJKoZIhvcNAQEL
|
|
9385
|
+
* BQAwE************************************************2VwVOJ2gqX3
|
|
9386
|
+
* YuGaxvIbDy0iQJ1GMerPRyzJTeVEtdIKT29u0PdFRr4KZWom35qX7G4=
|
|
9387
|
+
* -----END CERTIFICATE-----
|
|
9388
|
+
*/
|
|
9389
|
+
clientCACert?: string;
|
|
8083
9390
|
/**
|
|
8084
9391
|
* @remarks
|
|
8085
9392
|
* Set the HTTPS protocol type, whether to enable forced HTTPS redirection.
|
|
@@ -8096,6 +9403,11 @@ export declare class UpdateDomainRequest extends $dara.Model {
|
|
|
8096
9403
|
* Open
|
|
8097
9404
|
*/
|
|
8098
9405
|
http2Option?: string;
|
|
9406
|
+
/**
|
|
9407
|
+
* @remarks
|
|
9408
|
+
* Whether to enable mTLS mutual authentication
|
|
9409
|
+
*/
|
|
9410
|
+
mTLSEnabled?: boolean;
|
|
8099
9411
|
/**
|
|
8100
9412
|
* @remarks
|
|
8101
9413
|
* The protocol type supported by the domain.
|
|
@@ -8431,13 +9743,17 @@ export declare class UpdateGatewayNameResponse extends $dara.Model {
|
|
|
8431
9743
|
export declare class UpdateHttpApiRequest extends $dara.Model {
|
|
8432
9744
|
/**
|
|
8433
9745
|
* @remarks
|
|
8434
|
-
*
|
|
9746
|
+
* The AI protocols.
|
|
8435
9747
|
*/
|
|
8436
9748
|
aiProtocols?: string[];
|
|
9749
|
+
/**
|
|
9750
|
+
* @remarks
|
|
9751
|
+
* The authentication configuration.
|
|
9752
|
+
*/
|
|
8437
9753
|
authConfig?: AuthConfig;
|
|
8438
9754
|
/**
|
|
8439
9755
|
* @remarks
|
|
8440
|
-
*
|
|
9756
|
+
* The API base path, which must start with a forward slash (/).
|
|
8441
9757
|
*
|
|
8442
9758
|
* This parameter is required.
|
|
8443
9759
|
*
|
|
@@ -8447,31 +9763,35 @@ export declare class UpdateHttpApiRequest extends $dara.Model {
|
|
|
8447
9763
|
basePath?: string;
|
|
8448
9764
|
/**
|
|
8449
9765
|
* @remarks
|
|
8450
|
-
*
|
|
9766
|
+
* The deployment configurations.
|
|
8451
9767
|
*/
|
|
8452
9768
|
deployConfigs?: HttpApiDeployConfig[];
|
|
8453
9769
|
/**
|
|
8454
9770
|
* @remarks
|
|
8455
|
-
* API description.
|
|
9771
|
+
* The API description.
|
|
8456
9772
|
*
|
|
8457
9773
|
* @example
|
|
8458
|
-
*
|
|
9774
|
+
* API for testing
|
|
8459
9775
|
*/
|
|
8460
9776
|
description?: string;
|
|
9777
|
+
/**
|
|
9778
|
+
* @remarks
|
|
9779
|
+
* Specifies whether to enable authentication.
|
|
9780
|
+
*/
|
|
8461
9781
|
enableAuth?: boolean;
|
|
8462
9782
|
/**
|
|
8463
9783
|
* @remarks
|
|
8464
|
-
*
|
|
9784
|
+
* The HTTP Ingress API configurations.
|
|
8465
9785
|
*/
|
|
8466
9786
|
ingressConfig?: UpdateHttpApiRequestIngressConfig;
|
|
8467
9787
|
/**
|
|
8468
9788
|
* @remarks
|
|
8469
|
-
*
|
|
9789
|
+
* The protocols that are used to access the API.
|
|
8470
9790
|
*/
|
|
8471
9791
|
protocols?: string[];
|
|
8472
9792
|
/**
|
|
8473
9793
|
* @remarks
|
|
8474
|
-
*
|
|
9794
|
+
* The versioning configurations.
|
|
8475
9795
|
*/
|
|
8476
9796
|
versionConfig?: HttpApiVersionConfig;
|
|
8477
9797
|
static names(): {
|
|
@@ -8488,7 +9808,7 @@ export declare class UpdateHttpApiRequest extends $dara.Model {
|
|
|
8488
9808
|
export declare class UpdateHttpApiResponseBody extends $dara.Model {
|
|
8489
9809
|
/**
|
|
8490
9810
|
* @remarks
|
|
8491
|
-
*
|
|
9811
|
+
* The status code.
|
|
8492
9812
|
*
|
|
8493
9813
|
* @example
|
|
8494
9814
|
* Ok
|
|
@@ -8496,7 +9816,7 @@ export declare class UpdateHttpApiResponseBody extends $dara.Model {
|
|
|
8496
9816
|
code?: string;
|
|
8497
9817
|
/**
|
|
8498
9818
|
* @remarks
|
|
8499
|
-
*
|
|
9819
|
+
* The returned message.
|
|
8500
9820
|
*
|
|
8501
9821
|
* @example
|
|
8502
9822
|
* success
|
|
@@ -8504,7 +9824,7 @@ export declare class UpdateHttpApiResponseBody extends $dara.Model {
|
|
|
8504
9824
|
message?: string;
|
|
8505
9825
|
/**
|
|
8506
9826
|
* @remarks
|
|
8507
|
-
*
|
|
9827
|
+
* The request ID.
|
|
8508
9828
|
*
|
|
8509
9829
|
* @example
|
|
8510
9830
|
* 393E2630-DBE7-5221-AB35-9E740675491A
|
|
@@ -8707,15 +10027,26 @@ export declare class UpdateHttpApiRouteResponse extends $dara.Model {
|
|
|
8707
10027
|
export declare class UpdatePolicyRequest extends $dara.Model {
|
|
8708
10028
|
/**
|
|
8709
10029
|
* @remarks
|
|
10030
|
+
* Policy configuration
|
|
10031
|
+
*
|
|
8710
10032
|
* This parameter is required.
|
|
8711
10033
|
*
|
|
8712
10034
|
* @example
|
|
8713
10035
|
* {"unitNum":1,"timeUnit":"s","enable":true}
|
|
8714
10036
|
*/
|
|
8715
10037
|
config?: string;
|
|
10038
|
+
/**
|
|
10039
|
+
* @remarks
|
|
10040
|
+
* Description
|
|
10041
|
+
*
|
|
10042
|
+
* @example
|
|
10043
|
+
* this is a timeout policy description
|
|
10044
|
+
*/
|
|
8716
10045
|
description?: string;
|
|
8717
10046
|
/**
|
|
8718
10047
|
* @remarks
|
|
10048
|
+
* Policy name
|
|
10049
|
+
*
|
|
8719
10050
|
* This parameter is required.
|
|
8720
10051
|
*
|
|
8721
10052
|
* @example
|
|
@@ -8735,16 +10066,25 @@ export declare class UpdatePolicyRequest extends $dara.Model {
|
|
|
8735
10066
|
}
|
|
8736
10067
|
export declare class UpdatePolicyResponseBody extends $dara.Model {
|
|
8737
10068
|
/**
|
|
10069
|
+
* @remarks
|
|
10070
|
+
* Response status code.
|
|
10071
|
+
*
|
|
8738
10072
|
* @example
|
|
8739
10073
|
* Ok
|
|
8740
10074
|
*/
|
|
8741
10075
|
code?: string;
|
|
8742
10076
|
/**
|
|
10077
|
+
* @remarks
|
|
10078
|
+
* Response message.
|
|
10079
|
+
*
|
|
8743
10080
|
* @example
|
|
8744
10081
|
* success
|
|
8745
10082
|
*/
|
|
8746
10083
|
message?: string;
|
|
8747
10084
|
/**
|
|
10085
|
+
* @remarks
|
|
10086
|
+
* Request ID.
|
|
10087
|
+
*
|
|
8748
10088
|
* @example
|
|
8749
10089
|
* C67DED2B-F19B-5BEC-88C1-D6EB854C***
|
|
8750
10090
|
*/
|
|
@@ -8874,7 +10214,7 @@ export default class Client extends OpenApi {
|
|
|
8874
10214
|
*/
|
|
8875
10215
|
addGatewaySecurityGroupRule(gatewayId: string, request: AddGatewaySecurityGroupRuleRequest): Promise<AddGatewaySecurityGroupRuleResponse>;
|
|
8876
10216
|
/**
|
|
8877
|
-
*
|
|
10217
|
+
* Resource Group Transfer
|
|
8878
10218
|
*
|
|
8879
10219
|
* @param request - ChangeResourceGroupRequest
|
|
8880
10220
|
* @param headers - map
|
|
@@ -8885,7 +10225,7 @@ export default class Client extends OpenApi {
|
|
|
8885
10225
|
[key: string]: string;
|
|
8886
10226
|
}, runtime: $dara.RuntimeOptions): Promise<ChangeResourceGroupResponse>;
|
|
8887
10227
|
/**
|
|
8888
|
-
*
|
|
10228
|
+
* Resource Group Transfer
|
|
8889
10229
|
*
|
|
8890
10230
|
* @param request - ChangeResourceGroupRequest
|
|
8891
10231
|
* @returns ChangeResourceGroupResponse
|
|
@@ -8980,7 +10320,7 @@ export default class Client extends OpenApi {
|
|
|
8980
10320
|
*/
|
|
8981
10321
|
createHttpApiOperation(httpApiId: string, request: CreateHttpApiOperationRequest): Promise<CreateHttpApiOperationResponse>;
|
|
8982
10322
|
/**
|
|
8983
|
-
*
|
|
10323
|
+
* Creates a route for an HTTP API.
|
|
8984
10324
|
*
|
|
8985
10325
|
* @param request - CreateHttpApiRouteRequest
|
|
8986
10326
|
* @param headers - map
|
|
@@ -8991,14 +10331,14 @@ export default class Client extends OpenApi {
|
|
|
8991
10331
|
[key: string]: string;
|
|
8992
10332
|
}, runtime: $dara.RuntimeOptions): Promise<CreateHttpApiRouteResponse>;
|
|
8993
10333
|
/**
|
|
8994
|
-
*
|
|
10334
|
+
* Creates a route for an HTTP API.
|
|
8995
10335
|
*
|
|
8996
10336
|
* @param request - CreateHttpApiRouteRequest
|
|
8997
10337
|
* @returns CreateHttpApiRouteResponse
|
|
8998
10338
|
*/
|
|
8999
10339
|
createHttpApiRoute(httpApiId: string, request: CreateHttpApiRouteRequest): Promise<CreateHttpApiRouteResponse>;
|
|
9000
10340
|
/**
|
|
9001
|
-
*
|
|
10341
|
+
* Create Policy
|
|
9002
10342
|
*
|
|
9003
10343
|
* @param request - CreatePolicyRequest
|
|
9004
10344
|
* @param headers - map
|
|
@@ -9009,14 +10349,14 @@ export default class Client extends OpenApi {
|
|
|
9009
10349
|
[key: string]: string;
|
|
9010
10350
|
}, runtime: $dara.RuntimeOptions): Promise<CreatePolicyResponse>;
|
|
9011
10351
|
/**
|
|
9012
|
-
*
|
|
10352
|
+
* Create Policy
|
|
9013
10353
|
*
|
|
9014
10354
|
* @param request - CreatePolicyRequest
|
|
9015
10355
|
* @returns CreatePolicyResponse
|
|
9016
10356
|
*/
|
|
9017
10357
|
createPolicy(request: CreatePolicyRequest): Promise<CreatePolicyResponse>;
|
|
9018
10358
|
/**
|
|
9019
|
-
*
|
|
10359
|
+
* Create policy resource mount
|
|
9020
10360
|
*
|
|
9021
10361
|
* @param request - CreatePolicyAttachmentRequest
|
|
9022
10362
|
* @param headers - map
|
|
@@ -9027,12 +10367,36 @@ export default class Client extends OpenApi {
|
|
|
9027
10367
|
[key: string]: string;
|
|
9028
10368
|
}, runtime: $dara.RuntimeOptions): Promise<CreatePolicyAttachmentResponse>;
|
|
9029
10369
|
/**
|
|
9030
|
-
*
|
|
10370
|
+
* Create policy resource mount
|
|
9031
10371
|
*
|
|
9032
10372
|
* @param request - CreatePolicyAttachmentRequest
|
|
9033
10373
|
* @returns CreatePolicyAttachmentResponse
|
|
9034
10374
|
*/
|
|
9035
10375
|
createPolicyAttachment(request: CreatePolicyAttachmentRequest): Promise<CreatePolicyAttachmentResponse>;
|
|
10376
|
+
/**
|
|
10377
|
+
* Create Service
|
|
10378
|
+
*
|
|
10379
|
+
* @remarks
|
|
10380
|
+
* The interface supports creating multiple services.
|
|
10381
|
+
*
|
|
10382
|
+
* @param request - CreateServiceRequest
|
|
10383
|
+
* @param headers - map
|
|
10384
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
10385
|
+
* @returns CreateServiceResponse
|
|
10386
|
+
*/
|
|
10387
|
+
createServiceWithOptions(request: CreateServiceRequest, headers: {
|
|
10388
|
+
[key: string]: string;
|
|
10389
|
+
}, runtime: $dara.RuntimeOptions): Promise<CreateServiceResponse>;
|
|
10390
|
+
/**
|
|
10391
|
+
* Create Service
|
|
10392
|
+
*
|
|
10393
|
+
* @remarks
|
|
10394
|
+
* The interface supports creating multiple services.
|
|
10395
|
+
*
|
|
10396
|
+
* @param request - CreateServiceRequest
|
|
10397
|
+
* @returns CreateServiceResponse
|
|
10398
|
+
*/
|
|
10399
|
+
createService(request: CreateServiceRequest): Promise<CreateServiceResponse>;
|
|
9036
10400
|
/**
|
|
9037
10401
|
* DeleteDomain
|
|
9038
10402
|
*
|
|
@@ -9101,7 +10465,7 @@ export default class Client extends OpenApi {
|
|
|
9101
10465
|
*/
|
|
9102
10466
|
deleteGatewaySecurityGroupRule(gatewayId: string, securityGroupRuleId: string, request: DeleteGatewaySecurityGroupRuleRequest): Promise<DeleteGatewaySecurityGroupRuleResponse>;
|
|
9103
10467
|
/**
|
|
9104
|
-
*
|
|
10468
|
+
* Deletes an HTTP API.
|
|
9105
10469
|
*
|
|
9106
10470
|
* @param headers - map
|
|
9107
10471
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9111,7 +10475,7 @@ export default class Client extends OpenApi {
|
|
|
9111
10475
|
[key: string]: string;
|
|
9112
10476
|
}, runtime: $dara.RuntimeOptions): Promise<DeleteHttpApiResponse>;
|
|
9113
10477
|
/**
|
|
9114
|
-
*
|
|
10478
|
+
* Deletes an HTTP API.
|
|
9115
10479
|
* @returns DeleteHttpApiResponse
|
|
9116
10480
|
*/
|
|
9117
10481
|
deleteHttpApi(httpApiId: string): Promise<DeleteHttpApiResponse>;
|
|
@@ -9146,7 +10510,7 @@ export default class Client extends OpenApi {
|
|
|
9146
10510
|
*/
|
|
9147
10511
|
deleteHttpApiRoute(httpApiId: string, routeId: string): Promise<DeleteHttpApiRouteResponse>;
|
|
9148
10512
|
/**
|
|
9149
|
-
*
|
|
10513
|
+
* Delete Policy
|
|
9150
10514
|
*
|
|
9151
10515
|
* @param headers - map
|
|
9152
10516
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9156,12 +10520,12 @@ export default class Client extends OpenApi {
|
|
|
9156
10520
|
[key: string]: string;
|
|
9157
10521
|
}, runtime: $dara.RuntimeOptions): Promise<DeletePolicyResponse>;
|
|
9158
10522
|
/**
|
|
9159
|
-
*
|
|
10523
|
+
* Delete Policy
|
|
9160
10524
|
* @returns DeletePolicyResponse
|
|
9161
10525
|
*/
|
|
9162
10526
|
deletePolicy(policyId: string): Promise<DeletePolicyResponse>;
|
|
9163
10527
|
/**
|
|
9164
|
-
*
|
|
10528
|
+
* Delete policy resource attachment
|
|
9165
10529
|
*
|
|
9166
10530
|
* @param headers - map
|
|
9167
10531
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9171,12 +10535,12 @@ export default class Client extends OpenApi {
|
|
|
9171
10535
|
[key: string]: string;
|
|
9172
10536
|
}, runtime: $dara.RuntimeOptions): Promise<DeletePolicyAttachmentResponse>;
|
|
9173
10537
|
/**
|
|
9174
|
-
*
|
|
10538
|
+
* Delete policy resource attachment
|
|
9175
10539
|
* @returns DeletePolicyAttachmentResponse
|
|
9176
10540
|
*/
|
|
9177
10541
|
deletePolicyAttachment(policyAttachmentId: string): Promise<DeletePolicyAttachmentResponse>;
|
|
9178
10542
|
/**
|
|
9179
|
-
*
|
|
10543
|
+
* Deploy HttpApi
|
|
9180
10544
|
*
|
|
9181
10545
|
* @param request - DeployHttpApiRequest
|
|
9182
10546
|
* @param headers - map
|
|
@@ -9187,7 +10551,7 @@ export default class Client extends OpenApi {
|
|
|
9187
10551
|
[key: string]: string;
|
|
9188
10552
|
}, runtime: $dara.RuntimeOptions): Promise<DeployHttpApiResponse>;
|
|
9189
10553
|
/**
|
|
9190
|
-
*
|
|
10554
|
+
* Deploy HttpApi
|
|
9191
10555
|
*
|
|
9192
10556
|
* @param request - DeployHttpApiRequest
|
|
9193
10557
|
* @returns DeployHttpApiResponse
|
|
@@ -9209,7 +10573,7 @@ export default class Client extends OpenApi {
|
|
|
9209
10573
|
*/
|
|
9210
10574
|
exportHttpApi(httpApiId: string): Promise<ExportHttpApiResponse>;
|
|
9211
10575
|
/**
|
|
9212
|
-
*
|
|
10576
|
+
* Get Monitoring/Logging Dashboard Interface
|
|
9213
10577
|
*
|
|
9214
10578
|
* @param tmpReq - GetDashboardRequest
|
|
9215
10579
|
* @param headers - map
|
|
@@ -9220,7 +10584,7 @@ export default class Client extends OpenApi {
|
|
|
9220
10584
|
[key: string]: string;
|
|
9221
10585
|
}, runtime: $dara.RuntimeOptions): Promise<GetDashboardResponse>;
|
|
9222
10586
|
/**
|
|
9223
|
-
*
|
|
10587
|
+
* Get Monitoring/Logging Dashboard Interface
|
|
9224
10588
|
*
|
|
9225
10589
|
* @param request - GetDashboardRequest
|
|
9226
10590
|
* @returns GetDashboardResponse
|
|
@@ -9342,7 +10706,7 @@ export default class Client extends OpenApi {
|
|
|
9342
10706
|
*/
|
|
9343
10707
|
getPolicy(policyId: string): Promise<GetPolicyResponse>;
|
|
9344
10708
|
/**
|
|
9345
|
-
*
|
|
10709
|
+
* Query Policy Resource Attachment
|
|
9346
10710
|
*
|
|
9347
10711
|
* @param headers - map
|
|
9348
10712
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9352,12 +10716,12 @@ export default class Client extends OpenApi {
|
|
|
9352
10716
|
[key: string]: string;
|
|
9353
10717
|
}, runtime: $dara.RuntimeOptions): Promise<GetPolicyAttachmentResponse>;
|
|
9354
10718
|
/**
|
|
9355
|
-
*
|
|
10719
|
+
* Query Policy Resource Attachment
|
|
9356
10720
|
* @returns GetPolicyAttachmentResponse
|
|
9357
10721
|
*/
|
|
9358
10722
|
getPolicyAttachment(policyAttachmentId: string): Promise<GetPolicyAttachmentResponse>;
|
|
9359
10723
|
/**
|
|
9360
|
-
*
|
|
10724
|
+
* Get resource overview information
|
|
9361
10725
|
*
|
|
9362
10726
|
* @param headers - map
|
|
9363
10727
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9367,12 +10731,27 @@ export default class Client extends OpenApi {
|
|
|
9367
10731
|
[key: string]: string;
|
|
9368
10732
|
}, runtime: $dara.RuntimeOptions): Promise<GetResourceOverviewResponse>;
|
|
9369
10733
|
/**
|
|
9370
|
-
*
|
|
10734
|
+
* Get resource overview information
|
|
9371
10735
|
* @returns GetResourceOverviewResponse
|
|
9372
10736
|
*/
|
|
9373
10737
|
getResourceOverview(): Promise<GetResourceOverviewResponse>;
|
|
9374
10738
|
/**
|
|
9375
|
-
*
|
|
10739
|
+
* Get Service Details
|
|
10740
|
+
*
|
|
10741
|
+
* @param headers - map
|
|
10742
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
10743
|
+
* @returns GetServiceResponse
|
|
10744
|
+
*/
|
|
10745
|
+
getServiceWithOptions(serviceId: string, headers: {
|
|
10746
|
+
[key: string]: string;
|
|
10747
|
+
}, runtime: $dara.RuntimeOptions): Promise<GetServiceResponse>;
|
|
10748
|
+
/**
|
|
10749
|
+
* Get Service Details
|
|
10750
|
+
* @returns GetServiceResponse
|
|
10751
|
+
*/
|
|
10752
|
+
getService(serviceId: string): Promise<GetServiceResponse>;
|
|
10753
|
+
/**
|
|
10754
|
+
* Retrieve Tracing Configuration
|
|
9376
10755
|
*
|
|
9377
10756
|
* @param request - GetTraceConfigRequest
|
|
9378
10757
|
* @param headers - map
|
|
@@ -9383,7 +10762,7 @@ export default class Client extends OpenApi {
|
|
|
9383
10762
|
[key: string]: string;
|
|
9384
10763
|
}, runtime: $dara.RuntimeOptions): Promise<GetTraceConfigResponse>;
|
|
9385
10764
|
/**
|
|
9386
|
-
*
|
|
10765
|
+
* Retrieve Tracing Configuration
|
|
9387
10766
|
*
|
|
9388
10767
|
* @param request - GetTraceConfigRequest
|
|
9389
10768
|
* @returns GetTraceConfigResponse
|
|
@@ -9483,6 +10862,24 @@ export default class Client extends OpenApi {
|
|
|
9483
10862
|
* @returns ListHttpApiOperationsResponse
|
|
9484
10863
|
*/
|
|
9485
10864
|
listHttpApiOperations(httpApiId: string, request: ListHttpApiOperationsRequest): Promise<ListHttpApiOperationsResponse>;
|
|
10865
|
+
/**
|
|
10866
|
+
* Create a route for HttpApi
|
|
10867
|
+
*
|
|
10868
|
+
* @param request - ListHttpApiRoutesRequest
|
|
10869
|
+
* @param headers - map
|
|
10870
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
10871
|
+
* @returns ListHttpApiRoutesResponse
|
|
10872
|
+
*/
|
|
10873
|
+
listHttpApiRoutesWithOptions(httpApiId: string, request: ListHttpApiRoutesRequest, headers: {
|
|
10874
|
+
[key: string]: string;
|
|
10875
|
+
}, runtime: $dara.RuntimeOptions): Promise<ListHttpApiRoutesResponse>;
|
|
10876
|
+
/**
|
|
10877
|
+
* Create a route for HttpApi
|
|
10878
|
+
*
|
|
10879
|
+
* @param request - ListHttpApiRoutesRequest
|
|
10880
|
+
* @returns ListHttpApiRoutesResponse
|
|
10881
|
+
*/
|
|
10882
|
+
listHttpApiRoutes(httpApiId: string, request: ListHttpApiRoutesRequest): Promise<ListHttpApiRoutesResponse>;
|
|
9486
10883
|
/**
|
|
9487
10884
|
* List HTTP APIs
|
|
9488
10885
|
*
|
|
@@ -9502,7 +10899,7 @@ export default class Client extends OpenApi {
|
|
|
9502
10899
|
*/
|
|
9503
10900
|
listHttpApis(request: ListHttpApisRequest): Promise<ListHttpApisResponse>;
|
|
9504
10901
|
/**
|
|
9505
|
-
* ListPolicyClasses
|
|
10902
|
+
* ListPolicyClasses
|
|
9506
10903
|
*
|
|
9507
10904
|
* @param request - ListPolicyClassesRequest
|
|
9508
10905
|
* @param headers - map
|
|
@@ -9513,14 +10910,32 @@ export default class Client extends OpenApi {
|
|
|
9513
10910
|
[key: string]: string;
|
|
9514
10911
|
}, runtime: $dara.RuntimeOptions): Promise<ListPolicyClassesResponse>;
|
|
9515
10912
|
/**
|
|
9516
|
-
* ListPolicyClasses
|
|
10913
|
+
* ListPolicyClasses
|
|
9517
10914
|
*
|
|
9518
10915
|
* @param request - ListPolicyClassesRequest
|
|
9519
10916
|
* @returns ListPolicyClassesResponse
|
|
9520
10917
|
*/
|
|
9521
10918
|
listPolicyClasses(request: ListPolicyClassesRequest): Promise<ListPolicyClassesResponse>;
|
|
9522
10919
|
/**
|
|
9523
|
-
*
|
|
10920
|
+
* Get Service List
|
|
10921
|
+
*
|
|
10922
|
+
* @param request - ListServicesRequest
|
|
10923
|
+
* @param headers - map
|
|
10924
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
10925
|
+
* @returns ListServicesResponse
|
|
10926
|
+
*/
|
|
10927
|
+
listServicesWithOptions(request: ListServicesRequest, headers: {
|
|
10928
|
+
[key: string]: string;
|
|
10929
|
+
}, runtime: $dara.RuntimeOptions): Promise<ListServicesResponse>;
|
|
10930
|
+
/**
|
|
10931
|
+
* Get Service List
|
|
10932
|
+
*
|
|
10933
|
+
* @param request - ListServicesRequest
|
|
10934
|
+
* @returns ListServicesResponse
|
|
10935
|
+
*/
|
|
10936
|
+
listServices(request: ListServicesRequest): Promise<ListServicesResponse>;
|
|
10937
|
+
/**
|
|
10938
|
+
* ListSslCerts
|
|
9524
10939
|
*
|
|
9525
10940
|
* @param request - ListSslCertsRequest
|
|
9526
10941
|
* @param headers - map
|
|
@@ -9531,14 +10946,14 @@ export default class Client extends OpenApi {
|
|
|
9531
10946
|
[key: string]: string;
|
|
9532
10947
|
}, runtime: $dara.RuntimeOptions): Promise<ListSslCertsResponse>;
|
|
9533
10948
|
/**
|
|
9534
|
-
* ListSslCerts
|
|
10949
|
+
* ListSslCerts
|
|
9535
10950
|
*
|
|
9536
10951
|
* @param request - ListSslCertsRequest
|
|
9537
10952
|
* @returns ListSslCertsResponse
|
|
9538
10953
|
*/
|
|
9539
10954
|
listSslCerts(request: ListSslCertsRequest): Promise<ListSslCertsResponse>;
|
|
9540
10955
|
/**
|
|
9541
|
-
*
|
|
10956
|
+
* Retrieve the availability zones under a cloud-native API gateway region
|
|
9542
10957
|
*
|
|
9543
10958
|
* @param headers - map
|
|
9544
10959
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9548,7 +10963,7 @@ export default class Client extends OpenApi {
|
|
|
9548
10963
|
[key: string]: string;
|
|
9549
10964
|
}, runtime: $dara.RuntimeOptions): Promise<ListZonesResponse>;
|
|
9550
10965
|
/**
|
|
9551
|
-
*
|
|
10966
|
+
* Retrieve the availability zones under a cloud-native API gateway region
|
|
9552
10967
|
* @returns ListZonesResponse
|
|
9553
10968
|
*/
|
|
9554
10969
|
listZones(): Promise<ListZonesResponse>;
|
|
@@ -9567,9 +10982,30 @@ export default class Client extends OpenApi {
|
|
|
9567
10982
|
* @returns RestartGatewayResponse
|
|
9568
10983
|
*/
|
|
9569
10984
|
restartGateway(gatewayId: string): Promise<RestartGatewayResponse>;
|
|
10985
|
+
/**
|
|
10986
|
+
* 取消部署HttpApi
|
|
10987
|
+
*
|
|
10988
|
+
* @param request - UndeployHttpApiRequest
|
|
10989
|
+
* @param headers - map
|
|
10990
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
10991
|
+
* @returns UndeployHttpApiResponse
|
|
10992
|
+
*/
|
|
10993
|
+
undeployHttpApiWithOptions(httpApiId: string, request: UndeployHttpApiRequest, headers: {
|
|
10994
|
+
[key: string]: string;
|
|
10995
|
+
}, runtime: $dara.RuntimeOptions): Promise<UndeployHttpApiResponse>;
|
|
10996
|
+
/**
|
|
10997
|
+
* 取消部署HttpApi
|
|
10998
|
+
*
|
|
10999
|
+
* @param request - UndeployHttpApiRequest
|
|
11000
|
+
* @returns UndeployHttpApiResponse
|
|
11001
|
+
*/
|
|
11002
|
+
undeployHttpApi(httpApiId: string, request: UndeployHttpApiRequest): Promise<UndeployHttpApiResponse>;
|
|
9570
11003
|
/**
|
|
9571
11004
|
* UpdateDomain
|
|
9572
11005
|
*
|
|
11006
|
+
* @remarks
|
|
11007
|
+
* 只有类型为**容器服务**的来源允许更新监听Ingress的配置。
|
|
11008
|
+
*
|
|
9573
11009
|
* @param request - UpdateDomainRequest
|
|
9574
11010
|
* @param headers - map
|
|
9575
11011
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9581,6 +11017,9 @@ export default class Client extends OpenApi {
|
|
|
9581
11017
|
/**
|
|
9582
11018
|
* UpdateDomain
|
|
9583
11019
|
*
|
|
11020
|
+
* @remarks
|
|
11021
|
+
* 只有类型为**容器服务**的来源允许更新监听Ingress的配置。
|
|
11022
|
+
*
|
|
9584
11023
|
* @param request - UpdateDomainRequest
|
|
9585
11024
|
* @returns UpdateDomainResponse
|
|
9586
11025
|
*/
|
|
@@ -9644,7 +11083,7 @@ export default class Client extends OpenApi {
|
|
|
9644
11083
|
*/
|
|
9645
11084
|
updateGatewayName(gatewayId: string, request: UpdateGatewayNameRequest): Promise<UpdateGatewayNameResponse>;
|
|
9646
11085
|
/**
|
|
9647
|
-
*
|
|
11086
|
+
* Updates an HTTP API.
|
|
9648
11087
|
*
|
|
9649
11088
|
* @param request - UpdateHttpApiRequest
|
|
9650
11089
|
* @param headers - map
|
|
@@ -9655,7 +11094,7 @@ export default class Client extends OpenApi {
|
|
|
9655
11094
|
[key: string]: string;
|
|
9656
11095
|
}, runtime: $dara.RuntimeOptions): Promise<UpdateHttpApiResponse>;
|
|
9657
11096
|
/**
|
|
9658
|
-
*
|
|
11097
|
+
* Updates an HTTP API.
|
|
9659
11098
|
*
|
|
9660
11099
|
* @param request - UpdateHttpApiRequest
|
|
9661
11100
|
* @returns UpdateHttpApiResponse
|
|
@@ -9698,7 +11137,7 @@ export default class Client extends OpenApi {
|
|
|
9698
11137
|
*/
|
|
9699
11138
|
updateHttpApiRoute(httpApiId: string, routeId: string, request: UpdateHttpApiRouteRequest): Promise<UpdateHttpApiRouteResponse>;
|
|
9700
11139
|
/**
|
|
9701
|
-
*
|
|
11140
|
+
* Update Policy
|
|
9702
11141
|
*
|
|
9703
11142
|
* @param request - UpdatePolicyRequest
|
|
9704
11143
|
* @param headers - map
|
|
@@ -9709,7 +11148,7 @@ export default class Client extends OpenApi {
|
|
|
9709
11148
|
[key: string]: string;
|
|
9710
11149
|
}, runtime: $dara.RuntimeOptions): Promise<UpdatePolicyResponse>;
|
|
9711
11150
|
/**
|
|
9712
|
-
*
|
|
11151
|
+
* Update Policy
|
|
9713
11152
|
*
|
|
9714
11153
|
* @param request - UpdatePolicyRequest
|
|
9715
11154
|
* @returns UpdatePolicyResponse
|