@alicloud/apig20240327 3.1.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 +1068 -100
- package/dist/client.js +212 -44
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1181 -96
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
|
*/
|
|
@@ -1356,24 +1364,55 @@ export declare class CreatePolicyAttachmentResponseBodyData extends $dara.Model
|
|
|
1356
1364
|
});
|
|
1357
1365
|
}
|
|
1358
1366
|
export declare class CreateServiceRequestServiceConfigs extends $dara.Model {
|
|
1367
|
+
/**
|
|
1368
|
+
* @remarks
|
|
1369
|
+
* List of domain names or fixed addresses.
|
|
1370
|
+
*/
|
|
1359
1371
|
addresses?: string[];
|
|
1372
|
+
/**
|
|
1373
|
+
* @remarks
|
|
1374
|
+
* AI service configuration.
|
|
1375
|
+
*/
|
|
1360
1376
|
aiServiceConfig?: AiServiceConfig;
|
|
1361
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
|
+
*
|
|
1362
1387
|
* @example
|
|
1363
1388
|
* DEFAULT_GROUP
|
|
1364
1389
|
*/
|
|
1365
1390
|
groupName?: string;
|
|
1366
1391
|
/**
|
|
1392
|
+
* @remarks
|
|
1393
|
+
* Service name.
|
|
1394
|
+
*
|
|
1367
1395
|
* @example
|
|
1368
1396
|
* user-service
|
|
1369
1397
|
*/
|
|
1370
1398
|
name?: string;
|
|
1371
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
|
+
*
|
|
1372
1408
|
* @example
|
|
1373
1409
|
* PUBLIC
|
|
1374
1410
|
*/
|
|
1375
1411
|
namespace?: string;
|
|
1376
1412
|
/**
|
|
1413
|
+
* @remarks
|
|
1414
|
+
* Function version or alias.
|
|
1415
|
+
*
|
|
1377
1416
|
* @example
|
|
1378
1417
|
* LATEST
|
|
1379
1418
|
*/
|
|
@@ -1390,6 +1429,10 @@ export declare class CreateServiceRequestServiceConfigs extends $dara.Model {
|
|
|
1390
1429
|
});
|
|
1391
1430
|
}
|
|
1392
1431
|
export declare class CreateServiceResponseBodyData extends $dara.Model {
|
|
1432
|
+
/**
|
|
1433
|
+
* @remarks
|
|
1434
|
+
* List of service IDs.
|
|
1435
|
+
*/
|
|
1393
1436
|
serviceIds?: string[];
|
|
1394
1437
|
static names(): {
|
|
1395
1438
|
[key: string]: string;
|
|
@@ -1403,28 +1446,49 @@ export declare class CreateServiceResponseBodyData extends $dara.Model {
|
|
|
1403
1446
|
});
|
|
1404
1447
|
}
|
|
1405
1448
|
export declare class DeployHttpApiRequestRestApiConfigEnvironmentServiceConfigs extends $dara.Model {
|
|
1449
|
+
/**
|
|
1450
|
+
* @remarks
|
|
1451
|
+
* Configuration of matching conditions related to API deployment.
|
|
1452
|
+
*/
|
|
1406
1453
|
match?: HttpApiBackendMatchConditions;
|
|
1407
1454
|
/**
|
|
1455
|
+
* @remarks
|
|
1456
|
+
* Service port, do not provide for dynamic ports.
|
|
1457
|
+
*
|
|
1408
1458
|
* @example
|
|
1409
1459
|
* 8080
|
|
1410
1460
|
*/
|
|
1411
1461
|
port?: number;
|
|
1412
1462
|
/**
|
|
1463
|
+
* @remarks
|
|
1464
|
+
* Service protocol:
|
|
1465
|
+
* - HTTP.
|
|
1466
|
+
* - HTTPS.
|
|
1467
|
+
*
|
|
1413
1468
|
* @example
|
|
1414
1469
|
* HTTP
|
|
1415
1470
|
*/
|
|
1416
1471
|
protocol?: string;
|
|
1417
1472
|
/**
|
|
1473
|
+
* @remarks
|
|
1474
|
+
* Service ID.
|
|
1475
|
+
*
|
|
1418
1476
|
* @example
|
|
1419
1477
|
* svc-cr6pk4tlhtgm58e***
|
|
1420
1478
|
*/
|
|
1421
1479
|
serviceId?: string;
|
|
1422
1480
|
/**
|
|
1481
|
+
* @remarks
|
|
1482
|
+
* Service version.
|
|
1483
|
+
*
|
|
1423
1484
|
* @example
|
|
1424
1485
|
* v1
|
|
1425
1486
|
*/
|
|
1426
1487
|
version?: string;
|
|
1427
1488
|
/**
|
|
1489
|
+
* @remarks
|
|
1490
|
+
* Weight, range [1,100], valid only in the by-ratio scenario.
|
|
1491
|
+
*
|
|
1428
1492
|
* @example
|
|
1429
1493
|
* 49
|
|
1430
1494
|
*/
|
|
@@ -1442,16 +1506,30 @@ export declare class DeployHttpApiRequestRestApiConfigEnvironmentServiceConfigs
|
|
|
1442
1506
|
}
|
|
1443
1507
|
export declare class DeployHttpApiRequestRestApiConfigEnvironment extends $dara.Model {
|
|
1444
1508
|
/**
|
|
1509
|
+
* @remarks
|
|
1510
|
+
* API publication scenario.
|
|
1511
|
+
*
|
|
1445
1512
|
* @example
|
|
1446
1513
|
* SingleService
|
|
1447
1514
|
*/
|
|
1448
1515
|
backendScene?: string;
|
|
1516
|
+
/**
|
|
1517
|
+
* @remarks
|
|
1518
|
+
* List of user domains.
|
|
1519
|
+
*/
|
|
1449
1520
|
customDomainIds?: string[];
|
|
1450
1521
|
/**
|
|
1522
|
+
* @remarks
|
|
1523
|
+
* Environment ID.
|
|
1524
|
+
*
|
|
1451
1525
|
* @example
|
|
1452
1526
|
* env-cpqnr6tlhtgubc***
|
|
1453
1527
|
*/
|
|
1454
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
|
+
*/
|
|
1455
1533
|
serviceConfigs?: DeployHttpApiRequestRestApiConfigEnvironmentServiceConfigs[];
|
|
1456
1534
|
static names(): {
|
|
1457
1535
|
[key: string]: string;
|
|
@@ -1465,9 +1543,23 @@ export declare class DeployHttpApiRequestRestApiConfigEnvironment extends $dara.
|
|
|
1465
1543
|
});
|
|
1466
1544
|
}
|
|
1467
1545
|
export declare class DeployHttpApiRequestRestApiConfig extends $dara.Model {
|
|
1546
|
+
/**
|
|
1547
|
+
* @remarks
|
|
1548
|
+
* Publication description.
|
|
1549
|
+
*
|
|
1550
|
+
* @example
|
|
1551
|
+
* 用户服务API发布。
|
|
1552
|
+
*/
|
|
1468
1553
|
description?: string;
|
|
1554
|
+
/**
|
|
1555
|
+
* @remarks
|
|
1556
|
+
* Publication environment configuration.
|
|
1557
|
+
*/
|
|
1469
1558
|
environment?: DeployHttpApiRequestRestApiConfigEnvironment;
|
|
1470
1559
|
/**
|
|
1560
|
+
* @remarks
|
|
1561
|
+
* Historical version number. If this field is specified, the publication information will be based on the historical version information.
|
|
1562
|
+
*
|
|
1471
1563
|
* @example
|
|
1472
1564
|
* apr-xxx
|
|
1473
1565
|
*/
|
|
@@ -1505,6 +1597,9 @@ export declare class ExportHttpApiResponseBodyData extends $dara.Model {
|
|
|
1505
1597
|
}
|
|
1506
1598
|
export declare class GetDashboardRequestFilter extends $dara.Model {
|
|
1507
1599
|
/**
|
|
1600
|
+
* @remarks
|
|
1601
|
+
* Route name
|
|
1602
|
+
*
|
|
1508
1603
|
* @example
|
|
1509
1604
|
* test-route
|
|
1510
1605
|
*/
|
|
@@ -1522,21 +1617,33 @@ export declare class GetDashboardRequestFilter extends $dara.Model {
|
|
|
1522
1617
|
}
|
|
1523
1618
|
export declare class GetDashboardResponseBodyData extends $dara.Model {
|
|
1524
1619
|
/**
|
|
1620
|
+
* @remarks
|
|
1621
|
+
* Gateway unique identifier
|
|
1622
|
+
*
|
|
1525
1623
|
* @example
|
|
1526
1624
|
* gw-co370icmjeu****
|
|
1527
1625
|
*/
|
|
1528
1626
|
gatewayId?: string;
|
|
1529
1627
|
/**
|
|
1628
|
+
* @remarks
|
|
1629
|
+
* Dashboard name
|
|
1630
|
+
*
|
|
1530
1631
|
* @example
|
|
1531
1632
|
* PLUGIN
|
|
1532
1633
|
*/
|
|
1533
1634
|
name?: string;
|
|
1534
1635
|
/**
|
|
1636
|
+
* @remarks
|
|
1637
|
+
* Dashboard title
|
|
1638
|
+
*
|
|
1535
1639
|
* @example
|
|
1536
1640
|
* APIG Plugin
|
|
1537
1641
|
*/
|
|
1538
1642
|
title?: string;
|
|
1539
1643
|
/**
|
|
1644
|
+
* @remarks
|
|
1645
|
+
* Dashboard URL link
|
|
1646
|
+
*
|
|
1540
1647
|
* @example
|
|
1541
1648
|
* https://sls.console.aliyun.com/lognext/project/xxxxx
|
|
1542
1649
|
*/
|
|
@@ -1553,7 +1660,18 @@ export declare class GetDashboardResponseBodyData extends $dara.Model {
|
|
|
1553
1660
|
});
|
|
1554
1661
|
}
|
|
1555
1662
|
export declare class GetDomainResponseBodyDataStatisticsInfo extends $dara.Model {
|
|
1663
|
+
/**
|
|
1664
|
+
* @remarks
|
|
1665
|
+
* The array of related resource infomations.
|
|
1666
|
+
*/
|
|
1556
1667
|
resourceStatistics?: ResourceStatistic[];
|
|
1668
|
+
/**
|
|
1669
|
+
* @remarks
|
|
1670
|
+
* The total number of entries returned.
|
|
1671
|
+
*
|
|
1672
|
+
* @example
|
|
1673
|
+
* 1
|
|
1674
|
+
*/
|
|
1557
1675
|
totalCount?: string;
|
|
1558
1676
|
static names(): {
|
|
1559
1677
|
[key: string]: string;
|
|
@@ -1575,7 +1693,21 @@ export declare class GetDomainResponseBodyData extends $dara.Model {
|
|
|
1575
1693
|
* RSA
|
|
1576
1694
|
*/
|
|
1577
1695
|
algorithm?: string;
|
|
1696
|
+
/**
|
|
1697
|
+
* @remarks
|
|
1698
|
+
* CA certificate identifier
|
|
1699
|
+
*
|
|
1700
|
+
* @example
|
|
1701
|
+
* 876****-cn-hangzhou
|
|
1702
|
+
*/
|
|
1578
1703
|
caCertIdentifier?: string;
|
|
1704
|
+
/**
|
|
1705
|
+
* @remarks
|
|
1706
|
+
* Certificate Identifier
|
|
1707
|
+
*
|
|
1708
|
+
* @example
|
|
1709
|
+
* 645****-cn-hangzhou
|
|
1710
|
+
*/
|
|
1579
1711
|
certIdentifier?: string;
|
|
1580
1712
|
/**
|
|
1581
1713
|
* @remarks
|
|
@@ -1585,6 +1717,21 @@ export declare class GetDomainResponseBodyData extends $dara.Model {
|
|
|
1585
1717
|
* test-cert
|
|
1586
1718
|
*/
|
|
1587
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;
|
|
1588
1735
|
/**
|
|
1589
1736
|
* @remarks
|
|
1590
1737
|
* Where it was created from.
|
|
@@ -1641,6 +1788,14 @@ export declare class GetDomainResponseBodyData extends $dara.Model {
|
|
|
1641
1788
|
* Alibaba
|
|
1642
1789
|
*/
|
|
1643
1790
|
issuer?: string;
|
|
1791
|
+
/**
|
|
1792
|
+
* @remarks
|
|
1793
|
+
* true
|
|
1794
|
+
*
|
|
1795
|
+
* @example
|
|
1796
|
+
* false
|
|
1797
|
+
*/
|
|
1798
|
+
mTLSEnabled?: boolean;
|
|
1644
1799
|
/**
|
|
1645
1800
|
* @remarks
|
|
1646
1801
|
* Domain name.
|
|
@@ -1676,6 +1831,13 @@ export declare class GetDomainResponseBodyData extends $dara.Model {
|
|
|
1676
1831
|
* HTTP
|
|
1677
1832
|
*/
|
|
1678
1833
|
protocol?: string;
|
|
1834
|
+
/**
|
|
1835
|
+
* @remarks
|
|
1836
|
+
* The ID of the resource group.
|
|
1837
|
+
*
|
|
1838
|
+
* @example
|
|
1839
|
+
* rg-aekzvlxzgo5b4si
|
|
1840
|
+
*/
|
|
1679
1841
|
resourceGroupId?: string;
|
|
1680
1842
|
/**
|
|
1681
1843
|
* @remarks
|
|
@@ -1685,7 +1847,15 @@ export declare class GetDomainResponseBodyData extends $dara.Model {
|
|
|
1685
1847
|
* aliyun.com
|
|
1686
1848
|
*/
|
|
1687
1849
|
sans?: string;
|
|
1850
|
+
/**
|
|
1851
|
+
* @remarks
|
|
1852
|
+
* The array of domain related resource information
|
|
1853
|
+
*/
|
|
1688
1854
|
statisticsInfo?: GetDomainResponseBodyDataStatisticsInfo;
|
|
1855
|
+
/**
|
|
1856
|
+
* @remarks
|
|
1857
|
+
* The TLS cipher suites config.
|
|
1858
|
+
*/
|
|
1689
1859
|
tlsCipherSuitesConfig?: TlsCipherSuitesConfig;
|
|
1690
1860
|
/**
|
|
1691
1861
|
* @remarks
|
|
@@ -2333,36 +2503,57 @@ export declare class GetGatewayResponseBodyData extends $dara.Model {
|
|
|
2333
2503
|
}
|
|
2334
2504
|
export declare class GetPolicyAttachmentResponseBodyData extends $dara.Model {
|
|
2335
2505
|
/**
|
|
2506
|
+
* @remarks
|
|
2507
|
+
* Attached Resource ID
|
|
2508
|
+
*
|
|
2336
2509
|
* @example
|
|
2337
2510
|
* op-csbkd9llhtgqhqua***
|
|
2338
2511
|
*/
|
|
2339
2512
|
attachResourceId?: string;
|
|
2340
2513
|
/**
|
|
2514
|
+
* @remarks
|
|
2515
|
+
* Attached resource type, HttpApi, GatewayRoute, Operation, GatewayService, GatewayServicePort, Gateway, Domain
|
|
2516
|
+
*
|
|
2341
2517
|
* @example
|
|
2342
2518
|
* Operation
|
|
2343
2519
|
*/
|
|
2344
2520
|
attachResourceType?: string;
|
|
2345
2521
|
/**
|
|
2522
|
+
* @remarks
|
|
2523
|
+
* Policy attachment configuration
|
|
2524
|
+
*
|
|
2346
2525
|
* @example
|
|
2347
2526
|
* {"unitNum":1,"timeUnit":"s","enable":true}
|
|
2348
2527
|
*/
|
|
2349
2528
|
config?: string;
|
|
2350
2529
|
/**
|
|
2530
|
+
* @remarks
|
|
2531
|
+
* Environment ID
|
|
2532
|
+
*
|
|
2351
2533
|
* @example
|
|
2352
2534
|
* env-cq7l5s5lhtgi6qa***
|
|
2353
2535
|
*/
|
|
2354
2536
|
environmentId?: string;
|
|
2355
2537
|
/**
|
|
2538
|
+
* @remarks
|
|
2539
|
+
* Gateway Instance ID
|
|
2540
|
+
*
|
|
2356
2541
|
* @example
|
|
2357
2542
|
* gw-cq2vundlhtg***
|
|
2358
2543
|
*/
|
|
2359
2544
|
gatewayId?: string;
|
|
2360
2545
|
/**
|
|
2546
|
+
* @remarks
|
|
2547
|
+
* Policy Attachment ID
|
|
2548
|
+
*
|
|
2361
2549
|
* @example
|
|
2362
2550
|
* pr-cqoojualhtgquuj***
|
|
2363
2551
|
*/
|
|
2364
2552
|
policyAttachmentId?: string;
|
|
2365
2553
|
/**
|
|
2554
|
+
* @remarks
|
|
2555
|
+
* Policy ID
|
|
2556
|
+
*
|
|
2366
2557
|
* @example
|
|
2367
2558
|
* p-cq7l5s5bblhtgi6qas***
|
|
2368
2559
|
*/
|
|
@@ -2380,11 +2571,17 @@ export declare class GetPolicyAttachmentResponseBodyData extends $dara.Model {
|
|
|
2380
2571
|
}
|
|
2381
2572
|
export declare class GetResourceOverviewResponseBodyDataApi extends $dara.Model {
|
|
2382
2573
|
/**
|
|
2574
|
+
* @remarks
|
|
2575
|
+
* Number of published APIs.
|
|
2576
|
+
*
|
|
2383
2577
|
* @example
|
|
2384
2578
|
* 1
|
|
2385
2579
|
*/
|
|
2386
2580
|
publishedCount?: number;
|
|
2387
2581
|
/**
|
|
2582
|
+
* @remarks
|
|
2583
|
+
* Number of APIs.
|
|
2584
|
+
*
|
|
2388
2585
|
* @example
|
|
2389
2586
|
* 1
|
|
2390
2587
|
*/
|
|
@@ -2402,11 +2599,17 @@ export declare class GetResourceOverviewResponseBodyDataApi extends $dara.Model
|
|
|
2402
2599
|
}
|
|
2403
2600
|
export declare class GetResourceOverviewResponseBodyDataGateway extends $dara.Model {
|
|
2404
2601
|
/**
|
|
2602
|
+
* @remarks
|
|
2603
|
+
* Number of running gateways.
|
|
2604
|
+
*
|
|
2405
2605
|
* @example
|
|
2406
2606
|
* 1
|
|
2407
2607
|
*/
|
|
2408
2608
|
runningCount?: number;
|
|
2409
2609
|
/**
|
|
2610
|
+
* @remarks
|
|
2611
|
+
* Number of gateway instances.
|
|
2612
|
+
*
|
|
2410
2613
|
* @example
|
|
2411
2614
|
* 1
|
|
2412
2615
|
*/
|
|
@@ -2423,7 +2626,15 @@ export declare class GetResourceOverviewResponseBodyDataGateway extends $dara.Mo
|
|
|
2423
2626
|
});
|
|
2424
2627
|
}
|
|
2425
2628
|
export declare class GetResourceOverviewResponseBodyData extends $dara.Model {
|
|
2629
|
+
/**
|
|
2630
|
+
* @remarks
|
|
2631
|
+
* API information.
|
|
2632
|
+
*/
|
|
2426
2633
|
api?: GetResourceOverviewResponseBodyDataApi;
|
|
2634
|
+
/**
|
|
2635
|
+
* @remarks
|
|
2636
|
+
* Gateway information.
|
|
2637
|
+
*/
|
|
2427
2638
|
gateway?: GetResourceOverviewResponseBodyDataGateway;
|
|
2428
2639
|
static names(): {
|
|
2429
2640
|
[key: string]: string;
|
|
@@ -2438,26 +2649,47 @@ export declare class GetResourceOverviewResponseBodyData extends $dara.Model {
|
|
|
2438
2649
|
}
|
|
2439
2650
|
export declare class GetTraceConfigResponseBodyData extends $dara.Model {
|
|
2440
2651
|
/**
|
|
2652
|
+
* @remarks
|
|
2653
|
+
* Whether to Enable Tracing:
|
|
2654
|
+
* true: Enabled
|
|
2655
|
+
* false: Disabled
|
|
2656
|
+
*
|
|
2441
2657
|
* @example
|
|
2442
2658
|
* true
|
|
2443
2659
|
*/
|
|
2444
2660
|
enable?: boolean;
|
|
2445
2661
|
/**
|
|
2662
|
+
* @remarks
|
|
2663
|
+
* Sampling Rate
|
|
2664
|
+
*
|
|
2446
2665
|
* @example
|
|
2447
2666
|
* 50
|
|
2448
2667
|
*/
|
|
2449
2668
|
sampleRatio?: number;
|
|
2450
2669
|
/**
|
|
2670
|
+
* @remarks
|
|
2671
|
+
* Service ID, present when the tracing type is SKYWALKING
|
|
2672
|
+
*
|
|
2451
2673
|
* @example
|
|
2452
2674
|
* ss-co370icmjeu****
|
|
2453
2675
|
*/
|
|
2454
2676
|
serviceId?: string;
|
|
2455
2677
|
/**
|
|
2678
|
+
* @remarks
|
|
2679
|
+
* 服务端口,链路追踪类型为SKYWALKING时存在该参数
|
|
2680
|
+
*
|
|
2456
2681
|
* @example
|
|
2457
2682
|
* 8090
|
|
2458
2683
|
*/
|
|
2459
2684
|
servicePort?: string;
|
|
2460
2685
|
/**
|
|
2686
|
+
* @remarks
|
|
2687
|
+
* Tracing Type:
|
|
2688
|
+
* - XTRACE
|
|
2689
|
+
* - SKYWALKING
|
|
2690
|
+
* - OPENTELEMETRY
|
|
2691
|
+
* - OTSKYWALKING
|
|
2692
|
+
*
|
|
2461
2693
|
* @example
|
|
2462
2694
|
* SKYWALKING
|
|
2463
2695
|
*/
|
|
@@ -3197,6 +3429,10 @@ export declare class ListGatewaysResponseBodyDataItems extends $dara.Model {
|
|
|
3197
3429
|
* Running
|
|
3198
3430
|
*/
|
|
3199
3431
|
status?: string;
|
|
3432
|
+
/**
|
|
3433
|
+
* @remarks
|
|
3434
|
+
* List of sub domain information
|
|
3435
|
+
*/
|
|
3200
3436
|
subDomainInfos?: SubDomainInfo[];
|
|
3201
3437
|
/**
|
|
3202
3438
|
* @remarks
|
|
@@ -3336,18 +3572,31 @@ export declare class ListHttpApiOperationsResponseBodyData extends $dara.Model {
|
|
|
3336
3572
|
});
|
|
3337
3573
|
}
|
|
3338
3574
|
export declare class ListHttpApiRoutesResponseBodyData extends $dara.Model {
|
|
3575
|
+
/**
|
|
3576
|
+
* @remarks
|
|
3577
|
+
* List of routes.
|
|
3578
|
+
*/
|
|
3339
3579
|
items?: HttpRoute[];
|
|
3340
3580
|
/**
|
|
3581
|
+
* @remarks
|
|
3582
|
+
* Page number.
|
|
3583
|
+
*
|
|
3341
3584
|
* @example
|
|
3342
3585
|
* 1
|
|
3343
3586
|
*/
|
|
3344
3587
|
pageNumber?: number;
|
|
3345
3588
|
/**
|
|
3589
|
+
* @remarks
|
|
3590
|
+
* Page size.
|
|
3591
|
+
*
|
|
3346
3592
|
* @example
|
|
3347
3593
|
* 20
|
|
3348
3594
|
*/
|
|
3349
3595
|
pageSize?: number;
|
|
3350
3596
|
/**
|
|
3597
|
+
* @remarks
|
|
3598
|
+
* Total number of items.
|
|
3599
|
+
*
|
|
3351
3600
|
* @example
|
|
3352
3601
|
* 9
|
|
3353
3602
|
*/
|
|
@@ -3405,18 +3654,31 @@ export declare class ListHttpApisResponseBodyData extends $dara.Model {
|
|
|
3405
3654
|
});
|
|
3406
3655
|
}
|
|
3407
3656
|
export declare class ListPolicyClassesResponseBodyData extends $dara.Model {
|
|
3657
|
+
/**
|
|
3658
|
+
* @remarks
|
|
3659
|
+
* List of policy templates
|
|
3660
|
+
*/
|
|
3408
3661
|
items?: PolicyClassInfo[];
|
|
3409
3662
|
/**
|
|
3663
|
+
* @remarks
|
|
3664
|
+
* Page number.
|
|
3665
|
+
*
|
|
3410
3666
|
* @example
|
|
3411
3667
|
* 1
|
|
3412
3668
|
*/
|
|
3413
3669
|
pageNumber?: number;
|
|
3414
3670
|
/**
|
|
3671
|
+
* @remarks
|
|
3672
|
+
* Page size
|
|
3673
|
+
*
|
|
3415
3674
|
* @example
|
|
3416
3675
|
* 10
|
|
3417
3676
|
*/
|
|
3418
3677
|
pageSize?: number;
|
|
3419
3678
|
/**
|
|
3679
|
+
* @remarks
|
|
3680
|
+
* Total number of items.
|
|
3681
|
+
*
|
|
3420
3682
|
* @example
|
|
3421
3683
|
* 10
|
|
3422
3684
|
*/
|
|
@@ -3433,18 +3695,31 @@ export declare class ListPolicyClassesResponseBodyData extends $dara.Model {
|
|
|
3433
3695
|
});
|
|
3434
3696
|
}
|
|
3435
3697
|
export declare class ListServicesResponseBodyData extends $dara.Model {
|
|
3698
|
+
/**
|
|
3699
|
+
* @remarks
|
|
3700
|
+
* Service list.
|
|
3701
|
+
*/
|
|
3436
3702
|
items?: Service[];
|
|
3437
3703
|
/**
|
|
3704
|
+
* @remarks
|
|
3705
|
+
* Page number.
|
|
3706
|
+
*
|
|
3438
3707
|
* @example
|
|
3439
3708
|
* 1
|
|
3440
3709
|
*/
|
|
3441
3710
|
pageNumber?: number;
|
|
3442
3711
|
/**
|
|
3712
|
+
* @remarks
|
|
3713
|
+
* Page size.
|
|
3714
|
+
*
|
|
3443
3715
|
* @example
|
|
3444
3716
|
* 10
|
|
3445
3717
|
*/
|
|
3446
3718
|
pageSize?: number;
|
|
3447
3719
|
/**
|
|
3720
|
+
* @remarks
|
|
3721
|
+
* Total count.
|
|
3722
|
+
*
|
|
3448
3723
|
* @example
|
|
3449
3724
|
* 18
|
|
3450
3725
|
*/
|
|
@@ -3461,18 +3736,31 @@ export declare class ListServicesResponseBodyData extends $dara.Model {
|
|
|
3461
3736
|
});
|
|
3462
3737
|
}
|
|
3463
3738
|
export declare class ListSslCertsResponseBodyData extends $dara.Model {
|
|
3739
|
+
/**
|
|
3740
|
+
* @remarks
|
|
3741
|
+
* List of certificate information.
|
|
3742
|
+
*/
|
|
3464
3743
|
items?: SslCertMetaInfo[];
|
|
3465
3744
|
/**
|
|
3745
|
+
* @remarks
|
|
3746
|
+
* Page number.
|
|
3747
|
+
*
|
|
3466
3748
|
* @example
|
|
3467
3749
|
* 1
|
|
3468
3750
|
*/
|
|
3469
3751
|
pageNumber?: number;
|
|
3470
3752
|
/**
|
|
3753
|
+
* @remarks
|
|
3754
|
+
* Page size.
|
|
3755
|
+
*
|
|
3471
3756
|
* @example
|
|
3472
3757
|
* 10
|
|
3473
3758
|
*/
|
|
3474
3759
|
pageSize?: number;
|
|
3475
3760
|
/**
|
|
3761
|
+
* @remarks
|
|
3762
|
+
* Total count.
|
|
3763
|
+
*
|
|
3476
3764
|
* @example
|
|
3477
3765
|
* 2
|
|
3478
3766
|
*/
|
|
@@ -3490,6 +3778,9 @@ export declare class ListSslCertsResponseBodyData extends $dara.Model {
|
|
|
3490
3778
|
}
|
|
3491
3779
|
export declare class ListZonesResponseBodyDataItems extends $dara.Model {
|
|
3492
3780
|
/**
|
|
3781
|
+
* @remarks
|
|
3782
|
+
* 可用区ID。
|
|
3783
|
+
*
|
|
3493
3784
|
* @example
|
|
3494
3785
|
* cn-shenzhen-c
|
|
3495
3786
|
*/
|
|
@@ -3506,6 +3797,10 @@ export declare class ListZonesResponseBodyDataItems extends $dara.Model {
|
|
|
3506
3797
|
});
|
|
3507
3798
|
}
|
|
3508
3799
|
export declare class ListZonesResponseBodyData extends $dara.Model {
|
|
3800
|
+
/**
|
|
3801
|
+
* @remarks
|
|
3802
|
+
* List of availability zones.
|
|
3803
|
+
*/
|
|
3509
3804
|
items?: ListZonesResponseBodyDataItems[];
|
|
3510
3805
|
static names(): {
|
|
3511
3806
|
[key: string]: string;
|
|
@@ -3541,7 +3836,7 @@ export declare class UpdateDomainResponseBodyData extends $dara.Model {
|
|
|
3541
3836
|
export declare class UpdateHttpApiRequestIngressConfig extends $dara.Model {
|
|
3542
3837
|
/**
|
|
3543
3838
|
* @remarks
|
|
3544
|
-
*
|
|
3839
|
+
* The environment ID.
|
|
3545
3840
|
*
|
|
3546
3841
|
* @example
|
|
3547
3842
|
* env-cr6ql0tlhtgmc****
|
|
@@ -3549,7 +3844,7 @@ export declare class UpdateHttpApiRequestIngressConfig extends $dara.Model {
|
|
|
3549
3844
|
environmentId?: string;
|
|
3550
3845
|
/**
|
|
3551
3846
|
* @remarks
|
|
3552
|
-
* Ingress
|
|
3847
|
+
* The Ingress class for listening.
|
|
3553
3848
|
*
|
|
3554
3849
|
* @example
|
|
3555
3850
|
* mse
|
|
@@ -3557,7 +3852,7 @@ export declare class UpdateHttpApiRequestIngressConfig extends $dara.Model {
|
|
|
3557
3852
|
ingressClass?: string;
|
|
3558
3853
|
/**
|
|
3559
3854
|
* @remarks
|
|
3560
|
-
*
|
|
3855
|
+
* Specifies whether to update the address in Ingress Status.
|
|
3561
3856
|
*
|
|
3562
3857
|
* @example
|
|
3563
3858
|
* false
|
|
@@ -3565,7 +3860,7 @@ export declare class UpdateHttpApiRequestIngressConfig extends $dara.Model {
|
|
|
3565
3860
|
overrideIngressIp?: boolean;
|
|
3566
3861
|
/**
|
|
3567
3862
|
* @remarks
|
|
3568
|
-
*
|
|
3863
|
+
* The source ID.
|
|
3569
3864
|
*
|
|
3570
3865
|
* @example
|
|
3571
3866
|
* src-crdddallhtgtr****
|
|
@@ -3573,7 +3868,7 @@ export declare class UpdateHttpApiRequestIngressConfig extends $dara.Model {
|
|
|
3573
3868
|
sourceId?: string;
|
|
3574
3869
|
/**
|
|
3575
3870
|
* @remarks
|
|
3576
|
-
*
|
|
3871
|
+
* The namespace for listening.
|
|
3577
3872
|
*
|
|
3578
3873
|
* @example
|
|
3579
3874
|
* default
|
|
@@ -3850,10 +4145,12 @@ export declare class DashboardFilter extends $dara.Model {
|
|
|
3850
4145
|
}
|
|
3851
4146
|
export declare class DomainInfo extends $dara.Model {
|
|
3852
4147
|
certIdentifier?: string;
|
|
4148
|
+
clientCACert?: string;
|
|
3853
4149
|
createFrom?: string;
|
|
3854
4150
|
createTimestamp?: number;
|
|
3855
4151
|
domainId?: string;
|
|
3856
4152
|
forceHttps?: boolean;
|
|
4153
|
+
mTLSEnabled?: boolean;
|
|
3857
4154
|
name?: string;
|
|
3858
4155
|
protocol?: string;
|
|
3859
4156
|
/**
|
|
@@ -4883,21 +5180,33 @@ export declare class AddGatewaySecurityGroupRuleResponse extends $dara.Model {
|
|
|
4883
5180
|
}
|
|
4884
5181
|
export declare class ChangeResourceGroupRequest extends $dara.Model {
|
|
4885
5182
|
/**
|
|
5183
|
+
* @remarks
|
|
5184
|
+
* Target resource group ID.
|
|
5185
|
+
*
|
|
4886
5186
|
* @example
|
|
4887
5187
|
* rg-aekzdrfx2xdnaja
|
|
4888
5188
|
*/
|
|
4889
5189
|
resourceGroupId?: string;
|
|
4890
5190
|
/**
|
|
5191
|
+
* @remarks
|
|
5192
|
+
* Resource ID
|
|
5193
|
+
*
|
|
4891
5194
|
* @example
|
|
4892
5195
|
* gw-ct4i14um1hkn0tpqfae0
|
|
4893
5196
|
*/
|
|
4894
5197
|
resourceId?: string;
|
|
4895
5198
|
/**
|
|
5199
|
+
* @remarks
|
|
5200
|
+
* Resource type
|
|
5201
|
+
*
|
|
4896
5202
|
* @example
|
|
4897
5203
|
* gateway
|
|
4898
5204
|
*/
|
|
4899
5205
|
resourceType?: string;
|
|
4900
5206
|
/**
|
|
5207
|
+
* @remarks
|
|
5208
|
+
* Service name, fixed value apig
|
|
5209
|
+
*
|
|
4901
5210
|
* @example
|
|
4902
5211
|
* apig
|
|
4903
5212
|
*/
|
|
@@ -4915,6 +5224,9 @@ export declare class ChangeResourceGroupRequest extends $dara.Model {
|
|
|
4915
5224
|
}
|
|
4916
5225
|
export declare class ChangeResourceGroupResponseBody extends $dara.Model {
|
|
4917
5226
|
/**
|
|
5227
|
+
* @remarks
|
|
5228
|
+
* Request ID.
|
|
5229
|
+
*
|
|
4918
5230
|
* @example
|
|
4919
5231
|
* 59F86F37-787A-52DB-9475-DB5A255517F0
|
|
4920
5232
|
*/
|
|
@@ -4964,6 +5276,18 @@ export declare class CreateDomainRequest extends $dara.Model {
|
|
|
4964
5276
|
* 1ef1da5f-38ed-69b3-****-037781890265
|
|
4965
5277
|
*/
|
|
4966
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;
|
|
4967
5291
|
/**
|
|
4968
5292
|
* @remarks
|
|
4969
5293
|
* Set the HTTPS protocol type, whether to enable forced HTTPS redirection.
|
|
@@ -4980,6 +5304,11 @@ export declare class CreateDomainRequest extends $dara.Model {
|
|
|
4980
5304
|
* Open
|
|
4981
5305
|
*/
|
|
4982
5306
|
http2Option?: string;
|
|
5307
|
+
/**
|
|
5308
|
+
* @remarks
|
|
5309
|
+
* Whether to enable mTLS mutual authentication
|
|
5310
|
+
*/
|
|
5311
|
+
mTLSEnabled?: boolean;
|
|
4983
5312
|
/**
|
|
4984
5313
|
* @remarks
|
|
4985
5314
|
* Domain name.
|
|
@@ -5438,25 +5767,25 @@ export declare class CreateHttpApiOperationResponse extends $dara.Model {
|
|
|
5438
5767
|
export declare class CreateHttpApiRouteRequest extends $dara.Model {
|
|
5439
5768
|
/**
|
|
5440
5769
|
* @remarks
|
|
5441
|
-
*
|
|
5770
|
+
* The backend service configurations of the route.
|
|
5442
5771
|
*/
|
|
5443
5772
|
backendConfig?: CreateHttpApiRouteRequestBackendConfig;
|
|
5444
5773
|
/**
|
|
5445
5774
|
* @remarks
|
|
5446
|
-
*
|
|
5775
|
+
* The route description.
|
|
5447
5776
|
*
|
|
5448
5777
|
* @example
|
|
5449
|
-
*
|
|
5778
|
+
* User logon route
|
|
5450
5779
|
*/
|
|
5451
5780
|
description?: string;
|
|
5452
5781
|
/**
|
|
5453
5782
|
* @remarks
|
|
5454
|
-
*
|
|
5783
|
+
* The domain name IDs.
|
|
5455
5784
|
*/
|
|
5456
5785
|
domainIds?: string[];
|
|
5457
5786
|
/**
|
|
5458
5787
|
* @remarks
|
|
5459
|
-
*
|
|
5788
|
+
* The environment ID.
|
|
5460
5789
|
*
|
|
5461
5790
|
* @example
|
|
5462
5791
|
* env-cpqnr6tlhtgubcv***
|
|
@@ -5464,12 +5793,12 @@ export declare class CreateHttpApiRouteRequest extends $dara.Model {
|
|
|
5464
5793
|
environmentId?: string;
|
|
5465
5794
|
/**
|
|
5466
5795
|
* @remarks
|
|
5467
|
-
*
|
|
5796
|
+
* The rule for matching the route.
|
|
5468
5797
|
*/
|
|
5469
5798
|
match?: HttpRouteMatch;
|
|
5470
5799
|
/**
|
|
5471
5800
|
* @remarks
|
|
5472
|
-
*
|
|
5801
|
+
* The route name.
|
|
5473
5802
|
*
|
|
5474
5803
|
* @example
|
|
5475
5804
|
* login
|
|
@@ -5489,7 +5818,7 @@ export declare class CreateHttpApiRouteRequest extends $dara.Model {
|
|
|
5489
5818
|
export declare class CreateHttpApiRouteResponseBody extends $dara.Model {
|
|
5490
5819
|
/**
|
|
5491
5820
|
* @remarks
|
|
5492
|
-
*
|
|
5821
|
+
* The status code.
|
|
5493
5822
|
*
|
|
5494
5823
|
* @example
|
|
5495
5824
|
* Ok
|
|
@@ -5497,12 +5826,12 @@ export declare class CreateHttpApiRouteResponseBody extends $dara.Model {
|
|
|
5497
5826
|
code?: string;
|
|
5498
5827
|
/**
|
|
5499
5828
|
* @remarks
|
|
5500
|
-
*
|
|
5829
|
+
* The response data.
|
|
5501
5830
|
*/
|
|
5502
5831
|
data?: CreateHttpApiRouteResponseBodyData;
|
|
5503
5832
|
/**
|
|
5504
5833
|
* @remarks
|
|
5505
|
-
*
|
|
5834
|
+
* The returned message.
|
|
5506
5835
|
*
|
|
5507
5836
|
* @example
|
|
5508
5837
|
* success
|
|
@@ -5510,7 +5839,7 @@ export declare class CreateHttpApiRouteResponseBody extends $dara.Model {
|
|
|
5510
5839
|
message?: string;
|
|
5511
5840
|
/**
|
|
5512
5841
|
* @remarks
|
|
5513
|
-
*
|
|
5842
|
+
* The request ID.
|
|
5514
5843
|
*
|
|
5515
5844
|
* @example
|
|
5516
5845
|
* 3ACFC7A7-45A9-58CF-B2D5-765B60254695
|
|
@@ -5547,6 +5876,8 @@ export declare class CreateHttpApiRouteResponse extends $dara.Model {
|
|
|
5547
5876
|
export declare class CreatePolicyRequest extends $dara.Model {
|
|
5548
5877
|
/**
|
|
5549
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
|
+
*
|
|
5550
5881
|
* This parameter is required.
|
|
5551
5882
|
*
|
|
5552
5883
|
* @example
|
|
@@ -5555,15 +5886,26 @@ export declare class CreatePolicyRequest extends $dara.Model {
|
|
|
5555
5886
|
className?: string;
|
|
5556
5887
|
/**
|
|
5557
5888
|
* @remarks
|
|
5889
|
+
* Policy configuration
|
|
5890
|
+
*
|
|
5558
5891
|
* This parameter is required.
|
|
5559
5892
|
*
|
|
5560
5893
|
* @example
|
|
5561
5894
|
* {"unitNum":1,"timeUnit":"s","enable":true}
|
|
5562
5895
|
*/
|
|
5563
5896
|
config?: string;
|
|
5564
|
-
description?: string;
|
|
5565
5897
|
/**
|
|
5566
5898
|
* @remarks
|
|
5899
|
+
* Policy description
|
|
5900
|
+
*
|
|
5901
|
+
* @example
|
|
5902
|
+
* timeout policy
|
|
5903
|
+
*/
|
|
5904
|
+
description?: string;
|
|
5905
|
+
/**
|
|
5906
|
+
* @remarks
|
|
5907
|
+
* Policy name
|
|
5908
|
+
*
|
|
5567
5909
|
* This parameter is required.
|
|
5568
5910
|
*
|
|
5569
5911
|
* @example
|
|
@@ -5583,19 +5925,29 @@ export declare class CreatePolicyRequest extends $dara.Model {
|
|
|
5583
5925
|
}
|
|
5584
5926
|
export declare class CreatePolicyResponseBody extends $dara.Model {
|
|
5585
5927
|
/**
|
|
5928
|
+
* @remarks
|
|
5929
|
+
* Response status code.
|
|
5930
|
+
*
|
|
5586
5931
|
* @example
|
|
5587
5932
|
* Ok
|
|
5588
5933
|
*/
|
|
5589
5934
|
code?: string;
|
|
5935
|
+
/**
|
|
5936
|
+
* @remarks
|
|
5937
|
+
* Response data.
|
|
5938
|
+
*/
|
|
5590
5939
|
data?: CreatePolicyResponseBodyData;
|
|
5591
5940
|
/**
|
|
5941
|
+
* @remarks
|
|
5942
|
+
* Response message.
|
|
5943
|
+
*
|
|
5592
5944
|
* @example
|
|
5593
5945
|
* success
|
|
5594
5946
|
*/
|
|
5595
5947
|
message?: string;
|
|
5596
5948
|
/**
|
|
5597
5949
|
* @remarks
|
|
5598
|
-
*
|
|
5950
|
+
* ID of the request
|
|
5599
5951
|
*
|
|
5600
5952
|
* @example
|
|
5601
5953
|
* 393E2630-DBE7-5221-AB35-9E7406754***
|
|
@@ -5632,6 +5984,8 @@ export declare class CreatePolicyResponse extends $dara.Model {
|
|
|
5632
5984
|
export declare class CreatePolicyAttachmentRequest extends $dara.Model {
|
|
5633
5985
|
/**
|
|
5634
5986
|
* @remarks
|
|
5987
|
+
* Attached resource ID
|
|
5988
|
+
*
|
|
5635
5989
|
* This parameter is required.
|
|
5636
5990
|
*
|
|
5637
5991
|
* @example
|
|
@@ -5640,6 +5994,8 @@ export declare class CreatePolicyAttachmentRequest extends $dara.Model {
|
|
|
5640
5994
|
attachResourceId?: string;
|
|
5641
5995
|
/**
|
|
5642
5996
|
* @remarks
|
|
5997
|
+
* Attached resource type, such as HttpApi, GatewayRoute, Operation, GatewayService, GatewayServicePort, Gateway, Domain
|
|
5998
|
+
*
|
|
5643
5999
|
* This parameter is required.
|
|
5644
6000
|
*
|
|
5645
6001
|
* @example
|
|
@@ -5648,6 +6004,8 @@ export declare class CreatePolicyAttachmentRequest extends $dara.Model {
|
|
|
5648
6004
|
attachResourceType?: string;
|
|
5649
6005
|
/**
|
|
5650
6006
|
* @remarks
|
|
6007
|
+
* Environment ID
|
|
6008
|
+
*
|
|
5651
6009
|
* This parameter is required.
|
|
5652
6010
|
*
|
|
5653
6011
|
* @example
|
|
@@ -5656,6 +6014,8 @@ export declare class CreatePolicyAttachmentRequest extends $dara.Model {
|
|
|
5656
6014
|
environmentId?: string;
|
|
5657
6015
|
/**
|
|
5658
6016
|
* @remarks
|
|
6017
|
+
* Gateway instance ID
|
|
6018
|
+
*
|
|
5659
6019
|
* This parameter is required.
|
|
5660
6020
|
*
|
|
5661
6021
|
* @example
|
|
@@ -5664,6 +6024,8 @@ export declare class CreatePolicyAttachmentRequest extends $dara.Model {
|
|
|
5664
6024
|
gatewayId?: string;
|
|
5665
6025
|
/**
|
|
5666
6026
|
* @remarks
|
|
6027
|
+
* Policy ID
|
|
6028
|
+
*
|
|
5667
6029
|
* This parameter is required.
|
|
5668
6030
|
*
|
|
5669
6031
|
* @example
|
|
@@ -5683,19 +6045,29 @@ export declare class CreatePolicyAttachmentRequest extends $dara.Model {
|
|
|
5683
6045
|
}
|
|
5684
6046
|
export declare class CreatePolicyAttachmentResponseBody extends $dara.Model {
|
|
5685
6047
|
/**
|
|
6048
|
+
* @remarks
|
|
6049
|
+
* Response code.
|
|
6050
|
+
*
|
|
5686
6051
|
* @example
|
|
5687
6052
|
* Ok
|
|
5688
6053
|
*/
|
|
5689
6054
|
code?: string;
|
|
6055
|
+
/**
|
|
6056
|
+
* @remarks
|
|
6057
|
+
* Response data.
|
|
6058
|
+
*/
|
|
5690
6059
|
data?: CreatePolicyAttachmentResponseBodyData;
|
|
5691
6060
|
/**
|
|
6061
|
+
* @remarks
|
|
6062
|
+
* Response message.
|
|
6063
|
+
*
|
|
5692
6064
|
* @example
|
|
5693
6065
|
* success
|
|
5694
6066
|
*/
|
|
5695
6067
|
message?: string;
|
|
5696
6068
|
/**
|
|
5697
6069
|
* @remarks
|
|
5698
|
-
*
|
|
6070
|
+
* ID of the request
|
|
5699
6071
|
*
|
|
5700
6072
|
* @example
|
|
5701
6073
|
* 585657D2-1C20-5B8A-AF17-D727C64***
|
|
@@ -5731,13 +6103,36 @@ export declare class CreatePolicyAttachmentResponse extends $dara.Model {
|
|
|
5731
6103
|
}
|
|
5732
6104
|
export declare class CreateServiceRequest extends $dara.Model {
|
|
5733
6105
|
/**
|
|
6106
|
+
* @remarks
|
|
6107
|
+
* Gateway ID.
|
|
6108
|
+
*
|
|
5734
6109
|
* @example
|
|
5735
6110
|
* gw-cq7l5s5lhtg***
|
|
5736
6111
|
*/
|
|
5737
6112
|
gatewayId?: string;
|
|
6113
|
+
/**
|
|
6114
|
+
* @remarks
|
|
6115
|
+
* Resource group ID.
|
|
6116
|
+
*
|
|
6117
|
+
* @example
|
|
6118
|
+
* rg-xxx
|
|
6119
|
+
*/
|
|
5738
6120
|
resourceGroupId?: string;
|
|
6121
|
+
/**
|
|
6122
|
+
* @remarks
|
|
6123
|
+
* List of service configuration information.
|
|
6124
|
+
*/
|
|
5739
6125
|
serviceConfigs?: CreateServiceRequestServiceConfigs[];
|
|
5740
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
|
+
*
|
|
5741
6136
|
* @example
|
|
5742
6137
|
* MSE_NACOS
|
|
5743
6138
|
*/
|
|
@@ -5755,17 +6150,30 @@ export declare class CreateServiceRequest extends $dara.Model {
|
|
|
5755
6150
|
}
|
|
5756
6151
|
export declare class CreateServiceResponseBody extends $dara.Model {
|
|
5757
6152
|
/**
|
|
6153
|
+
* @remarks
|
|
6154
|
+
* Response status code.
|
|
6155
|
+
*
|
|
5758
6156
|
* @example
|
|
5759
6157
|
* Ok
|
|
5760
6158
|
*/
|
|
5761
6159
|
code?: string;
|
|
6160
|
+
/**
|
|
6161
|
+
* @remarks
|
|
6162
|
+
* Response data.
|
|
6163
|
+
*/
|
|
5762
6164
|
data?: CreateServiceResponseBodyData;
|
|
5763
6165
|
/**
|
|
6166
|
+
* @remarks
|
|
6167
|
+
* Response message.
|
|
6168
|
+
*
|
|
5764
6169
|
* @example
|
|
5765
6170
|
* success
|
|
5766
6171
|
*/
|
|
5767
6172
|
message?: string;
|
|
5768
6173
|
/**
|
|
6174
|
+
* @remarks
|
|
6175
|
+
* Request ID.
|
|
6176
|
+
*
|
|
5769
6177
|
* @example
|
|
5770
6178
|
* C67DED2B-F19B-5BEC-88C1-D6EB854CD0D4
|
|
5771
6179
|
*/
|
|
@@ -6033,7 +6441,7 @@ export declare class DeleteGatewaySecurityGroupRuleResponse extends $dara.Model
|
|
|
6033
6441
|
export declare class DeleteHttpApiResponseBody extends $dara.Model {
|
|
6034
6442
|
/**
|
|
6035
6443
|
* @remarks
|
|
6036
|
-
*
|
|
6444
|
+
* The status code.
|
|
6037
6445
|
*
|
|
6038
6446
|
* @example
|
|
6039
6447
|
* Ok
|
|
@@ -6041,7 +6449,7 @@ export declare class DeleteHttpApiResponseBody extends $dara.Model {
|
|
|
6041
6449
|
code?: string;
|
|
6042
6450
|
/**
|
|
6043
6451
|
* @remarks
|
|
6044
|
-
*
|
|
6452
|
+
* The returned message.
|
|
6045
6453
|
*
|
|
6046
6454
|
* @example
|
|
6047
6455
|
* success
|
|
@@ -6049,7 +6457,7 @@ export declare class DeleteHttpApiResponseBody extends $dara.Model {
|
|
|
6049
6457
|
message?: string;
|
|
6050
6458
|
/**
|
|
6051
6459
|
* @remarks
|
|
6052
|
-
*
|
|
6460
|
+
* The request ID.
|
|
6053
6461
|
*
|
|
6054
6462
|
* @example
|
|
6055
6463
|
* 5B626361-070A-56A7-B127-ADAC8F3655DB
|
|
@@ -6191,18 +6599,24 @@ export declare class DeleteHttpApiRouteResponse extends $dara.Model {
|
|
|
6191
6599
|
}
|
|
6192
6600
|
export declare class DeletePolicyResponseBody extends $dara.Model {
|
|
6193
6601
|
/**
|
|
6602
|
+
* @remarks
|
|
6603
|
+
* Response status code.
|
|
6604
|
+
*
|
|
6194
6605
|
* @example
|
|
6195
6606
|
* Ok
|
|
6196
6607
|
*/
|
|
6197
6608
|
code?: string;
|
|
6198
6609
|
/**
|
|
6610
|
+
* @remarks
|
|
6611
|
+
* Response message.
|
|
6612
|
+
*
|
|
6199
6613
|
* @example
|
|
6200
6614
|
* success
|
|
6201
6615
|
*/
|
|
6202
6616
|
message?: string;
|
|
6203
6617
|
/**
|
|
6204
6618
|
* @remarks
|
|
6205
|
-
*
|
|
6619
|
+
* ID of the request
|
|
6206
6620
|
*
|
|
6207
6621
|
* @example
|
|
6208
6622
|
* 393E2630-DBE7-5221-AB35-9E7406754***
|
|
@@ -6238,18 +6652,24 @@ export declare class DeletePolicyResponse extends $dara.Model {
|
|
|
6238
6652
|
}
|
|
6239
6653
|
export declare class DeletePolicyAttachmentResponseBody extends $dara.Model {
|
|
6240
6654
|
/**
|
|
6655
|
+
* @remarks
|
|
6656
|
+
* Response status code.
|
|
6657
|
+
*
|
|
6241
6658
|
* @example
|
|
6242
6659
|
* 200
|
|
6243
6660
|
*/
|
|
6244
6661
|
code?: string;
|
|
6245
6662
|
/**
|
|
6663
|
+
* @remarks
|
|
6664
|
+
* Response message.
|
|
6665
|
+
*
|
|
6246
6666
|
* @example
|
|
6247
6667
|
* success
|
|
6248
6668
|
*/
|
|
6249
6669
|
message?: string;
|
|
6250
6670
|
/**
|
|
6251
6671
|
* @remarks
|
|
6252
|
-
*
|
|
6672
|
+
* ID of the request
|
|
6253
6673
|
*
|
|
6254
6674
|
* @example
|
|
6255
6675
|
* CE857A85-251D-5018-8103-A38957D71***
|
|
@@ -6284,8 +6704,15 @@ export declare class DeletePolicyAttachmentResponse extends $dara.Model {
|
|
|
6284
6704
|
});
|
|
6285
6705
|
}
|
|
6286
6706
|
export declare class DeployHttpApiRequest extends $dara.Model {
|
|
6707
|
+
/**
|
|
6708
|
+
* @remarks
|
|
6709
|
+
* Rest API deployment configuration. Required when deploying an HTTP API as a Rest API.
|
|
6710
|
+
*/
|
|
6287
6711
|
restApiConfig?: DeployHttpApiRequestRestApiConfig;
|
|
6288
6712
|
/**
|
|
6713
|
+
* @remarks
|
|
6714
|
+
* Route ID. This must be provided when publishing the route of an HTTP API.
|
|
6715
|
+
*
|
|
6289
6716
|
* @example
|
|
6290
6717
|
* hr-cr82undlhtgrl***
|
|
6291
6718
|
*/
|
|
@@ -6303,16 +6730,25 @@ export declare class DeployHttpApiRequest extends $dara.Model {
|
|
|
6303
6730
|
}
|
|
6304
6731
|
export declare class DeployHttpApiResponseBody extends $dara.Model {
|
|
6305
6732
|
/**
|
|
6733
|
+
* @remarks
|
|
6734
|
+
* Response status code.
|
|
6735
|
+
*
|
|
6306
6736
|
* @example
|
|
6307
6737
|
* Ok
|
|
6308
6738
|
*/
|
|
6309
6739
|
code?: string;
|
|
6310
6740
|
/**
|
|
6741
|
+
* @remarks
|
|
6742
|
+
* 响应消息。
|
|
6743
|
+
*
|
|
6311
6744
|
* @example
|
|
6312
6745
|
* success
|
|
6313
6746
|
*/
|
|
6314
6747
|
message?: string;
|
|
6315
6748
|
/**
|
|
6749
|
+
* @remarks
|
|
6750
|
+
* Request ID.
|
|
6751
|
+
*
|
|
6316
6752
|
* @example
|
|
6317
6753
|
* 0C2D1C68-0D93-5561-8EE6-FDB7BF067A30
|
|
6318
6754
|
*/
|
|
@@ -6405,23 +6841,50 @@ export declare class ExportHttpApiResponse extends $dara.Model {
|
|
|
6405
6841
|
}
|
|
6406
6842
|
export declare class GetDashboardRequest extends $dara.Model {
|
|
6407
6843
|
/**
|
|
6844
|
+
* @remarks
|
|
6845
|
+
* zh: Chinese
|
|
6846
|
+
* en: English
|
|
6847
|
+
*
|
|
6408
6848
|
* @example
|
|
6409
6849
|
* zh
|
|
6410
6850
|
*/
|
|
6411
6851
|
acceptLanguage?: string;
|
|
6852
|
+
/**
|
|
6853
|
+
* @remarks
|
|
6854
|
+
* API ID
|
|
6855
|
+
*
|
|
6856
|
+
* @example
|
|
6857
|
+
* api-c9uuekzmia8q2****
|
|
6858
|
+
*/
|
|
6412
6859
|
apiId?: string;
|
|
6860
|
+
/**
|
|
6861
|
+
* @remarks
|
|
6862
|
+
* Filter configuration
|
|
6863
|
+
*/
|
|
6413
6864
|
filter?: GetDashboardRequestFilter;
|
|
6414
6865
|
/**
|
|
6866
|
+
* @remarks
|
|
6867
|
+
* Dashboard name:
|
|
6868
|
+
* - LOG: Access log
|
|
6869
|
+
* - PLUGIN: Plugin log
|
|
6870
|
+
*
|
|
6415
6871
|
* @example
|
|
6416
6872
|
* PLUGIN
|
|
6417
6873
|
*/
|
|
6418
6874
|
name?: string;
|
|
6419
6875
|
/**
|
|
6876
|
+
* @remarks
|
|
6877
|
+
* Plugin ID.
|
|
6878
|
+
*
|
|
6420
6879
|
* @example
|
|
6421
6880
|
* pls-dn82a9djd8z****
|
|
6422
6881
|
*/
|
|
6423
6882
|
pluginClassId?: string;
|
|
6424
6883
|
/**
|
|
6884
|
+
* @remarks
|
|
6885
|
+
* Dashboard source:
|
|
6886
|
+
* - SLS: Log dashboard
|
|
6887
|
+
*
|
|
6425
6888
|
* @example
|
|
6426
6889
|
* SLS
|
|
6427
6890
|
*/
|
|
@@ -6439,23 +6902,50 @@ export declare class GetDashboardRequest extends $dara.Model {
|
|
|
6439
6902
|
}
|
|
6440
6903
|
export declare class GetDashboardShrinkRequest extends $dara.Model {
|
|
6441
6904
|
/**
|
|
6905
|
+
* @remarks
|
|
6906
|
+
* zh: Chinese
|
|
6907
|
+
* en: English
|
|
6908
|
+
*
|
|
6442
6909
|
* @example
|
|
6443
6910
|
* zh
|
|
6444
6911
|
*/
|
|
6445
6912
|
acceptLanguage?: string;
|
|
6913
|
+
/**
|
|
6914
|
+
* @remarks
|
|
6915
|
+
* API ID
|
|
6916
|
+
*
|
|
6917
|
+
* @example
|
|
6918
|
+
* api-c9uuekzmia8q2****
|
|
6919
|
+
*/
|
|
6446
6920
|
apiId?: string;
|
|
6921
|
+
/**
|
|
6922
|
+
* @remarks
|
|
6923
|
+
* Filter configuration
|
|
6924
|
+
*/
|
|
6447
6925
|
filterShrink?: string;
|
|
6448
6926
|
/**
|
|
6927
|
+
* @remarks
|
|
6928
|
+
* Dashboard name:
|
|
6929
|
+
* - LOG: Access log
|
|
6930
|
+
* - PLUGIN: Plugin log
|
|
6931
|
+
*
|
|
6449
6932
|
* @example
|
|
6450
6933
|
* PLUGIN
|
|
6451
6934
|
*/
|
|
6452
6935
|
name?: string;
|
|
6453
6936
|
/**
|
|
6937
|
+
* @remarks
|
|
6938
|
+
* Plugin ID.
|
|
6939
|
+
*
|
|
6454
6940
|
* @example
|
|
6455
6941
|
* pls-dn82a9djd8z****
|
|
6456
6942
|
*/
|
|
6457
6943
|
pluginClassId?: string;
|
|
6458
6944
|
/**
|
|
6945
|
+
* @remarks
|
|
6946
|
+
* Dashboard source:
|
|
6947
|
+
* - SLS: Log dashboard
|
|
6948
|
+
*
|
|
6459
6949
|
* @example
|
|
6460
6950
|
* SLS
|
|
6461
6951
|
*/
|
|
@@ -6473,30 +6963,46 @@ export declare class GetDashboardShrinkRequest extends $dara.Model {
|
|
|
6473
6963
|
}
|
|
6474
6964
|
export declare class GetDashboardResponseBody extends $dara.Model {
|
|
6475
6965
|
/**
|
|
6966
|
+
* @remarks
|
|
6967
|
+
* Response code
|
|
6968
|
+
*
|
|
6476
6969
|
* @example
|
|
6477
6970
|
* 200
|
|
6478
6971
|
*/
|
|
6479
6972
|
code?: number;
|
|
6973
|
+
/**
|
|
6974
|
+
* @remarks
|
|
6975
|
+
* Response data
|
|
6976
|
+
*/
|
|
6480
6977
|
data?: GetDashboardResponseBodyData;
|
|
6481
6978
|
/**
|
|
6979
|
+
* @remarks
|
|
6980
|
+
* Backend error code
|
|
6981
|
+
*
|
|
6482
6982
|
* @example
|
|
6483
6983
|
* Ok
|
|
6484
6984
|
*/
|
|
6485
6985
|
errorCode?: string;
|
|
6486
6986
|
/**
|
|
6987
|
+
* @remarks
|
|
6988
|
+
* Error message
|
|
6989
|
+
*
|
|
6487
6990
|
* @example
|
|
6488
6991
|
* success
|
|
6489
6992
|
*/
|
|
6490
6993
|
message?: string;
|
|
6491
6994
|
/**
|
|
6492
6995
|
* @remarks
|
|
6493
|
-
*
|
|
6996
|
+
* Request ID
|
|
6494
6997
|
*
|
|
6495
6998
|
* @example
|
|
6496
6999
|
* 2F46B9E7-67EF-5C8A-BA52-D38D5B32AF2C
|
|
6497
7000
|
*/
|
|
6498
7001
|
requestId?: string;
|
|
6499
7002
|
/**
|
|
7003
|
+
* @remarks
|
|
7004
|
+
* Whether the request was successful
|
|
7005
|
+
*
|
|
6500
7006
|
* @example
|
|
6501
7007
|
* true
|
|
6502
7008
|
*/
|
|
@@ -6530,6 +7036,13 @@ export declare class GetDashboardResponse extends $dara.Model {
|
|
|
6530
7036
|
});
|
|
6531
7037
|
}
|
|
6532
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
|
+
*/
|
|
6533
7046
|
withStatistics?: boolean;
|
|
6534
7047
|
static names(): {
|
|
6535
7048
|
[key: string]: string;
|
|
@@ -6920,12 +7433,22 @@ export declare class GetHttpApiRouteResponse extends $dara.Model {
|
|
|
6920
7433
|
}
|
|
6921
7434
|
export declare class GetPolicyResponseBody extends $dara.Model {
|
|
6922
7435
|
/**
|
|
7436
|
+
* @remarks
|
|
7437
|
+
* Response code.
|
|
7438
|
+
*
|
|
6923
7439
|
* @example
|
|
6924
7440
|
* Ok
|
|
6925
7441
|
*/
|
|
6926
7442
|
code?: string;
|
|
7443
|
+
/**
|
|
7444
|
+
* @remarks
|
|
7445
|
+
* Response data.
|
|
7446
|
+
*/
|
|
6927
7447
|
data?: PolicyDetailInfo;
|
|
6928
7448
|
/**
|
|
7449
|
+
* @remarks
|
|
7450
|
+
* Response message.
|
|
7451
|
+
*
|
|
6929
7452
|
* @example
|
|
6930
7453
|
* success
|
|
6931
7454
|
*/
|
|
@@ -6968,19 +7491,29 @@ export declare class GetPolicyResponse extends $dara.Model {
|
|
|
6968
7491
|
}
|
|
6969
7492
|
export declare class GetPolicyAttachmentResponseBody extends $dara.Model {
|
|
6970
7493
|
/**
|
|
7494
|
+
* @remarks
|
|
7495
|
+
* Response code.
|
|
7496
|
+
*
|
|
6971
7497
|
* @example
|
|
6972
7498
|
* 200
|
|
6973
7499
|
*/
|
|
6974
7500
|
code?: string;
|
|
7501
|
+
/**
|
|
7502
|
+
* @remarks
|
|
7503
|
+
* Response data.
|
|
7504
|
+
*/
|
|
6975
7505
|
data?: GetPolicyAttachmentResponseBodyData;
|
|
6976
7506
|
/**
|
|
7507
|
+
* @remarks
|
|
7508
|
+
* Response message.
|
|
7509
|
+
*
|
|
6977
7510
|
* @example
|
|
6978
7511
|
* success
|
|
6979
7512
|
*/
|
|
6980
7513
|
message?: string;
|
|
6981
7514
|
/**
|
|
6982
7515
|
* @remarks
|
|
6983
|
-
*
|
|
7516
|
+
* ID of the request
|
|
6984
7517
|
*
|
|
6985
7518
|
* @example
|
|
6986
7519
|
* 2C3B9A12-3868-5EB9-fBEA-F99E03DD1***
|
|
@@ -7016,17 +7549,30 @@ export declare class GetPolicyAttachmentResponse extends $dara.Model {
|
|
|
7016
7549
|
}
|
|
7017
7550
|
export declare class GetResourceOverviewResponseBody extends $dara.Model {
|
|
7018
7551
|
/**
|
|
7552
|
+
* @remarks
|
|
7553
|
+
* Response status code.
|
|
7554
|
+
*
|
|
7019
7555
|
* @example
|
|
7020
7556
|
* Ok
|
|
7021
7557
|
*/
|
|
7022
7558
|
code?: string;
|
|
7559
|
+
/**
|
|
7560
|
+
* @remarks
|
|
7561
|
+
* Resource information.
|
|
7562
|
+
*/
|
|
7023
7563
|
data?: GetResourceOverviewResponseBodyData;
|
|
7024
7564
|
/**
|
|
7565
|
+
* @remarks
|
|
7566
|
+
* Response message.
|
|
7567
|
+
*
|
|
7025
7568
|
* @example
|
|
7026
7569
|
* success
|
|
7027
7570
|
*/
|
|
7028
7571
|
message?: string;
|
|
7029
7572
|
/**
|
|
7573
|
+
* @remarks
|
|
7574
|
+
* Request ID.
|
|
7575
|
+
*
|
|
7030
7576
|
* @example
|
|
7031
7577
|
* DD19A442-93C5-5C97-AFA0-B9C57EBD781B
|
|
7032
7578
|
*/
|
|
@@ -7061,17 +7607,30 @@ export declare class GetResourceOverviewResponse extends $dara.Model {
|
|
|
7061
7607
|
}
|
|
7062
7608
|
export declare class GetServiceResponseBody extends $dara.Model {
|
|
7063
7609
|
/**
|
|
7610
|
+
* @remarks
|
|
7611
|
+
* Response status code.
|
|
7612
|
+
*
|
|
7064
7613
|
* @example
|
|
7065
7614
|
* Ok
|
|
7066
7615
|
*/
|
|
7067
7616
|
code?: string;
|
|
7617
|
+
/**
|
|
7618
|
+
* @remarks
|
|
7619
|
+
* Service details data.
|
|
7620
|
+
*/
|
|
7068
7621
|
data?: Service;
|
|
7069
7622
|
/**
|
|
7623
|
+
* @remarks
|
|
7624
|
+
* Response message.
|
|
7625
|
+
*
|
|
7070
7626
|
* @example
|
|
7071
7627
|
* success
|
|
7072
7628
|
*/
|
|
7073
7629
|
message?: string;
|
|
7074
7630
|
/**
|
|
7631
|
+
* @remarks
|
|
7632
|
+
* Request ID.
|
|
7633
|
+
*
|
|
7075
7634
|
* @example
|
|
7076
7635
|
* 8FA9BB94-915B-5299-A694-49FCC7F5DD00
|
|
7077
7636
|
*/
|
|
@@ -7106,6 +7665,11 @@ export declare class GetServiceResponse extends $dara.Model {
|
|
|
7106
7665
|
}
|
|
7107
7666
|
export declare class GetTraceConfigRequest extends $dara.Model {
|
|
7108
7667
|
/**
|
|
7668
|
+
* @remarks
|
|
7669
|
+
* Language Type:
|
|
7670
|
+
* zh: Chinese
|
|
7671
|
+
* en: English
|
|
7672
|
+
*
|
|
7109
7673
|
* @example
|
|
7110
7674
|
* zh
|
|
7111
7675
|
*/
|
|
@@ -7123,22 +7687,40 @@ export declare class GetTraceConfigRequest extends $dara.Model {
|
|
|
7123
7687
|
}
|
|
7124
7688
|
export declare class GetTraceConfigResponseBody extends $dara.Model {
|
|
7125
7689
|
/**
|
|
7690
|
+
* @remarks
|
|
7691
|
+
* Response Code
|
|
7692
|
+
*
|
|
7126
7693
|
* @example
|
|
7127
7694
|
* 200
|
|
7128
7695
|
*/
|
|
7129
7696
|
code?: number;
|
|
7697
|
+
/**
|
|
7698
|
+
* @remarks
|
|
7699
|
+
* Response Data
|
|
7700
|
+
*/
|
|
7130
7701
|
data?: GetTraceConfigResponseBodyData;
|
|
7131
7702
|
/**
|
|
7703
|
+
* @remarks
|
|
7704
|
+
* Error Message
|
|
7705
|
+
*
|
|
7132
7706
|
* @example
|
|
7133
7707
|
* success
|
|
7134
7708
|
*/
|
|
7135
7709
|
message?: string;
|
|
7136
7710
|
/**
|
|
7711
|
+
* @remarks
|
|
7712
|
+
* Request ID
|
|
7713
|
+
*
|
|
7137
7714
|
* @example
|
|
7138
7715
|
* 2F46B9E7-67EF-5C8A-BA52-D38D5B32AF2C
|
|
7139
7716
|
*/
|
|
7140
7717
|
requestId?: string;
|
|
7141
7718
|
/**
|
|
7719
|
+
* @remarks
|
|
7720
|
+
* Boolean Request Result, with the following values:
|
|
7721
|
+
* true: Request succeeded.
|
|
7722
|
+
* false: Request failed.
|
|
7723
|
+
*
|
|
7142
7724
|
* @example
|
|
7143
7725
|
* true
|
|
7144
7726
|
*/
|
|
@@ -7894,50 +8476,109 @@ export declare class ListHttpApiOperationsResponse extends $dara.Model {
|
|
|
7894
8476
|
});
|
|
7895
8477
|
}
|
|
7896
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
|
+
*/
|
|
7897
8486
|
consumerAuthorizationRuleId?: string;
|
|
7898
8487
|
/**
|
|
8488
|
+
* @remarks
|
|
8489
|
+
* Deployment status of the route.
|
|
8490
|
+
*
|
|
7899
8491
|
* @example
|
|
7900
8492
|
* NotDeployed
|
|
7901
8493
|
*/
|
|
7902
8494
|
deployStatuses?: string;
|
|
8495
|
+
/**
|
|
8496
|
+
* @remarks
|
|
8497
|
+
* Filter route information by domain ID.
|
|
8498
|
+
*
|
|
8499
|
+
* @example
|
|
8500
|
+
* d-xxx
|
|
8501
|
+
*/
|
|
7903
8502
|
domainId?: string;
|
|
7904
8503
|
/**
|
|
8504
|
+
* @remarks
|
|
8505
|
+
* Environment ID.
|
|
8506
|
+
*
|
|
7905
8507
|
* @example
|
|
7906
8508
|
* env-cpqnr6tlhtgubc***
|
|
7907
8509
|
*/
|
|
7908
8510
|
environmentId?: string;
|
|
7909
8511
|
/**
|
|
8512
|
+
* @remarks
|
|
8513
|
+
* Cloud-native API Gateway ID.
|
|
8514
|
+
*
|
|
7910
8515
|
* @example
|
|
7911
8516
|
* gw-cpv4sqdl****
|
|
7912
8517
|
*/
|
|
7913
8518
|
gatewayId?: string;
|
|
7914
8519
|
/**
|
|
8520
|
+
* @remarks
|
|
8521
|
+
* Route name.
|
|
8522
|
+
*
|
|
7915
8523
|
* @example
|
|
7916
8524
|
* itemcenter-gateway
|
|
7917
8525
|
*/
|
|
7918
8526
|
name?: string;
|
|
7919
8527
|
/**
|
|
8528
|
+
* @remarks
|
|
8529
|
+
* Fuzzy search by route name.
|
|
8530
|
+
*
|
|
7920
8531
|
* @example
|
|
7921
8532
|
* item
|
|
7922
8533
|
*/
|
|
7923
8534
|
nameLike?: string;
|
|
7924
8535
|
/**
|
|
8536
|
+
* @remarks
|
|
8537
|
+
* Page number, starting from 1. Default is 1 if not specified.
|
|
8538
|
+
*
|
|
7925
8539
|
* @example
|
|
7926
8540
|
* 1
|
|
7927
8541
|
*/
|
|
7928
8542
|
pageNumber?: number;
|
|
7929
8543
|
/**
|
|
8544
|
+
* @remarks
|
|
8545
|
+
* Page size, valid range [1, 100]. Default is 10 if not specified.
|
|
8546
|
+
*
|
|
7930
8547
|
* @example
|
|
7931
8548
|
* 10
|
|
7932
8549
|
*/
|
|
7933
8550
|
pageSize?: number;
|
|
7934
8551
|
/**
|
|
8552
|
+
* @remarks
|
|
8553
|
+
* Fuzzy search by route path.
|
|
8554
|
+
*
|
|
7935
8555
|
* @example
|
|
7936
8556
|
* /v1
|
|
7937
8557
|
*/
|
|
7938
8558
|
pathLike?: string;
|
|
8559
|
+
/**
|
|
8560
|
+
* @remarks
|
|
8561
|
+
* The response includes consumer authorization information.
|
|
8562
|
+
*
|
|
8563
|
+
* @example
|
|
8564
|
+
* true
|
|
8565
|
+
*/
|
|
7939
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
|
+
*/
|
|
7940
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
|
+
*/
|
|
7941
8582
|
withPluginAttachmentByPluginId?: string;
|
|
7942
8583
|
static names(): {
|
|
7943
8584
|
[key: string]: string;
|
|
@@ -7952,17 +8593,30 @@ export declare class ListHttpApiRoutesRequest extends $dara.Model {
|
|
|
7952
8593
|
}
|
|
7953
8594
|
export declare class ListHttpApiRoutesResponseBody extends $dara.Model {
|
|
7954
8595
|
/**
|
|
8596
|
+
* @remarks
|
|
8597
|
+
* Response status code.
|
|
8598
|
+
*
|
|
7955
8599
|
* @example
|
|
7956
8600
|
* Ok
|
|
7957
8601
|
*/
|
|
7958
8602
|
code?: string;
|
|
7959
|
-
data?: ListHttpApiRoutesResponseBodyData;
|
|
7960
8603
|
/**
|
|
7961
|
-
* @
|
|
7962
|
-
*
|
|
8604
|
+
* @remarks
|
|
8605
|
+
* Response data.
|
|
8606
|
+
*/
|
|
8607
|
+
data?: ListHttpApiRoutesResponseBodyData;
|
|
8608
|
+
/**
|
|
8609
|
+
* @remarks
|
|
8610
|
+
* Response message.
|
|
8611
|
+
*
|
|
8612
|
+
* @example
|
|
8613
|
+
* success
|
|
7963
8614
|
*/
|
|
7964
8615
|
message?: string;
|
|
7965
8616
|
/**
|
|
8617
|
+
* @remarks
|
|
8618
|
+
* Request ID.
|
|
8619
|
+
*
|
|
7966
8620
|
* @example
|
|
7967
8621
|
* CBEEB8C1-108E-50F0-9BEA-DED79553C309
|
|
7968
8622
|
*/
|
|
@@ -8022,7 +8676,7 @@ export declare class ListHttpApisRequest extends $dara.Model {
|
|
|
8022
8676
|
name?: string;
|
|
8023
8677
|
/**
|
|
8024
8678
|
* @remarks
|
|
8025
|
-
* Page number, starting from 1, default is 1 if not
|
|
8679
|
+
* Page number, starting from 1, default is 1 if not specified.
|
|
8026
8680
|
*
|
|
8027
8681
|
* @example
|
|
8028
8682
|
* 1
|
|
@@ -8030,16 +8684,23 @@ export declare class ListHttpApisRequest extends $dara.Model {
|
|
|
8030
8684
|
pageNumber?: number;
|
|
8031
8685
|
/**
|
|
8032
8686
|
* @remarks
|
|
8033
|
-
* Page size, valid range [1, 100], default is 10 if not
|
|
8687
|
+
* Page size, valid range [1, 100], default is 10 if not specified.
|
|
8034
8688
|
*
|
|
8035
8689
|
* @example
|
|
8036
8690
|
* 10
|
|
8037
8691
|
*/
|
|
8038
8692
|
pageSize?: number;
|
|
8693
|
+
/**
|
|
8694
|
+
* @remarks
|
|
8695
|
+
* Resource group ID.
|
|
8696
|
+
*
|
|
8697
|
+
* @example
|
|
8698
|
+
* rg-ahr5uil8raz0rq3b
|
|
8699
|
+
*/
|
|
8039
8700
|
resourceGroupId?: string;
|
|
8040
8701
|
/**
|
|
8041
8702
|
* @remarks
|
|
8042
|
-
* Type of HTTP API.
|
|
8703
|
+
* Type of HTTP API. Multiple types can be passed, separated by ",".
|
|
8043
8704
|
* - Http
|
|
8044
8705
|
* - Rest
|
|
8045
8706
|
* - WebSocket
|
|
@@ -8051,12 +8712,19 @@ export declare class ListHttpApisRequest extends $dara.Model {
|
|
|
8051
8712
|
types?: string;
|
|
8052
8713
|
/**
|
|
8053
8714
|
* @remarks
|
|
8054
|
-
* 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.
|
|
8055
8716
|
*
|
|
8056
8717
|
* @example
|
|
8057
8718
|
* env-xxx
|
|
8058
8719
|
*/
|
|
8059
8720
|
withAuthPolicyInEnvironmentId?: string;
|
|
8721
|
+
/**
|
|
8722
|
+
* @remarks
|
|
8723
|
+
* Whether the authentication policy is enabled.
|
|
8724
|
+
*
|
|
8725
|
+
* @example
|
|
8726
|
+
* true
|
|
8727
|
+
*/
|
|
8060
8728
|
withAuthPolicyList?: boolean;
|
|
8061
8729
|
/**
|
|
8062
8730
|
* @remarks
|
|
@@ -8066,9 +8734,37 @@ export declare class ListHttpApisRequest extends $dara.Model {
|
|
|
8066
8734
|
* cs-xxx
|
|
8067
8735
|
*/
|
|
8068
8736
|
withConsumerInfoById?: string;
|
|
8737
|
+
/**
|
|
8738
|
+
* @remarks
|
|
8739
|
+
* Environment information
|
|
8740
|
+
*
|
|
8741
|
+
* @example
|
|
8742
|
+
* true
|
|
8743
|
+
*/
|
|
8069
8744
|
withEnvironmentInfo?: boolean;
|
|
8745
|
+
/**
|
|
8746
|
+
* @remarks
|
|
8747
|
+
* Environment ID
|
|
8748
|
+
*
|
|
8749
|
+
* @example
|
|
8750
|
+
* env-ctovu5mm1hksb4q8ln40
|
|
8751
|
+
*/
|
|
8070
8752
|
withEnvironmentInfoById?: string;
|
|
8753
|
+
/**
|
|
8754
|
+
* @remarks
|
|
8755
|
+
* Ingress information
|
|
8756
|
+
*
|
|
8757
|
+
* @example
|
|
8758
|
+
* false
|
|
8759
|
+
*/
|
|
8071
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
|
+
*/
|
|
8072
8768
|
withPluginAttachmentByPluginId?: string;
|
|
8073
8769
|
static names(): {
|
|
8074
8770
|
[key: string]: string;
|
|
@@ -8141,26 +8837,52 @@ export declare class ListHttpApisResponse extends $dara.Model {
|
|
|
8141
8837
|
}
|
|
8142
8838
|
export declare class ListPolicyClassesRequest extends $dara.Model {
|
|
8143
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
|
+
*
|
|
8144
8851
|
* @example
|
|
8145
8852
|
* Operation
|
|
8146
8853
|
*/
|
|
8147
8854
|
attachResourceType?: string;
|
|
8148
8855
|
/**
|
|
8856
|
+
* @remarks
|
|
8857
|
+
* Direction of the policy.
|
|
8858
|
+
* - Outbound: OutBound.
|
|
8859
|
+
* - Inbound: InBound.
|
|
8860
|
+
* - Both directions: Both.
|
|
8861
|
+
*
|
|
8149
8862
|
* @example
|
|
8150
8863
|
* InBound
|
|
8151
8864
|
*/
|
|
8152
8865
|
direction?: string;
|
|
8153
8866
|
/**
|
|
8867
|
+
* @remarks
|
|
8868
|
+
* Page number, default is 1.
|
|
8869
|
+
*
|
|
8154
8870
|
* @example
|
|
8155
8871
|
* 1
|
|
8156
8872
|
*/
|
|
8157
8873
|
pageNumber?: number;
|
|
8158
8874
|
/**
|
|
8875
|
+
* @remarks
|
|
8876
|
+
* Page size
|
|
8877
|
+
*
|
|
8159
8878
|
* @example
|
|
8160
8879
|
* 10
|
|
8161
8880
|
*/
|
|
8162
8881
|
pageSize?: number;
|
|
8163
8882
|
/**
|
|
8883
|
+
* @remarks
|
|
8884
|
+
* Type of the policy template.
|
|
8885
|
+
*
|
|
8164
8886
|
* @example
|
|
8165
8887
|
* FlowControl
|
|
8166
8888
|
*/
|
|
@@ -8178,17 +8900,30 @@ export declare class ListPolicyClassesRequest extends $dara.Model {
|
|
|
8178
8900
|
}
|
|
8179
8901
|
export declare class ListPolicyClassesResponseBody extends $dara.Model {
|
|
8180
8902
|
/**
|
|
8903
|
+
* @remarks
|
|
8904
|
+
* Response code.
|
|
8905
|
+
*
|
|
8181
8906
|
* @example
|
|
8182
8907
|
* Ok
|
|
8183
8908
|
*/
|
|
8184
8909
|
code?: string;
|
|
8910
|
+
/**
|
|
8911
|
+
* @remarks
|
|
8912
|
+
* Policy template information.
|
|
8913
|
+
*/
|
|
8185
8914
|
data?: ListPolicyClassesResponseBodyData;
|
|
8186
8915
|
/**
|
|
8916
|
+
* @remarks
|
|
8917
|
+
* ResponseMessage
|
|
8918
|
+
*
|
|
8187
8919
|
* @example
|
|
8188
8920
|
* success
|
|
8189
8921
|
*/
|
|
8190
8922
|
message?: string;
|
|
8191
8923
|
/**
|
|
8924
|
+
* @remarks
|
|
8925
|
+
* Request ID.
|
|
8926
|
+
*
|
|
8192
8927
|
* @example
|
|
8193
8928
|
* 23B45FA9-7208-5E55-B5CE-B6B2567DD822
|
|
8194
8929
|
*/
|
|
@@ -8223,27 +8958,54 @@ export declare class ListPolicyClassesResponse extends $dara.Model {
|
|
|
8223
8958
|
}
|
|
8224
8959
|
export declare class ListServicesRequest extends $dara.Model {
|
|
8225
8960
|
/**
|
|
8961
|
+
* @remarks
|
|
8962
|
+
* Cloud-native API Gateway ID.
|
|
8963
|
+
*
|
|
8226
8964
|
* @example
|
|
8227
8965
|
* gw-cpv4sqdl*****
|
|
8228
8966
|
*/
|
|
8229
8967
|
gatewayId?: string;
|
|
8230
8968
|
/**
|
|
8969
|
+
* @remarks
|
|
8970
|
+
* Exact query by service name.
|
|
8971
|
+
*
|
|
8231
8972
|
* @example
|
|
8232
8973
|
* user-service
|
|
8233
8974
|
*/
|
|
8234
8975
|
name?: string;
|
|
8235
8976
|
/**
|
|
8977
|
+
* @remarks
|
|
8978
|
+
* Page number, starting from 1. Default is 1 if not specified.
|
|
8979
|
+
*
|
|
8236
8980
|
* @example
|
|
8237
8981
|
* 1
|
|
8238
8982
|
*/
|
|
8239
8983
|
pageNumber?: number;
|
|
8240
8984
|
/**
|
|
8985
|
+
* @remarks
|
|
8986
|
+
* Page size, valid range [1, 100]. Default is 10 if not specified.
|
|
8987
|
+
*
|
|
8241
8988
|
* @example
|
|
8242
8989
|
* 10
|
|
8243
8990
|
*/
|
|
8244
8991
|
pageSize?: number;
|
|
8992
|
+
/**
|
|
8993
|
+
* @remarks
|
|
8994
|
+
* Resource group ID.
|
|
8995
|
+
*
|
|
8996
|
+
* @example
|
|
8997
|
+
* rg-acfmxxe5rc6cvla
|
|
8998
|
+
*/
|
|
8245
8999
|
resourceGroupId?: string;
|
|
8246
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
|
+
*
|
|
8247
9009
|
* @example
|
|
8248
9010
|
* MSE_NACOS
|
|
8249
9011
|
*/
|
|
@@ -8261,17 +9023,30 @@ export declare class ListServicesRequest extends $dara.Model {
|
|
|
8261
9023
|
}
|
|
8262
9024
|
export declare class ListServicesResponseBody extends $dara.Model {
|
|
8263
9025
|
/**
|
|
9026
|
+
* @remarks
|
|
9027
|
+
* Response status code.
|
|
9028
|
+
*
|
|
8264
9029
|
* @example
|
|
8265
9030
|
* Ok
|
|
8266
9031
|
*/
|
|
8267
9032
|
code?: string;
|
|
9033
|
+
/**
|
|
9034
|
+
* @remarks
|
|
9035
|
+
* Response data.
|
|
9036
|
+
*/
|
|
8268
9037
|
data?: ListServicesResponseBodyData;
|
|
8269
9038
|
/**
|
|
9039
|
+
* @remarks
|
|
9040
|
+
* Response message.
|
|
9041
|
+
*
|
|
8270
9042
|
* @example
|
|
8271
9043
|
* success
|
|
8272
9044
|
*/
|
|
8273
9045
|
message?: string;
|
|
8274
9046
|
/**
|
|
9047
|
+
* @remarks
|
|
9048
|
+
* Request ID.
|
|
9049
|
+
*
|
|
8275
9050
|
* @example
|
|
8276
9051
|
* 585657D2-1C20-5B8A-AF17-D727C6490BE4
|
|
8277
9052
|
*/
|
|
@@ -8306,21 +9081,33 @@ export declare class ListServicesResponse extends $dara.Model {
|
|
|
8306
9081
|
}
|
|
8307
9082
|
export declare class ListSslCertsRequest extends $dara.Model {
|
|
8308
9083
|
/**
|
|
9084
|
+
* @remarks
|
|
9085
|
+
* Name matching keyword.
|
|
9086
|
+
*
|
|
8309
9087
|
* @example
|
|
8310
9088
|
* ali
|
|
8311
9089
|
*/
|
|
8312
9090
|
certNameLike?: string;
|
|
8313
9091
|
/**
|
|
9092
|
+
* @remarks
|
|
9093
|
+
* Domain name.
|
|
9094
|
+
*
|
|
8314
9095
|
* @example
|
|
8315
9096
|
* fun.iot.evideocloud.com.cn
|
|
8316
9097
|
*/
|
|
8317
9098
|
domainName?: string;
|
|
8318
9099
|
/**
|
|
9100
|
+
* @remarks
|
|
9101
|
+
* Page number, default is 1
|
|
9102
|
+
*
|
|
8319
9103
|
* @example
|
|
8320
9104
|
* 1
|
|
8321
9105
|
*/
|
|
8322
9106
|
pageNumber?: number;
|
|
8323
9107
|
/**
|
|
9108
|
+
* @remarks
|
|
9109
|
+
* Page size, default is 10
|
|
9110
|
+
*
|
|
8324
9111
|
* @example
|
|
8325
9112
|
* 10
|
|
8326
9113
|
*/
|
|
@@ -8338,17 +9125,30 @@ export declare class ListSslCertsRequest extends $dara.Model {
|
|
|
8338
9125
|
}
|
|
8339
9126
|
export declare class ListSslCertsResponseBody extends $dara.Model {
|
|
8340
9127
|
/**
|
|
9128
|
+
* @remarks
|
|
9129
|
+
* Response status code.
|
|
9130
|
+
*
|
|
8341
9131
|
* @example
|
|
8342
9132
|
* Ok
|
|
8343
9133
|
*/
|
|
8344
9134
|
code?: string;
|
|
9135
|
+
/**
|
|
9136
|
+
* @remarks
|
|
9137
|
+
* Returned data
|
|
9138
|
+
*/
|
|
8345
9139
|
data?: ListSslCertsResponseBodyData;
|
|
8346
9140
|
/**
|
|
9141
|
+
* @remarks
|
|
9142
|
+
* Response message.
|
|
9143
|
+
*
|
|
8347
9144
|
* @example
|
|
8348
9145
|
* success
|
|
8349
9146
|
*/
|
|
8350
9147
|
message?: string;
|
|
8351
9148
|
/**
|
|
9149
|
+
* @remarks
|
|
9150
|
+
* Request ID.
|
|
9151
|
+
*
|
|
8352
9152
|
* @example
|
|
8353
9153
|
* AADF7197-3384-52AF-A2DE-A66696734129
|
|
8354
9154
|
*/
|
|
@@ -8383,17 +9183,30 @@ export declare class ListSslCertsResponse extends $dara.Model {
|
|
|
8383
9183
|
}
|
|
8384
9184
|
export declare class ListZonesResponseBody extends $dara.Model {
|
|
8385
9185
|
/**
|
|
9186
|
+
* @remarks
|
|
9187
|
+
* Response status code.
|
|
9188
|
+
*
|
|
8386
9189
|
* @example
|
|
8387
9190
|
* Ok
|
|
8388
9191
|
*/
|
|
8389
9192
|
code?: string;
|
|
9193
|
+
/**
|
|
9194
|
+
* @remarks
|
|
9195
|
+
* Returned data.
|
|
9196
|
+
*/
|
|
8390
9197
|
data?: ListZonesResponseBodyData;
|
|
8391
9198
|
/**
|
|
9199
|
+
* @remarks
|
|
9200
|
+
* Response message.
|
|
9201
|
+
*
|
|
8392
9202
|
* @example
|
|
8393
9203
|
* success
|
|
8394
9204
|
*/
|
|
8395
9205
|
message?: string;
|
|
8396
9206
|
/**
|
|
9207
|
+
* @remarks
|
|
9208
|
+
* Request ID.
|
|
9209
|
+
*
|
|
8397
9210
|
* @example
|
|
8398
9211
|
* E8079207-B651-592A-A565-23E9EE5673B0
|
|
8399
9212
|
*/
|
|
@@ -8479,9 +9292,101 @@ export declare class RestartGatewayResponse extends $dara.Model {
|
|
|
8479
9292
|
[key: string]: any;
|
|
8480
9293
|
});
|
|
8481
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
|
+
}
|
|
8482
9361
|
export declare class UpdateDomainRequest extends $dara.Model {
|
|
9362
|
+
/**
|
|
9363
|
+
* @remarks
|
|
9364
|
+
* CA certificate identifier
|
|
9365
|
+
*
|
|
9366
|
+
* @example
|
|
9367
|
+
* 1ef1da5f-38ed-69b3-****-037781890265
|
|
9368
|
+
*/
|
|
8483
9369
|
caCertIdentifier?: string;
|
|
9370
|
+
/**
|
|
9371
|
+
* @remarks
|
|
9372
|
+
* Certificate identifier
|
|
9373
|
+
*
|
|
9374
|
+
* @example
|
|
9375
|
+
* 1ef1da5f-38ed-69b3-****-037781890265
|
|
9376
|
+
*/
|
|
8484
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;
|
|
8485
9390
|
/**
|
|
8486
9391
|
* @remarks
|
|
8487
9392
|
* Set the HTTPS protocol type, whether to enable forced HTTPS redirection.
|
|
@@ -8498,6 +9403,11 @@ export declare class UpdateDomainRequest extends $dara.Model {
|
|
|
8498
9403
|
* Open
|
|
8499
9404
|
*/
|
|
8500
9405
|
http2Option?: string;
|
|
9406
|
+
/**
|
|
9407
|
+
* @remarks
|
|
9408
|
+
* Whether to enable mTLS mutual authentication
|
|
9409
|
+
*/
|
|
9410
|
+
mTLSEnabled?: boolean;
|
|
8501
9411
|
/**
|
|
8502
9412
|
* @remarks
|
|
8503
9413
|
* The protocol type supported by the domain.
|
|
@@ -8833,13 +9743,17 @@ export declare class UpdateGatewayNameResponse extends $dara.Model {
|
|
|
8833
9743
|
export declare class UpdateHttpApiRequest extends $dara.Model {
|
|
8834
9744
|
/**
|
|
8835
9745
|
* @remarks
|
|
8836
|
-
*
|
|
9746
|
+
* The AI protocols.
|
|
8837
9747
|
*/
|
|
8838
9748
|
aiProtocols?: string[];
|
|
9749
|
+
/**
|
|
9750
|
+
* @remarks
|
|
9751
|
+
* The authentication configuration.
|
|
9752
|
+
*/
|
|
8839
9753
|
authConfig?: AuthConfig;
|
|
8840
9754
|
/**
|
|
8841
9755
|
* @remarks
|
|
8842
|
-
*
|
|
9756
|
+
* The API base path, which must start with a forward slash (/).
|
|
8843
9757
|
*
|
|
8844
9758
|
* This parameter is required.
|
|
8845
9759
|
*
|
|
@@ -8849,31 +9763,35 @@ export declare class UpdateHttpApiRequest extends $dara.Model {
|
|
|
8849
9763
|
basePath?: string;
|
|
8850
9764
|
/**
|
|
8851
9765
|
* @remarks
|
|
8852
|
-
*
|
|
9766
|
+
* The deployment configurations.
|
|
8853
9767
|
*/
|
|
8854
9768
|
deployConfigs?: HttpApiDeployConfig[];
|
|
8855
9769
|
/**
|
|
8856
9770
|
* @remarks
|
|
8857
|
-
* API description.
|
|
9771
|
+
* The API description.
|
|
8858
9772
|
*
|
|
8859
9773
|
* @example
|
|
8860
|
-
*
|
|
9774
|
+
* API for testing
|
|
8861
9775
|
*/
|
|
8862
9776
|
description?: string;
|
|
9777
|
+
/**
|
|
9778
|
+
* @remarks
|
|
9779
|
+
* Specifies whether to enable authentication.
|
|
9780
|
+
*/
|
|
8863
9781
|
enableAuth?: boolean;
|
|
8864
9782
|
/**
|
|
8865
9783
|
* @remarks
|
|
8866
|
-
*
|
|
9784
|
+
* The HTTP Ingress API configurations.
|
|
8867
9785
|
*/
|
|
8868
9786
|
ingressConfig?: UpdateHttpApiRequestIngressConfig;
|
|
8869
9787
|
/**
|
|
8870
9788
|
* @remarks
|
|
8871
|
-
*
|
|
9789
|
+
* The protocols that are used to access the API.
|
|
8872
9790
|
*/
|
|
8873
9791
|
protocols?: string[];
|
|
8874
9792
|
/**
|
|
8875
9793
|
* @remarks
|
|
8876
|
-
*
|
|
9794
|
+
* The versioning configurations.
|
|
8877
9795
|
*/
|
|
8878
9796
|
versionConfig?: HttpApiVersionConfig;
|
|
8879
9797
|
static names(): {
|
|
@@ -8890,7 +9808,7 @@ export declare class UpdateHttpApiRequest extends $dara.Model {
|
|
|
8890
9808
|
export declare class UpdateHttpApiResponseBody extends $dara.Model {
|
|
8891
9809
|
/**
|
|
8892
9810
|
* @remarks
|
|
8893
|
-
*
|
|
9811
|
+
* The status code.
|
|
8894
9812
|
*
|
|
8895
9813
|
* @example
|
|
8896
9814
|
* Ok
|
|
@@ -8898,7 +9816,7 @@ export declare class UpdateHttpApiResponseBody extends $dara.Model {
|
|
|
8898
9816
|
code?: string;
|
|
8899
9817
|
/**
|
|
8900
9818
|
* @remarks
|
|
8901
|
-
*
|
|
9819
|
+
* The returned message.
|
|
8902
9820
|
*
|
|
8903
9821
|
* @example
|
|
8904
9822
|
* success
|
|
@@ -8906,7 +9824,7 @@ export declare class UpdateHttpApiResponseBody extends $dara.Model {
|
|
|
8906
9824
|
message?: string;
|
|
8907
9825
|
/**
|
|
8908
9826
|
* @remarks
|
|
8909
|
-
*
|
|
9827
|
+
* The request ID.
|
|
8910
9828
|
*
|
|
8911
9829
|
* @example
|
|
8912
9830
|
* 393E2630-DBE7-5221-AB35-9E740675491A
|
|
@@ -9109,15 +10027,26 @@ export declare class UpdateHttpApiRouteResponse extends $dara.Model {
|
|
|
9109
10027
|
export declare class UpdatePolicyRequest extends $dara.Model {
|
|
9110
10028
|
/**
|
|
9111
10029
|
* @remarks
|
|
10030
|
+
* Policy configuration
|
|
10031
|
+
*
|
|
9112
10032
|
* This parameter is required.
|
|
9113
10033
|
*
|
|
9114
10034
|
* @example
|
|
9115
10035
|
* {"unitNum":1,"timeUnit":"s","enable":true}
|
|
9116
10036
|
*/
|
|
9117
10037
|
config?: string;
|
|
10038
|
+
/**
|
|
10039
|
+
* @remarks
|
|
10040
|
+
* Description
|
|
10041
|
+
*
|
|
10042
|
+
* @example
|
|
10043
|
+
* this is a timeout policy description
|
|
10044
|
+
*/
|
|
9118
10045
|
description?: string;
|
|
9119
10046
|
/**
|
|
9120
10047
|
* @remarks
|
|
10048
|
+
* Policy name
|
|
10049
|
+
*
|
|
9121
10050
|
* This parameter is required.
|
|
9122
10051
|
*
|
|
9123
10052
|
* @example
|
|
@@ -9137,16 +10066,25 @@ export declare class UpdatePolicyRequest extends $dara.Model {
|
|
|
9137
10066
|
}
|
|
9138
10067
|
export declare class UpdatePolicyResponseBody extends $dara.Model {
|
|
9139
10068
|
/**
|
|
10069
|
+
* @remarks
|
|
10070
|
+
* Response status code.
|
|
10071
|
+
*
|
|
9140
10072
|
* @example
|
|
9141
10073
|
* Ok
|
|
9142
10074
|
*/
|
|
9143
10075
|
code?: string;
|
|
9144
10076
|
/**
|
|
10077
|
+
* @remarks
|
|
10078
|
+
* Response message.
|
|
10079
|
+
*
|
|
9145
10080
|
* @example
|
|
9146
10081
|
* success
|
|
9147
10082
|
*/
|
|
9148
10083
|
message?: string;
|
|
9149
10084
|
/**
|
|
10085
|
+
* @remarks
|
|
10086
|
+
* Request ID.
|
|
10087
|
+
*
|
|
9150
10088
|
* @example
|
|
9151
10089
|
* C67DED2B-F19B-5BEC-88C1-D6EB854C***
|
|
9152
10090
|
*/
|
|
@@ -9276,7 +10214,7 @@ export default class Client extends OpenApi {
|
|
|
9276
10214
|
*/
|
|
9277
10215
|
addGatewaySecurityGroupRule(gatewayId: string, request: AddGatewaySecurityGroupRuleRequest): Promise<AddGatewaySecurityGroupRuleResponse>;
|
|
9278
10216
|
/**
|
|
9279
|
-
*
|
|
10217
|
+
* Resource Group Transfer
|
|
9280
10218
|
*
|
|
9281
10219
|
* @param request - ChangeResourceGroupRequest
|
|
9282
10220
|
* @param headers - map
|
|
@@ -9287,7 +10225,7 @@ export default class Client extends OpenApi {
|
|
|
9287
10225
|
[key: string]: string;
|
|
9288
10226
|
}, runtime: $dara.RuntimeOptions): Promise<ChangeResourceGroupResponse>;
|
|
9289
10227
|
/**
|
|
9290
|
-
*
|
|
10228
|
+
* Resource Group Transfer
|
|
9291
10229
|
*
|
|
9292
10230
|
* @param request - ChangeResourceGroupRequest
|
|
9293
10231
|
* @returns ChangeResourceGroupResponse
|
|
@@ -9382,7 +10320,7 @@ export default class Client extends OpenApi {
|
|
|
9382
10320
|
*/
|
|
9383
10321
|
createHttpApiOperation(httpApiId: string, request: CreateHttpApiOperationRequest): Promise<CreateHttpApiOperationResponse>;
|
|
9384
10322
|
/**
|
|
9385
|
-
*
|
|
10323
|
+
* Creates a route for an HTTP API.
|
|
9386
10324
|
*
|
|
9387
10325
|
* @param request - CreateHttpApiRouteRequest
|
|
9388
10326
|
* @param headers - map
|
|
@@ -9393,14 +10331,14 @@ export default class Client extends OpenApi {
|
|
|
9393
10331
|
[key: string]: string;
|
|
9394
10332
|
}, runtime: $dara.RuntimeOptions): Promise<CreateHttpApiRouteResponse>;
|
|
9395
10333
|
/**
|
|
9396
|
-
*
|
|
10334
|
+
* Creates a route for an HTTP API.
|
|
9397
10335
|
*
|
|
9398
10336
|
* @param request - CreateHttpApiRouteRequest
|
|
9399
10337
|
* @returns CreateHttpApiRouteResponse
|
|
9400
10338
|
*/
|
|
9401
10339
|
createHttpApiRoute(httpApiId: string, request: CreateHttpApiRouteRequest): Promise<CreateHttpApiRouteResponse>;
|
|
9402
10340
|
/**
|
|
9403
|
-
*
|
|
10341
|
+
* Create Policy
|
|
9404
10342
|
*
|
|
9405
10343
|
* @param request - CreatePolicyRequest
|
|
9406
10344
|
* @param headers - map
|
|
@@ -9411,14 +10349,14 @@ export default class Client extends OpenApi {
|
|
|
9411
10349
|
[key: string]: string;
|
|
9412
10350
|
}, runtime: $dara.RuntimeOptions): Promise<CreatePolicyResponse>;
|
|
9413
10351
|
/**
|
|
9414
|
-
*
|
|
10352
|
+
* Create Policy
|
|
9415
10353
|
*
|
|
9416
10354
|
* @param request - CreatePolicyRequest
|
|
9417
10355
|
* @returns CreatePolicyResponse
|
|
9418
10356
|
*/
|
|
9419
10357
|
createPolicy(request: CreatePolicyRequest): Promise<CreatePolicyResponse>;
|
|
9420
10358
|
/**
|
|
9421
|
-
*
|
|
10359
|
+
* Create policy resource mount
|
|
9422
10360
|
*
|
|
9423
10361
|
* @param request - CreatePolicyAttachmentRequest
|
|
9424
10362
|
* @param headers - map
|
|
@@ -9429,14 +10367,17 @@ export default class Client extends OpenApi {
|
|
|
9429
10367
|
[key: string]: string;
|
|
9430
10368
|
}, runtime: $dara.RuntimeOptions): Promise<CreatePolicyAttachmentResponse>;
|
|
9431
10369
|
/**
|
|
9432
|
-
*
|
|
10370
|
+
* Create policy resource mount
|
|
9433
10371
|
*
|
|
9434
10372
|
* @param request - CreatePolicyAttachmentRequest
|
|
9435
10373
|
* @returns CreatePolicyAttachmentResponse
|
|
9436
10374
|
*/
|
|
9437
10375
|
createPolicyAttachment(request: CreatePolicyAttachmentRequest): Promise<CreatePolicyAttachmentResponse>;
|
|
9438
10376
|
/**
|
|
9439
|
-
*
|
|
10377
|
+
* Create Service
|
|
10378
|
+
*
|
|
10379
|
+
* @remarks
|
|
10380
|
+
* The interface supports creating multiple services.
|
|
9440
10381
|
*
|
|
9441
10382
|
* @param request - CreateServiceRequest
|
|
9442
10383
|
* @param headers - map
|
|
@@ -9447,7 +10388,10 @@ export default class Client extends OpenApi {
|
|
|
9447
10388
|
[key: string]: string;
|
|
9448
10389
|
}, runtime: $dara.RuntimeOptions): Promise<CreateServiceResponse>;
|
|
9449
10390
|
/**
|
|
9450
|
-
*
|
|
10391
|
+
* Create Service
|
|
10392
|
+
*
|
|
10393
|
+
* @remarks
|
|
10394
|
+
* The interface supports creating multiple services.
|
|
9451
10395
|
*
|
|
9452
10396
|
* @param request - CreateServiceRequest
|
|
9453
10397
|
* @returns CreateServiceResponse
|
|
@@ -9521,7 +10465,7 @@ export default class Client extends OpenApi {
|
|
|
9521
10465
|
*/
|
|
9522
10466
|
deleteGatewaySecurityGroupRule(gatewayId: string, securityGroupRuleId: string, request: DeleteGatewaySecurityGroupRuleRequest): Promise<DeleteGatewaySecurityGroupRuleResponse>;
|
|
9523
10467
|
/**
|
|
9524
|
-
*
|
|
10468
|
+
* Deletes an HTTP API.
|
|
9525
10469
|
*
|
|
9526
10470
|
* @param headers - map
|
|
9527
10471
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9531,7 +10475,7 @@ export default class Client extends OpenApi {
|
|
|
9531
10475
|
[key: string]: string;
|
|
9532
10476
|
}, runtime: $dara.RuntimeOptions): Promise<DeleteHttpApiResponse>;
|
|
9533
10477
|
/**
|
|
9534
|
-
*
|
|
10478
|
+
* Deletes an HTTP API.
|
|
9535
10479
|
* @returns DeleteHttpApiResponse
|
|
9536
10480
|
*/
|
|
9537
10481
|
deleteHttpApi(httpApiId: string): Promise<DeleteHttpApiResponse>;
|
|
@@ -9566,7 +10510,7 @@ export default class Client extends OpenApi {
|
|
|
9566
10510
|
*/
|
|
9567
10511
|
deleteHttpApiRoute(httpApiId: string, routeId: string): Promise<DeleteHttpApiRouteResponse>;
|
|
9568
10512
|
/**
|
|
9569
|
-
*
|
|
10513
|
+
* Delete Policy
|
|
9570
10514
|
*
|
|
9571
10515
|
* @param headers - map
|
|
9572
10516
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9576,12 +10520,12 @@ export default class Client extends OpenApi {
|
|
|
9576
10520
|
[key: string]: string;
|
|
9577
10521
|
}, runtime: $dara.RuntimeOptions): Promise<DeletePolicyResponse>;
|
|
9578
10522
|
/**
|
|
9579
|
-
*
|
|
10523
|
+
* Delete Policy
|
|
9580
10524
|
* @returns DeletePolicyResponse
|
|
9581
10525
|
*/
|
|
9582
10526
|
deletePolicy(policyId: string): Promise<DeletePolicyResponse>;
|
|
9583
10527
|
/**
|
|
9584
|
-
*
|
|
10528
|
+
* Delete policy resource attachment
|
|
9585
10529
|
*
|
|
9586
10530
|
* @param headers - map
|
|
9587
10531
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9591,12 +10535,12 @@ export default class Client extends OpenApi {
|
|
|
9591
10535
|
[key: string]: string;
|
|
9592
10536
|
}, runtime: $dara.RuntimeOptions): Promise<DeletePolicyAttachmentResponse>;
|
|
9593
10537
|
/**
|
|
9594
|
-
*
|
|
10538
|
+
* Delete policy resource attachment
|
|
9595
10539
|
* @returns DeletePolicyAttachmentResponse
|
|
9596
10540
|
*/
|
|
9597
10541
|
deletePolicyAttachment(policyAttachmentId: string): Promise<DeletePolicyAttachmentResponse>;
|
|
9598
10542
|
/**
|
|
9599
|
-
*
|
|
10543
|
+
* Deploy HttpApi
|
|
9600
10544
|
*
|
|
9601
10545
|
* @param request - DeployHttpApiRequest
|
|
9602
10546
|
* @param headers - map
|
|
@@ -9607,7 +10551,7 @@ export default class Client extends OpenApi {
|
|
|
9607
10551
|
[key: string]: string;
|
|
9608
10552
|
}, runtime: $dara.RuntimeOptions): Promise<DeployHttpApiResponse>;
|
|
9609
10553
|
/**
|
|
9610
|
-
*
|
|
10554
|
+
* Deploy HttpApi
|
|
9611
10555
|
*
|
|
9612
10556
|
* @param request - DeployHttpApiRequest
|
|
9613
10557
|
* @returns DeployHttpApiResponse
|
|
@@ -9629,7 +10573,7 @@ export default class Client extends OpenApi {
|
|
|
9629
10573
|
*/
|
|
9630
10574
|
exportHttpApi(httpApiId: string): Promise<ExportHttpApiResponse>;
|
|
9631
10575
|
/**
|
|
9632
|
-
*
|
|
10576
|
+
* Get Monitoring/Logging Dashboard Interface
|
|
9633
10577
|
*
|
|
9634
10578
|
* @param tmpReq - GetDashboardRequest
|
|
9635
10579
|
* @param headers - map
|
|
@@ -9640,7 +10584,7 @@ export default class Client extends OpenApi {
|
|
|
9640
10584
|
[key: string]: string;
|
|
9641
10585
|
}, runtime: $dara.RuntimeOptions): Promise<GetDashboardResponse>;
|
|
9642
10586
|
/**
|
|
9643
|
-
*
|
|
10587
|
+
* Get Monitoring/Logging Dashboard Interface
|
|
9644
10588
|
*
|
|
9645
10589
|
* @param request - GetDashboardRequest
|
|
9646
10590
|
* @returns GetDashboardResponse
|
|
@@ -9762,7 +10706,7 @@ export default class Client extends OpenApi {
|
|
|
9762
10706
|
*/
|
|
9763
10707
|
getPolicy(policyId: string): Promise<GetPolicyResponse>;
|
|
9764
10708
|
/**
|
|
9765
|
-
*
|
|
10709
|
+
* Query Policy Resource Attachment
|
|
9766
10710
|
*
|
|
9767
10711
|
* @param headers - map
|
|
9768
10712
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9772,12 +10716,12 @@ export default class Client extends OpenApi {
|
|
|
9772
10716
|
[key: string]: string;
|
|
9773
10717
|
}, runtime: $dara.RuntimeOptions): Promise<GetPolicyAttachmentResponse>;
|
|
9774
10718
|
/**
|
|
9775
|
-
*
|
|
10719
|
+
* Query Policy Resource Attachment
|
|
9776
10720
|
* @returns GetPolicyAttachmentResponse
|
|
9777
10721
|
*/
|
|
9778
10722
|
getPolicyAttachment(policyAttachmentId: string): Promise<GetPolicyAttachmentResponse>;
|
|
9779
10723
|
/**
|
|
9780
|
-
*
|
|
10724
|
+
* Get resource overview information
|
|
9781
10725
|
*
|
|
9782
10726
|
* @param headers - map
|
|
9783
10727
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9787,12 +10731,12 @@ export default class Client extends OpenApi {
|
|
|
9787
10731
|
[key: string]: string;
|
|
9788
10732
|
}, runtime: $dara.RuntimeOptions): Promise<GetResourceOverviewResponse>;
|
|
9789
10733
|
/**
|
|
9790
|
-
*
|
|
10734
|
+
* Get resource overview information
|
|
9791
10735
|
* @returns GetResourceOverviewResponse
|
|
9792
10736
|
*/
|
|
9793
10737
|
getResourceOverview(): Promise<GetResourceOverviewResponse>;
|
|
9794
10738
|
/**
|
|
9795
|
-
*
|
|
10739
|
+
* Get Service Details
|
|
9796
10740
|
*
|
|
9797
10741
|
* @param headers - map
|
|
9798
10742
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -9802,12 +10746,12 @@ export default class Client extends OpenApi {
|
|
|
9802
10746
|
[key: string]: string;
|
|
9803
10747
|
}, runtime: $dara.RuntimeOptions): Promise<GetServiceResponse>;
|
|
9804
10748
|
/**
|
|
9805
|
-
*
|
|
10749
|
+
* Get Service Details
|
|
9806
10750
|
* @returns GetServiceResponse
|
|
9807
10751
|
*/
|
|
9808
10752
|
getService(serviceId: string): Promise<GetServiceResponse>;
|
|
9809
10753
|
/**
|
|
9810
|
-
*
|
|
10754
|
+
* Retrieve Tracing Configuration
|
|
9811
10755
|
*
|
|
9812
10756
|
* @param request - GetTraceConfigRequest
|
|
9813
10757
|
* @param headers - map
|
|
@@ -9818,7 +10762,7 @@ export default class Client extends OpenApi {
|
|
|
9818
10762
|
[key: string]: string;
|
|
9819
10763
|
}, runtime: $dara.RuntimeOptions): Promise<GetTraceConfigResponse>;
|
|
9820
10764
|
/**
|
|
9821
|
-
*
|
|
10765
|
+
* Retrieve Tracing Configuration
|
|
9822
10766
|
*
|
|
9823
10767
|
* @param request - GetTraceConfigRequest
|
|
9824
10768
|
* @returns GetTraceConfigResponse
|
|
@@ -9919,7 +10863,7 @@ export default class Client extends OpenApi {
|
|
|
9919
10863
|
*/
|
|
9920
10864
|
listHttpApiOperations(httpApiId: string, request: ListHttpApiOperationsRequest): Promise<ListHttpApiOperationsResponse>;
|
|
9921
10865
|
/**
|
|
9922
|
-
*
|
|
10866
|
+
* Create a route for HttpApi
|
|
9923
10867
|
*
|
|
9924
10868
|
* @param request - ListHttpApiRoutesRequest
|
|
9925
10869
|
* @param headers - map
|
|
@@ -9930,7 +10874,7 @@ export default class Client extends OpenApi {
|
|
|
9930
10874
|
[key: string]: string;
|
|
9931
10875
|
}, runtime: $dara.RuntimeOptions): Promise<ListHttpApiRoutesResponse>;
|
|
9932
10876
|
/**
|
|
9933
|
-
*
|
|
10877
|
+
* Create a route for HttpApi
|
|
9934
10878
|
*
|
|
9935
10879
|
* @param request - ListHttpApiRoutesRequest
|
|
9936
10880
|
* @returns ListHttpApiRoutesResponse
|
|
@@ -9955,7 +10899,7 @@ export default class Client extends OpenApi {
|
|
|
9955
10899
|
*/
|
|
9956
10900
|
listHttpApis(request: ListHttpApisRequest): Promise<ListHttpApisResponse>;
|
|
9957
10901
|
/**
|
|
9958
|
-
* ListPolicyClasses
|
|
10902
|
+
* ListPolicyClasses
|
|
9959
10903
|
*
|
|
9960
10904
|
* @param request - ListPolicyClassesRequest
|
|
9961
10905
|
* @param headers - map
|
|
@@ -9966,14 +10910,14 @@ export default class Client extends OpenApi {
|
|
|
9966
10910
|
[key: string]: string;
|
|
9967
10911
|
}, runtime: $dara.RuntimeOptions): Promise<ListPolicyClassesResponse>;
|
|
9968
10912
|
/**
|
|
9969
|
-
* ListPolicyClasses
|
|
10913
|
+
* ListPolicyClasses
|
|
9970
10914
|
*
|
|
9971
10915
|
* @param request - ListPolicyClassesRequest
|
|
9972
10916
|
* @returns ListPolicyClassesResponse
|
|
9973
10917
|
*/
|
|
9974
10918
|
listPolicyClasses(request: ListPolicyClassesRequest): Promise<ListPolicyClassesResponse>;
|
|
9975
10919
|
/**
|
|
9976
|
-
*
|
|
10920
|
+
* Get Service List
|
|
9977
10921
|
*
|
|
9978
10922
|
* @param request - ListServicesRequest
|
|
9979
10923
|
* @param headers - map
|
|
@@ -9984,14 +10928,14 @@ export default class Client extends OpenApi {
|
|
|
9984
10928
|
[key: string]: string;
|
|
9985
10929
|
}, runtime: $dara.RuntimeOptions): Promise<ListServicesResponse>;
|
|
9986
10930
|
/**
|
|
9987
|
-
*
|
|
10931
|
+
* Get Service List
|
|
9988
10932
|
*
|
|
9989
10933
|
* @param request - ListServicesRequest
|
|
9990
10934
|
* @returns ListServicesResponse
|
|
9991
10935
|
*/
|
|
9992
10936
|
listServices(request: ListServicesRequest): Promise<ListServicesResponse>;
|
|
9993
10937
|
/**
|
|
9994
|
-
* ListSslCerts
|
|
10938
|
+
* ListSslCerts
|
|
9995
10939
|
*
|
|
9996
10940
|
* @param request - ListSslCertsRequest
|
|
9997
10941
|
* @param headers - map
|
|
@@ -10002,14 +10946,14 @@ export default class Client extends OpenApi {
|
|
|
10002
10946
|
[key: string]: string;
|
|
10003
10947
|
}, runtime: $dara.RuntimeOptions): Promise<ListSslCertsResponse>;
|
|
10004
10948
|
/**
|
|
10005
|
-
* ListSslCerts
|
|
10949
|
+
* ListSslCerts
|
|
10006
10950
|
*
|
|
10007
10951
|
* @param request - ListSslCertsRequest
|
|
10008
10952
|
* @returns ListSslCertsResponse
|
|
10009
10953
|
*/
|
|
10010
10954
|
listSslCerts(request: ListSslCertsRequest): Promise<ListSslCertsResponse>;
|
|
10011
10955
|
/**
|
|
10012
|
-
*
|
|
10956
|
+
* Retrieve the availability zones under a cloud-native API gateway region
|
|
10013
10957
|
*
|
|
10014
10958
|
* @param headers - map
|
|
10015
10959
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -10019,7 +10963,7 @@ export default class Client extends OpenApi {
|
|
|
10019
10963
|
[key: string]: string;
|
|
10020
10964
|
}, runtime: $dara.RuntimeOptions): Promise<ListZonesResponse>;
|
|
10021
10965
|
/**
|
|
10022
|
-
*
|
|
10966
|
+
* Retrieve the availability zones under a cloud-native API gateway region
|
|
10023
10967
|
* @returns ListZonesResponse
|
|
10024
10968
|
*/
|
|
10025
10969
|
listZones(): Promise<ListZonesResponse>;
|
|
@@ -10038,9 +10982,30 @@ export default class Client extends OpenApi {
|
|
|
10038
10982
|
* @returns RestartGatewayResponse
|
|
10039
10983
|
*/
|
|
10040
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>;
|
|
10041
11003
|
/**
|
|
10042
11004
|
* UpdateDomain
|
|
10043
11005
|
*
|
|
11006
|
+
* @remarks
|
|
11007
|
+
* 只有类型为**容器服务**的来源允许更新监听Ingress的配置。
|
|
11008
|
+
*
|
|
10044
11009
|
* @param request - UpdateDomainRequest
|
|
10045
11010
|
* @param headers - map
|
|
10046
11011
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -10052,6 +11017,9 @@ export default class Client extends OpenApi {
|
|
|
10052
11017
|
/**
|
|
10053
11018
|
* UpdateDomain
|
|
10054
11019
|
*
|
|
11020
|
+
* @remarks
|
|
11021
|
+
* 只有类型为**容器服务**的来源允许更新监听Ingress的配置。
|
|
11022
|
+
*
|
|
10055
11023
|
* @param request - UpdateDomainRequest
|
|
10056
11024
|
* @returns UpdateDomainResponse
|
|
10057
11025
|
*/
|
|
@@ -10115,7 +11083,7 @@ export default class Client extends OpenApi {
|
|
|
10115
11083
|
*/
|
|
10116
11084
|
updateGatewayName(gatewayId: string, request: UpdateGatewayNameRequest): Promise<UpdateGatewayNameResponse>;
|
|
10117
11085
|
/**
|
|
10118
|
-
*
|
|
11086
|
+
* Updates an HTTP API.
|
|
10119
11087
|
*
|
|
10120
11088
|
* @param request - UpdateHttpApiRequest
|
|
10121
11089
|
* @param headers - map
|
|
@@ -10126,7 +11094,7 @@ export default class Client extends OpenApi {
|
|
|
10126
11094
|
[key: string]: string;
|
|
10127
11095
|
}, runtime: $dara.RuntimeOptions): Promise<UpdateHttpApiResponse>;
|
|
10128
11096
|
/**
|
|
10129
|
-
*
|
|
11097
|
+
* Updates an HTTP API.
|
|
10130
11098
|
*
|
|
10131
11099
|
* @param request - UpdateHttpApiRequest
|
|
10132
11100
|
* @returns UpdateHttpApiResponse
|
|
@@ -10169,7 +11137,7 @@ export default class Client extends OpenApi {
|
|
|
10169
11137
|
*/
|
|
10170
11138
|
updateHttpApiRoute(httpApiId: string, routeId: string, request: UpdateHttpApiRouteRequest): Promise<UpdateHttpApiRouteResponse>;
|
|
10171
11139
|
/**
|
|
10172
|
-
*
|
|
11140
|
+
* Update Policy
|
|
10173
11141
|
*
|
|
10174
11142
|
* @param request - UpdatePolicyRequest
|
|
10175
11143
|
* @param headers - map
|
|
@@ -10180,7 +11148,7 @@ export default class Client extends OpenApi {
|
|
|
10180
11148
|
[key: string]: string;
|
|
10181
11149
|
}, runtime: $dara.RuntimeOptions): Promise<UpdatePolicyResponse>;
|
|
10182
11150
|
/**
|
|
10183
|
-
*
|
|
11151
|
+
* Update Policy
|
|
10184
11152
|
*
|
|
10185
11153
|
* @param request - UpdatePolicyRequest
|
|
10186
11154
|
* @returns UpdatePolicyResponse
|