@alicloud/cloudapi20160714 2.0.3 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +767 -7
- package/dist/client.js +1595 -125
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1918 -99
package/dist/client.js
CHANGED
|
@@ -373,6 +373,8 @@ class CreateApiRequest extends $tea.Model {
|
|
|
373
373
|
apiName: 'ApiName',
|
|
374
374
|
appCodeAuthType: 'AppCodeAuthType',
|
|
375
375
|
authType: 'AuthType',
|
|
376
|
+
backendEnable: 'BackendEnable',
|
|
377
|
+
backendId: 'BackendId',
|
|
376
378
|
constantParameters: 'ConstantParameters',
|
|
377
379
|
description: 'Description',
|
|
378
380
|
disableInternet: 'DisableInternet',
|
|
@@ -402,6 +404,8 @@ class CreateApiRequest extends $tea.Model {
|
|
|
402
404
|
apiName: 'string',
|
|
403
405
|
appCodeAuthType: 'string',
|
|
404
406
|
authType: 'string',
|
|
407
|
+
backendEnable: 'boolean',
|
|
408
|
+
backendId: 'string',
|
|
405
409
|
constantParameters: 'string',
|
|
406
410
|
description: 'string',
|
|
407
411
|
disableInternet: 'boolean',
|
|
@@ -663,6 +667,126 @@ class CreateAppResponse extends $tea.Model {
|
|
|
663
667
|
}
|
|
664
668
|
}
|
|
665
669
|
exports.CreateAppResponse = CreateAppResponse;
|
|
670
|
+
class CreateBackendRequest extends $tea.Model {
|
|
671
|
+
constructor(map) {
|
|
672
|
+
super(map);
|
|
673
|
+
}
|
|
674
|
+
static names() {
|
|
675
|
+
return {
|
|
676
|
+
backendName: 'BackendName',
|
|
677
|
+
backendType: 'BackendType',
|
|
678
|
+
description: 'Description',
|
|
679
|
+
securityToken: 'SecurityToken',
|
|
680
|
+
};
|
|
681
|
+
}
|
|
682
|
+
static types() {
|
|
683
|
+
return {
|
|
684
|
+
backendName: 'string',
|
|
685
|
+
backendType: 'string',
|
|
686
|
+
description: 'string',
|
|
687
|
+
securityToken: 'string',
|
|
688
|
+
};
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
exports.CreateBackendRequest = CreateBackendRequest;
|
|
692
|
+
class CreateBackendResponseBody extends $tea.Model {
|
|
693
|
+
constructor(map) {
|
|
694
|
+
super(map);
|
|
695
|
+
}
|
|
696
|
+
static names() {
|
|
697
|
+
return {
|
|
698
|
+
backendId: 'BackendId',
|
|
699
|
+
requestId: 'RequestId',
|
|
700
|
+
};
|
|
701
|
+
}
|
|
702
|
+
static types() {
|
|
703
|
+
return {
|
|
704
|
+
backendId: 'string',
|
|
705
|
+
requestId: 'string',
|
|
706
|
+
};
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
exports.CreateBackendResponseBody = CreateBackendResponseBody;
|
|
710
|
+
class CreateBackendResponse extends $tea.Model {
|
|
711
|
+
constructor(map) {
|
|
712
|
+
super(map);
|
|
713
|
+
}
|
|
714
|
+
static names() {
|
|
715
|
+
return {
|
|
716
|
+
headers: 'headers',
|
|
717
|
+
body: 'body',
|
|
718
|
+
};
|
|
719
|
+
}
|
|
720
|
+
static types() {
|
|
721
|
+
return {
|
|
722
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
723
|
+
body: CreateBackendResponseBody,
|
|
724
|
+
};
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
exports.CreateBackendResponse = CreateBackendResponse;
|
|
728
|
+
class CreateBackendModelRequest extends $tea.Model {
|
|
729
|
+
constructor(map) {
|
|
730
|
+
super(map);
|
|
731
|
+
}
|
|
732
|
+
static names() {
|
|
733
|
+
return {
|
|
734
|
+
backendId: 'BackendId',
|
|
735
|
+
backendModelData: 'BackendModelData',
|
|
736
|
+
backendType: 'BackendType',
|
|
737
|
+
description: 'Description',
|
|
738
|
+
securityToken: 'SecurityToken',
|
|
739
|
+
stageName: 'StageName',
|
|
740
|
+
};
|
|
741
|
+
}
|
|
742
|
+
static types() {
|
|
743
|
+
return {
|
|
744
|
+
backendId: 'string',
|
|
745
|
+
backendModelData: 'string',
|
|
746
|
+
backendType: 'string',
|
|
747
|
+
description: 'string',
|
|
748
|
+
securityToken: 'string',
|
|
749
|
+
stageName: 'string',
|
|
750
|
+
};
|
|
751
|
+
}
|
|
752
|
+
}
|
|
753
|
+
exports.CreateBackendModelRequest = CreateBackendModelRequest;
|
|
754
|
+
class CreateBackendModelResponseBody extends $tea.Model {
|
|
755
|
+
constructor(map) {
|
|
756
|
+
super(map);
|
|
757
|
+
}
|
|
758
|
+
static names() {
|
|
759
|
+
return {
|
|
760
|
+
backendModelId: 'BackendModelId',
|
|
761
|
+
requestId: 'RequestId',
|
|
762
|
+
};
|
|
763
|
+
}
|
|
764
|
+
static types() {
|
|
765
|
+
return {
|
|
766
|
+
backendModelId: 'string',
|
|
767
|
+
requestId: 'string',
|
|
768
|
+
};
|
|
769
|
+
}
|
|
770
|
+
}
|
|
771
|
+
exports.CreateBackendModelResponseBody = CreateBackendModelResponseBody;
|
|
772
|
+
class CreateBackendModelResponse extends $tea.Model {
|
|
773
|
+
constructor(map) {
|
|
774
|
+
super(map);
|
|
775
|
+
}
|
|
776
|
+
static names() {
|
|
777
|
+
return {
|
|
778
|
+
headers: 'headers',
|
|
779
|
+
body: 'body',
|
|
780
|
+
};
|
|
781
|
+
}
|
|
782
|
+
static types() {
|
|
783
|
+
return {
|
|
784
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
785
|
+
body: CreateBackendModelResponseBody,
|
|
786
|
+
};
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
exports.CreateBackendModelResponse = CreateBackendModelResponse;
|
|
666
790
|
class CreateInstanceRequest extends $tea.Model {
|
|
667
791
|
constructor(map) {
|
|
668
792
|
super(map);
|
|
@@ -1491,6 +1615,116 @@ class DeleteAppResponse extends $tea.Model {
|
|
|
1491
1615
|
}
|
|
1492
1616
|
}
|
|
1493
1617
|
exports.DeleteAppResponse = DeleteAppResponse;
|
|
1618
|
+
class DeleteBackendRequest extends $tea.Model {
|
|
1619
|
+
constructor(map) {
|
|
1620
|
+
super(map);
|
|
1621
|
+
}
|
|
1622
|
+
static names() {
|
|
1623
|
+
return {
|
|
1624
|
+
backendId: 'BackendId',
|
|
1625
|
+
securityToken: 'SecurityToken',
|
|
1626
|
+
};
|
|
1627
|
+
}
|
|
1628
|
+
static types() {
|
|
1629
|
+
return {
|
|
1630
|
+
backendId: 'string',
|
|
1631
|
+
securityToken: 'string',
|
|
1632
|
+
};
|
|
1633
|
+
}
|
|
1634
|
+
}
|
|
1635
|
+
exports.DeleteBackendRequest = DeleteBackendRequest;
|
|
1636
|
+
class DeleteBackendResponseBody extends $tea.Model {
|
|
1637
|
+
constructor(map) {
|
|
1638
|
+
super(map);
|
|
1639
|
+
}
|
|
1640
|
+
static names() {
|
|
1641
|
+
return {
|
|
1642
|
+
requestId: 'RequestId',
|
|
1643
|
+
};
|
|
1644
|
+
}
|
|
1645
|
+
static types() {
|
|
1646
|
+
return {
|
|
1647
|
+
requestId: 'string',
|
|
1648
|
+
};
|
|
1649
|
+
}
|
|
1650
|
+
}
|
|
1651
|
+
exports.DeleteBackendResponseBody = DeleteBackendResponseBody;
|
|
1652
|
+
class DeleteBackendResponse extends $tea.Model {
|
|
1653
|
+
constructor(map) {
|
|
1654
|
+
super(map);
|
|
1655
|
+
}
|
|
1656
|
+
static names() {
|
|
1657
|
+
return {
|
|
1658
|
+
headers: 'headers',
|
|
1659
|
+
body: 'body',
|
|
1660
|
+
};
|
|
1661
|
+
}
|
|
1662
|
+
static types() {
|
|
1663
|
+
return {
|
|
1664
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1665
|
+
body: DeleteBackendResponseBody,
|
|
1666
|
+
};
|
|
1667
|
+
}
|
|
1668
|
+
}
|
|
1669
|
+
exports.DeleteBackendResponse = DeleteBackendResponse;
|
|
1670
|
+
class DeleteBackendModelRequest extends $tea.Model {
|
|
1671
|
+
constructor(map) {
|
|
1672
|
+
super(map);
|
|
1673
|
+
}
|
|
1674
|
+
static names() {
|
|
1675
|
+
return {
|
|
1676
|
+
backendId: 'BackendId',
|
|
1677
|
+
backendModelId: 'BackendModelId',
|
|
1678
|
+
securityToken: 'SecurityToken',
|
|
1679
|
+
stageName: 'StageName',
|
|
1680
|
+
};
|
|
1681
|
+
}
|
|
1682
|
+
static types() {
|
|
1683
|
+
return {
|
|
1684
|
+
backendId: 'string',
|
|
1685
|
+
backendModelId: 'string',
|
|
1686
|
+
securityToken: 'string',
|
|
1687
|
+
stageName: 'string',
|
|
1688
|
+
};
|
|
1689
|
+
}
|
|
1690
|
+
}
|
|
1691
|
+
exports.DeleteBackendModelRequest = DeleteBackendModelRequest;
|
|
1692
|
+
class DeleteBackendModelResponseBody extends $tea.Model {
|
|
1693
|
+
constructor(map) {
|
|
1694
|
+
super(map);
|
|
1695
|
+
}
|
|
1696
|
+
static names() {
|
|
1697
|
+
return {
|
|
1698
|
+
operationId: 'OperationId',
|
|
1699
|
+
requestId: 'RequestId',
|
|
1700
|
+
};
|
|
1701
|
+
}
|
|
1702
|
+
static types() {
|
|
1703
|
+
return {
|
|
1704
|
+
operationId: 'string',
|
|
1705
|
+
requestId: 'string',
|
|
1706
|
+
};
|
|
1707
|
+
}
|
|
1708
|
+
}
|
|
1709
|
+
exports.DeleteBackendModelResponseBody = DeleteBackendModelResponseBody;
|
|
1710
|
+
class DeleteBackendModelResponse extends $tea.Model {
|
|
1711
|
+
constructor(map) {
|
|
1712
|
+
super(map);
|
|
1713
|
+
}
|
|
1714
|
+
static names() {
|
|
1715
|
+
return {
|
|
1716
|
+
headers: 'headers',
|
|
1717
|
+
body: 'body',
|
|
1718
|
+
};
|
|
1719
|
+
}
|
|
1720
|
+
static types() {
|
|
1721
|
+
return {
|
|
1722
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
1723
|
+
body: DeleteBackendModelResponseBody,
|
|
1724
|
+
};
|
|
1725
|
+
}
|
|
1726
|
+
}
|
|
1727
|
+
exports.DeleteBackendModelResponse = DeleteBackendModelResponse;
|
|
1494
1728
|
class DeleteDomainRequest extends $tea.Model {
|
|
1495
1729
|
constructor(map) {
|
|
1496
1730
|
super(map);
|
|
@@ -1809,6 +2043,60 @@ class DeleteModelResponse extends $tea.Model {
|
|
|
1809
2043
|
}
|
|
1810
2044
|
}
|
|
1811
2045
|
exports.DeleteModelResponse = DeleteModelResponse;
|
|
2046
|
+
class DeleteMonitorGroupRequest extends $tea.Model {
|
|
2047
|
+
constructor(map) {
|
|
2048
|
+
super(map);
|
|
2049
|
+
}
|
|
2050
|
+
static names() {
|
|
2051
|
+
return {
|
|
2052
|
+
groupId: 'GroupId',
|
|
2053
|
+
rawMonitorGroupId: 'RawMonitorGroupId',
|
|
2054
|
+
securityToken: 'SecurityToken',
|
|
2055
|
+
};
|
|
2056
|
+
}
|
|
2057
|
+
static types() {
|
|
2058
|
+
return {
|
|
2059
|
+
groupId: 'string',
|
|
2060
|
+
rawMonitorGroupId: 'number',
|
|
2061
|
+
securityToken: 'string',
|
|
2062
|
+
};
|
|
2063
|
+
}
|
|
2064
|
+
}
|
|
2065
|
+
exports.DeleteMonitorGroupRequest = DeleteMonitorGroupRequest;
|
|
2066
|
+
class DeleteMonitorGroupResponseBody extends $tea.Model {
|
|
2067
|
+
constructor(map) {
|
|
2068
|
+
super(map);
|
|
2069
|
+
}
|
|
2070
|
+
static names() {
|
|
2071
|
+
return {
|
|
2072
|
+
requestId: 'RequestId',
|
|
2073
|
+
};
|
|
2074
|
+
}
|
|
2075
|
+
static types() {
|
|
2076
|
+
return {
|
|
2077
|
+
requestId: 'string',
|
|
2078
|
+
};
|
|
2079
|
+
}
|
|
2080
|
+
}
|
|
2081
|
+
exports.DeleteMonitorGroupResponseBody = DeleteMonitorGroupResponseBody;
|
|
2082
|
+
class DeleteMonitorGroupResponse extends $tea.Model {
|
|
2083
|
+
constructor(map) {
|
|
2084
|
+
super(map);
|
|
2085
|
+
}
|
|
2086
|
+
static names() {
|
|
2087
|
+
return {
|
|
2088
|
+
headers: 'headers',
|
|
2089
|
+
body: 'body',
|
|
2090
|
+
};
|
|
2091
|
+
}
|
|
2092
|
+
static types() {
|
|
2093
|
+
return {
|
|
2094
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
2095
|
+
body: DeleteMonitorGroupResponseBody,
|
|
2096
|
+
};
|
|
2097
|
+
}
|
|
2098
|
+
}
|
|
2099
|
+
exports.DeleteMonitorGroupResponse = DeleteMonitorGroupResponse;
|
|
1812
2100
|
class DeletePluginRequest extends $tea.Model {
|
|
1813
2101
|
constructor(map) {
|
|
1814
2102
|
super(map);
|
|
@@ -2166,6 +2454,8 @@ class DescribeApiResponseBody extends $tea.Model {
|
|
|
2166
2454
|
apiName: 'ApiName',
|
|
2167
2455
|
appCodeAuthType: 'AppCodeAuthType',
|
|
2168
2456
|
authType: 'AuthType',
|
|
2457
|
+
backendConfig: 'BackendConfig',
|
|
2458
|
+
backendEnable: 'BackendEnable',
|
|
2169
2459
|
constantParameters: 'ConstantParameters',
|
|
2170
2460
|
createdTime: 'CreatedTime',
|
|
2171
2461
|
customSystemParameters: 'CustomSystemParameters',
|
|
@@ -2204,6 +2494,8 @@ class DescribeApiResponseBody extends $tea.Model {
|
|
|
2204
2494
|
apiName: 'string',
|
|
2205
2495
|
appCodeAuthType: 'string',
|
|
2206
2496
|
authType: 'string',
|
|
2497
|
+
backendConfig: DescribeApiResponseBodyBackendConfig,
|
|
2498
|
+
backendEnable: 'boolean',
|
|
2207
2499
|
constantParameters: DescribeApiResponseBodyConstantParameters,
|
|
2208
2500
|
createdTime: 'string',
|
|
2209
2501
|
customSystemParameters: DescribeApiResponseBodyCustomSystemParameters,
|
|
@@ -2696,6 +2988,8 @@ class DescribeApiHistoryResponseBody extends $tea.Model {
|
|
|
2696
2988
|
apiName: 'ApiName',
|
|
2697
2989
|
appCodeAuthType: 'AppCodeAuthType',
|
|
2698
2990
|
authType: 'AuthType',
|
|
2991
|
+
backendConfig: 'BackendConfig',
|
|
2992
|
+
backendEnable: 'BackendEnable',
|
|
2699
2993
|
constantParameters: 'ConstantParameters',
|
|
2700
2994
|
customSystemParameters: 'CustomSystemParameters',
|
|
2701
2995
|
deployedTime: 'DeployedTime',
|
|
@@ -2733,6 +3027,8 @@ class DescribeApiHistoryResponseBody extends $tea.Model {
|
|
|
2733
3027
|
apiName: 'string',
|
|
2734
3028
|
appCodeAuthType: 'string',
|
|
2735
3029
|
authType: 'string',
|
|
3030
|
+
backendConfig: DescribeApiHistoryResponseBodyBackendConfig,
|
|
3031
|
+
backendEnable: 'boolean',
|
|
2736
3032
|
constantParameters: DescribeApiHistoryResponseBodyConstantParameters,
|
|
2737
3033
|
customSystemParameters: DescribeApiHistoryResponseBodyCustomSystemParameters,
|
|
2738
3034
|
deployedTime: 'string',
|
|
@@ -3385,35 +3681,37 @@ class DescribeApisByAppResponse extends $tea.Model {
|
|
|
3385
3681
|
}
|
|
3386
3682
|
}
|
|
3387
3683
|
exports.DescribeApisByAppResponse = DescribeApisByAppResponse;
|
|
3388
|
-
class
|
|
3684
|
+
class DescribeApisByBackendRequest extends $tea.Model {
|
|
3389
3685
|
constructor(map) {
|
|
3390
3686
|
super(map);
|
|
3391
3687
|
}
|
|
3392
3688
|
static names() {
|
|
3393
3689
|
return {
|
|
3394
|
-
|
|
3690
|
+
backendId: 'BackendId',
|
|
3395
3691
|
pageNumber: 'PageNumber',
|
|
3396
3692
|
pageSize: 'PageSize',
|
|
3397
3693
|
securityToken: 'SecurityToken',
|
|
3694
|
+
stageName: 'StageName',
|
|
3398
3695
|
};
|
|
3399
3696
|
}
|
|
3400
3697
|
static types() {
|
|
3401
3698
|
return {
|
|
3402
|
-
|
|
3699
|
+
backendId: 'string',
|
|
3403
3700
|
pageNumber: 'number',
|
|
3404
3701
|
pageSize: 'number',
|
|
3405
3702
|
securityToken: 'string',
|
|
3703
|
+
stageName: 'string',
|
|
3406
3704
|
};
|
|
3407
3705
|
}
|
|
3408
3706
|
}
|
|
3409
|
-
exports.
|
|
3410
|
-
class
|
|
3707
|
+
exports.DescribeApisByBackendRequest = DescribeApisByBackendRequest;
|
|
3708
|
+
class DescribeApisByBackendResponseBody extends $tea.Model {
|
|
3411
3709
|
constructor(map) {
|
|
3412
3710
|
super(map);
|
|
3413
3711
|
}
|
|
3414
3712
|
static names() {
|
|
3415
3713
|
return {
|
|
3416
|
-
|
|
3714
|
+
apiInfoList: 'ApiInfoList',
|
|
3417
3715
|
pageNumber: 'PageNumber',
|
|
3418
3716
|
pageSize: 'PageSize',
|
|
3419
3717
|
requestId: 'RequestId',
|
|
@@ -3422,7 +3720,7 @@ class DescribeApisByIpControlResponseBody extends $tea.Model {
|
|
|
3422
3720
|
}
|
|
3423
3721
|
static types() {
|
|
3424
3722
|
return {
|
|
3425
|
-
|
|
3723
|
+
apiInfoList: DescribeApisByBackendResponseBodyApiInfoList,
|
|
3426
3724
|
pageNumber: 'number',
|
|
3427
3725
|
pageSize: 'number',
|
|
3428
3726
|
requestId: 'string',
|
|
@@ -3430,8 +3728,8 @@ class DescribeApisByIpControlResponseBody extends $tea.Model {
|
|
|
3430
3728
|
};
|
|
3431
3729
|
}
|
|
3432
3730
|
}
|
|
3433
|
-
exports.
|
|
3434
|
-
class
|
|
3731
|
+
exports.DescribeApisByBackendResponseBody = DescribeApisByBackendResponseBody;
|
|
3732
|
+
class DescribeApisByBackendResponse extends $tea.Model {
|
|
3435
3733
|
constructor(map) {
|
|
3436
3734
|
super(map);
|
|
3437
3735
|
}
|
|
@@ -3444,34 +3742,34 @@ class DescribeApisByIpControlResponse extends $tea.Model {
|
|
|
3444
3742
|
static types() {
|
|
3445
3743
|
return {
|
|
3446
3744
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3447
|
-
body:
|
|
3745
|
+
body: DescribeApisByBackendResponseBody,
|
|
3448
3746
|
};
|
|
3449
3747
|
}
|
|
3450
3748
|
}
|
|
3451
|
-
exports.
|
|
3452
|
-
class
|
|
3749
|
+
exports.DescribeApisByBackendResponse = DescribeApisByBackendResponse;
|
|
3750
|
+
class DescribeApisByIpControlRequest extends $tea.Model {
|
|
3453
3751
|
constructor(map) {
|
|
3454
3752
|
super(map);
|
|
3455
3753
|
}
|
|
3456
3754
|
static names() {
|
|
3457
3755
|
return {
|
|
3756
|
+
ipControlId: 'IpControlId',
|
|
3458
3757
|
pageNumber: 'PageNumber',
|
|
3459
3758
|
pageSize: 'PageSize',
|
|
3460
3759
|
securityToken: 'SecurityToken',
|
|
3461
|
-
signatureId: 'SignatureId',
|
|
3462
3760
|
};
|
|
3463
3761
|
}
|
|
3464
3762
|
static types() {
|
|
3465
3763
|
return {
|
|
3764
|
+
ipControlId: 'string',
|
|
3466
3765
|
pageNumber: 'number',
|
|
3467
3766
|
pageSize: 'number',
|
|
3468
3767
|
securityToken: 'string',
|
|
3469
|
-
signatureId: 'string',
|
|
3470
3768
|
};
|
|
3471
3769
|
}
|
|
3472
3770
|
}
|
|
3473
|
-
exports.
|
|
3474
|
-
class
|
|
3771
|
+
exports.DescribeApisByIpControlRequest = DescribeApisByIpControlRequest;
|
|
3772
|
+
class DescribeApisByIpControlResponseBody extends $tea.Model {
|
|
3475
3773
|
constructor(map) {
|
|
3476
3774
|
super(map);
|
|
3477
3775
|
}
|
|
@@ -3486,7 +3784,7 @@ class DescribeApisBySignatureResponseBody extends $tea.Model {
|
|
|
3486
3784
|
}
|
|
3487
3785
|
static types() {
|
|
3488
3786
|
return {
|
|
3489
|
-
apiInfos:
|
|
3787
|
+
apiInfos: DescribeApisByIpControlResponseBodyApiInfos,
|
|
3490
3788
|
pageNumber: 'number',
|
|
3491
3789
|
pageSize: 'number',
|
|
3492
3790
|
requestId: 'string',
|
|
@@ -3494,8 +3792,72 @@ class DescribeApisBySignatureResponseBody extends $tea.Model {
|
|
|
3494
3792
|
};
|
|
3495
3793
|
}
|
|
3496
3794
|
}
|
|
3497
|
-
exports.
|
|
3498
|
-
class
|
|
3795
|
+
exports.DescribeApisByIpControlResponseBody = DescribeApisByIpControlResponseBody;
|
|
3796
|
+
class DescribeApisByIpControlResponse extends $tea.Model {
|
|
3797
|
+
constructor(map) {
|
|
3798
|
+
super(map);
|
|
3799
|
+
}
|
|
3800
|
+
static names() {
|
|
3801
|
+
return {
|
|
3802
|
+
headers: 'headers',
|
|
3803
|
+
body: 'body',
|
|
3804
|
+
};
|
|
3805
|
+
}
|
|
3806
|
+
static types() {
|
|
3807
|
+
return {
|
|
3808
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3809
|
+
body: DescribeApisByIpControlResponseBody,
|
|
3810
|
+
};
|
|
3811
|
+
}
|
|
3812
|
+
}
|
|
3813
|
+
exports.DescribeApisByIpControlResponse = DescribeApisByIpControlResponse;
|
|
3814
|
+
class DescribeApisBySignatureRequest extends $tea.Model {
|
|
3815
|
+
constructor(map) {
|
|
3816
|
+
super(map);
|
|
3817
|
+
}
|
|
3818
|
+
static names() {
|
|
3819
|
+
return {
|
|
3820
|
+
pageNumber: 'PageNumber',
|
|
3821
|
+
pageSize: 'PageSize',
|
|
3822
|
+
securityToken: 'SecurityToken',
|
|
3823
|
+
signatureId: 'SignatureId',
|
|
3824
|
+
};
|
|
3825
|
+
}
|
|
3826
|
+
static types() {
|
|
3827
|
+
return {
|
|
3828
|
+
pageNumber: 'number',
|
|
3829
|
+
pageSize: 'number',
|
|
3830
|
+
securityToken: 'string',
|
|
3831
|
+
signatureId: 'string',
|
|
3832
|
+
};
|
|
3833
|
+
}
|
|
3834
|
+
}
|
|
3835
|
+
exports.DescribeApisBySignatureRequest = DescribeApisBySignatureRequest;
|
|
3836
|
+
class DescribeApisBySignatureResponseBody extends $tea.Model {
|
|
3837
|
+
constructor(map) {
|
|
3838
|
+
super(map);
|
|
3839
|
+
}
|
|
3840
|
+
static names() {
|
|
3841
|
+
return {
|
|
3842
|
+
apiInfos: 'ApiInfos',
|
|
3843
|
+
pageNumber: 'PageNumber',
|
|
3844
|
+
pageSize: 'PageSize',
|
|
3845
|
+
requestId: 'RequestId',
|
|
3846
|
+
totalCount: 'TotalCount',
|
|
3847
|
+
};
|
|
3848
|
+
}
|
|
3849
|
+
static types() {
|
|
3850
|
+
return {
|
|
3851
|
+
apiInfos: DescribeApisBySignatureResponseBodyApiInfos,
|
|
3852
|
+
pageNumber: 'number',
|
|
3853
|
+
pageSize: 'number',
|
|
3854
|
+
requestId: 'string',
|
|
3855
|
+
totalCount: 'number',
|
|
3856
|
+
};
|
|
3857
|
+
}
|
|
3858
|
+
}
|
|
3859
|
+
exports.DescribeApisBySignatureResponseBody = DescribeApisBySignatureResponseBody;
|
|
3860
|
+
class DescribeApisBySignatureResponse extends $tea.Model {
|
|
3499
3861
|
constructor(map) {
|
|
3500
3862
|
super(map);
|
|
3501
3863
|
}
|
|
@@ -3983,6 +4345,126 @@ class DescribeAuthorizedAppsResponse extends $tea.Model {
|
|
|
3983
4345
|
}
|
|
3984
4346
|
}
|
|
3985
4347
|
exports.DescribeAuthorizedAppsResponse = DescribeAuthorizedAppsResponse;
|
|
4348
|
+
class DescribeBackendInfoRequest extends $tea.Model {
|
|
4349
|
+
constructor(map) {
|
|
4350
|
+
super(map);
|
|
4351
|
+
}
|
|
4352
|
+
static names() {
|
|
4353
|
+
return {
|
|
4354
|
+
backendId: 'BackendId',
|
|
4355
|
+
securityToken: 'SecurityToken',
|
|
4356
|
+
};
|
|
4357
|
+
}
|
|
4358
|
+
static types() {
|
|
4359
|
+
return {
|
|
4360
|
+
backendId: 'string',
|
|
4361
|
+
securityToken: 'string',
|
|
4362
|
+
};
|
|
4363
|
+
}
|
|
4364
|
+
}
|
|
4365
|
+
exports.DescribeBackendInfoRequest = DescribeBackendInfoRequest;
|
|
4366
|
+
class DescribeBackendInfoResponseBody extends $tea.Model {
|
|
4367
|
+
constructor(map) {
|
|
4368
|
+
super(map);
|
|
4369
|
+
}
|
|
4370
|
+
static names() {
|
|
4371
|
+
return {
|
|
4372
|
+
backendInfo: 'BackendInfo',
|
|
4373
|
+
requestId: 'RequestId',
|
|
4374
|
+
};
|
|
4375
|
+
}
|
|
4376
|
+
static types() {
|
|
4377
|
+
return {
|
|
4378
|
+
backendInfo: DescribeBackendInfoResponseBodyBackendInfo,
|
|
4379
|
+
requestId: 'string',
|
|
4380
|
+
};
|
|
4381
|
+
}
|
|
4382
|
+
}
|
|
4383
|
+
exports.DescribeBackendInfoResponseBody = DescribeBackendInfoResponseBody;
|
|
4384
|
+
class DescribeBackendInfoResponse extends $tea.Model {
|
|
4385
|
+
constructor(map) {
|
|
4386
|
+
super(map);
|
|
4387
|
+
}
|
|
4388
|
+
static names() {
|
|
4389
|
+
return {
|
|
4390
|
+
headers: 'headers',
|
|
4391
|
+
body: 'body',
|
|
4392
|
+
};
|
|
4393
|
+
}
|
|
4394
|
+
static types() {
|
|
4395
|
+
return {
|
|
4396
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4397
|
+
body: DescribeBackendInfoResponseBody,
|
|
4398
|
+
};
|
|
4399
|
+
}
|
|
4400
|
+
}
|
|
4401
|
+
exports.DescribeBackendInfoResponse = DescribeBackendInfoResponse;
|
|
4402
|
+
class DescribeBackendListRequest extends $tea.Model {
|
|
4403
|
+
constructor(map) {
|
|
4404
|
+
super(map);
|
|
4405
|
+
}
|
|
4406
|
+
static names() {
|
|
4407
|
+
return {
|
|
4408
|
+
backendName: 'BackendName',
|
|
4409
|
+
backendType: 'BackendType',
|
|
4410
|
+
pageNumber: 'PageNumber',
|
|
4411
|
+
pageSize: 'PageSize',
|
|
4412
|
+
securityToken: 'SecurityToken',
|
|
4413
|
+
};
|
|
4414
|
+
}
|
|
4415
|
+
static types() {
|
|
4416
|
+
return {
|
|
4417
|
+
backendName: 'string',
|
|
4418
|
+
backendType: 'string',
|
|
4419
|
+
pageNumber: 'number',
|
|
4420
|
+
pageSize: 'number',
|
|
4421
|
+
securityToken: 'string',
|
|
4422
|
+
};
|
|
4423
|
+
}
|
|
4424
|
+
}
|
|
4425
|
+
exports.DescribeBackendListRequest = DescribeBackendListRequest;
|
|
4426
|
+
class DescribeBackendListResponseBody extends $tea.Model {
|
|
4427
|
+
constructor(map) {
|
|
4428
|
+
super(map);
|
|
4429
|
+
}
|
|
4430
|
+
static names() {
|
|
4431
|
+
return {
|
|
4432
|
+
backendInfoList: 'BackendInfoList',
|
|
4433
|
+
pageNumber: 'PageNumber',
|
|
4434
|
+
pageSize: 'PageSize',
|
|
4435
|
+
requestId: 'RequestId',
|
|
4436
|
+
totalCount: 'TotalCount',
|
|
4437
|
+
};
|
|
4438
|
+
}
|
|
4439
|
+
static types() {
|
|
4440
|
+
return {
|
|
4441
|
+
backendInfoList: { 'type': 'array', 'itemType': DescribeBackendListResponseBodyBackendInfoList },
|
|
4442
|
+
pageNumber: 'number',
|
|
4443
|
+
pageSize: 'number',
|
|
4444
|
+
requestId: 'string',
|
|
4445
|
+
totalCount: 'number',
|
|
4446
|
+
};
|
|
4447
|
+
}
|
|
4448
|
+
}
|
|
4449
|
+
exports.DescribeBackendListResponseBody = DescribeBackendListResponseBody;
|
|
4450
|
+
class DescribeBackendListResponse extends $tea.Model {
|
|
4451
|
+
constructor(map) {
|
|
4452
|
+
super(map);
|
|
4453
|
+
}
|
|
4454
|
+
static names() {
|
|
4455
|
+
return {
|
|
4456
|
+
headers: 'headers',
|
|
4457
|
+
body: 'body',
|
|
4458
|
+
};
|
|
4459
|
+
}
|
|
4460
|
+
static types() {
|
|
4461
|
+
return {
|
|
4462
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4463
|
+
body: DescribeBackendListResponseBody,
|
|
4464
|
+
};
|
|
4465
|
+
}
|
|
4466
|
+
}
|
|
4467
|
+
exports.DescribeBackendListResponse = DescribeBackendListResponse;
|
|
3986
4468
|
class DescribeDeployApiTaskRequest extends $tea.Model {
|
|
3987
4469
|
constructor(map) {
|
|
3988
4470
|
super(map);
|
|
@@ -5483,6 +5965,60 @@ class DescribeTrafficControlsByApiResponse extends $tea.Model {
|
|
|
5483
5965
|
}
|
|
5484
5966
|
}
|
|
5485
5967
|
exports.DescribeTrafficControlsByApiResponse = DescribeTrafficControlsByApiResponse;
|
|
5968
|
+
class DescribeUpdateBackendTaskRequest extends $tea.Model {
|
|
5969
|
+
constructor(map) {
|
|
5970
|
+
super(map);
|
|
5971
|
+
}
|
|
5972
|
+
static names() {
|
|
5973
|
+
return {
|
|
5974
|
+
operationUid: 'OperationUid',
|
|
5975
|
+
securityToken: 'SecurityToken',
|
|
5976
|
+
};
|
|
5977
|
+
}
|
|
5978
|
+
static types() {
|
|
5979
|
+
return {
|
|
5980
|
+
operationUid: 'string',
|
|
5981
|
+
securityToken: 'string',
|
|
5982
|
+
};
|
|
5983
|
+
}
|
|
5984
|
+
}
|
|
5985
|
+
exports.DescribeUpdateBackendTaskRequest = DescribeUpdateBackendTaskRequest;
|
|
5986
|
+
class DescribeUpdateBackendTaskResponseBody extends $tea.Model {
|
|
5987
|
+
constructor(map) {
|
|
5988
|
+
super(map);
|
|
5989
|
+
}
|
|
5990
|
+
static names() {
|
|
5991
|
+
return {
|
|
5992
|
+
apiUpdateBackendResults: 'ApiUpdateBackendResults',
|
|
5993
|
+
requestId: 'RequestId',
|
|
5994
|
+
};
|
|
5995
|
+
}
|
|
5996
|
+
static types() {
|
|
5997
|
+
return {
|
|
5998
|
+
apiUpdateBackendResults: DescribeUpdateBackendTaskResponseBodyApiUpdateBackendResults,
|
|
5999
|
+
requestId: 'string',
|
|
6000
|
+
};
|
|
6001
|
+
}
|
|
6002
|
+
}
|
|
6003
|
+
exports.DescribeUpdateBackendTaskResponseBody = DescribeUpdateBackendTaskResponseBody;
|
|
6004
|
+
class DescribeUpdateBackendTaskResponse extends $tea.Model {
|
|
6005
|
+
constructor(map) {
|
|
6006
|
+
super(map);
|
|
6007
|
+
}
|
|
6008
|
+
static names() {
|
|
6009
|
+
return {
|
|
6010
|
+
headers: 'headers',
|
|
6011
|
+
body: 'body',
|
|
6012
|
+
};
|
|
6013
|
+
}
|
|
6014
|
+
static types() {
|
|
6015
|
+
return {
|
|
6016
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6017
|
+
body: DescribeUpdateBackendTaskResponseBody,
|
|
6018
|
+
};
|
|
6019
|
+
}
|
|
6020
|
+
}
|
|
6021
|
+
exports.DescribeUpdateBackendTaskResponse = DescribeUpdateBackendTaskResponse;
|
|
5486
6022
|
class DescribeUpdateVpcInfoTaskRequest extends $tea.Model {
|
|
5487
6023
|
constructor(map) {
|
|
5488
6024
|
super(map);
|
|
@@ -5663,6 +6199,64 @@ class DescribeZonesResponse extends $tea.Model {
|
|
|
5663
6199
|
}
|
|
5664
6200
|
}
|
|
5665
6201
|
exports.DescribeZonesResponse = DescribeZonesResponse;
|
|
6202
|
+
class DetachPluginRequest extends $tea.Model {
|
|
6203
|
+
constructor(map) {
|
|
6204
|
+
super(map);
|
|
6205
|
+
}
|
|
6206
|
+
static names() {
|
|
6207
|
+
return {
|
|
6208
|
+
apiId: 'ApiId',
|
|
6209
|
+
groupId: 'GroupId',
|
|
6210
|
+
pluginId: 'PluginId',
|
|
6211
|
+
securityToken: 'SecurityToken',
|
|
6212
|
+
stageName: 'StageName',
|
|
6213
|
+
};
|
|
6214
|
+
}
|
|
6215
|
+
static types() {
|
|
6216
|
+
return {
|
|
6217
|
+
apiId: 'string',
|
|
6218
|
+
groupId: 'string',
|
|
6219
|
+
pluginId: 'string',
|
|
6220
|
+
securityToken: 'string',
|
|
6221
|
+
stageName: 'string',
|
|
6222
|
+
};
|
|
6223
|
+
}
|
|
6224
|
+
}
|
|
6225
|
+
exports.DetachPluginRequest = DetachPluginRequest;
|
|
6226
|
+
class DetachPluginResponseBody extends $tea.Model {
|
|
6227
|
+
constructor(map) {
|
|
6228
|
+
super(map);
|
|
6229
|
+
}
|
|
6230
|
+
static names() {
|
|
6231
|
+
return {
|
|
6232
|
+
requestId: 'RequestId',
|
|
6233
|
+
};
|
|
6234
|
+
}
|
|
6235
|
+
static types() {
|
|
6236
|
+
return {
|
|
6237
|
+
requestId: 'string',
|
|
6238
|
+
};
|
|
6239
|
+
}
|
|
6240
|
+
}
|
|
6241
|
+
exports.DetachPluginResponseBody = DetachPluginResponseBody;
|
|
6242
|
+
class DetachPluginResponse extends $tea.Model {
|
|
6243
|
+
constructor(map) {
|
|
6244
|
+
super(map);
|
|
6245
|
+
}
|
|
6246
|
+
static names() {
|
|
6247
|
+
return {
|
|
6248
|
+
headers: 'headers',
|
|
6249
|
+
body: 'body',
|
|
6250
|
+
};
|
|
6251
|
+
}
|
|
6252
|
+
static types() {
|
|
6253
|
+
return {
|
|
6254
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6255
|
+
body: DetachPluginResponseBody,
|
|
6256
|
+
};
|
|
6257
|
+
}
|
|
6258
|
+
}
|
|
6259
|
+
exports.DetachPluginResponse = DetachPluginResponse;
|
|
5666
6260
|
class DryRunSwaggerRequest extends $tea.Model {
|
|
5667
6261
|
constructor(map) {
|
|
5668
6262
|
super(map);
|
|
@@ -5928,6 +6522,8 @@ class ModifyApiRequest extends $tea.Model {
|
|
|
5928
6522
|
apiName: 'ApiName',
|
|
5929
6523
|
appCodeAuthType: 'AppCodeAuthType',
|
|
5930
6524
|
authType: 'AuthType',
|
|
6525
|
+
backendEnable: 'BackendEnable',
|
|
6526
|
+
backendId: 'BackendId',
|
|
5931
6527
|
constantParameters: 'ConstantParameters',
|
|
5932
6528
|
description: 'Description',
|
|
5933
6529
|
disableInternet: 'DisableInternet',
|
|
@@ -5958,6 +6554,8 @@ class ModifyApiRequest extends $tea.Model {
|
|
|
5958
6554
|
apiName: 'string',
|
|
5959
6555
|
appCodeAuthType: 'string',
|
|
5960
6556
|
authType: 'string',
|
|
6557
|
+
backendEnable: 'boolean',
|
|
6558
|
+
backendId: 'string',
|
|
5961
6559
|
constantParameters: 'string',
|
|
5962
6560
|
description: 'string',
|
|
5963
6561
|
disableInternet: 'boolean',
|
|
@@ -6096,32 +6694,148 @@ class ModifyApiGroupResponse extends $tea.Model {
|
|
|
6096
6694
|
static types() {
|
|
6097
6695
|
return {
|
|
6098
6696
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6099
|
-
body: ModifyApiGroupResponseBody,
|
|
6697
|
+
body: ModifyApiGroupResponseBody,
|
|
6698
|
+
};
|
|
6699
|
+
}
|
|
6700
|
+
}
|
|
6701
|
+
exports.ModifyApiGroupResponse = ModifyApiGroupResponse;
|
|
6702
|
+
class ModifyApiGroupVpcWhitelistRequest extends $tea.Model {
|
|
6703
|
+
constructor(map) {
|
|
6704
|
+
super(map);
|
|
6705
|
+
}
|
|
6706
|
+
static names() {
|
|
6707
|
+
return {
|
|
6708
|
+
groupId: 'GroupId',
|
|
6709
|
+
securityToken: 'SecurityToken',
|
|
6710
|
+
vpcIds: 'VpcIds',
|
|
6711
|
+
};
|
|
6712
|
+
}
|
|
6713
|
+
static types() {
|
|
6714
|
+
return {
|
|
6715
|
+
groupId: 'string',
|
|
6716
|
+
securityToken: 'string',
|
|
6717
|
+
vpcIds: 'string',
|
|
6718
|
+
};
|
|
6719
|
+
}
|
|
6720
|
+
}
|
|
6721
|
+
exports.ModifyApiGroupVpcWhitelistRequest = ModifyApiGroupVpcWhitelistRequest;
|
|
6722
|
+
class ModifyApiGroupVpcWhitelistResponseBody extends $tea.Model {
|
|
6723
|
+
constructor(map) {
|
|
6724
|
+
super(map);
|
|
6725
|
+
}
|
|
6726
|
+
static names() {
|
|
6727
|
+
return {
|
|
6728
|
+
requestId: 'RequestId',
|
|
6729
|
+
};
|
|
6730
|
+
}
|
|
6731
|
+
static types() {
|
|
6732
|
+
return {
|
|
6733
|
+
requestId: 'string',
|
|
6734
|
+
};
|
|
6735
|
+
}
|
|
6736
|
+
}
|
|
6737
|
+
exports.ModifyApiGroupVpcWhitelistResponseBody = ModifyApiGroupVpcWhitelistResponseBody;
|
|
6738
|
+
class ModifyApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
6739
|
+
constructor(map) {
|
|
6740
|
+
super(map);
|
|
6741
|
+
}
|
|
6742
|
+
static names() {
|
|
6743
|
+
return {
|
|
6744
|
+
headers: 'headers',
|
|
6745
|
+
body: 'body',
|
|
6746
|
+
};
|
|
6747
|
+
}
|
|
6748
|
+
static types() {
|
|
6749
|
+
return {
|
|
6750
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6751
|
+
body: ModifyApiGroupVpcWhitelistResponseBody,
|
|
6752
|
+
};
|
|
6753
|
+
}
|
|
6754
|
+
}
|
|
6755
|
+
exports.ModifyApiGroupVpcWhitelistResponse = ModifyApiGroupVpcWhitelistResponse;
|
|
6756
|
+
class ModifyAppRequest extends $tea.Model {
|
|
6757
|
+
constructor(map) {
|
|
6758
|
+
super(map);
|
|
6759
|
+
}
|
|
6760
|
+
static names() {
|
|
6761
|
+
return {
|
|
6762
|
+
appId: 'AppId',
|
|
6763
|
+
appName: 'AppName',
|
|
6764
|
+
description: 'Description',
|
|
6765
|
+
securityToken: 'SecurityToken',
|
|
6766
|
+
tag: 'Tag',
|
|
6767
|
+
};
|
|
6768
|
+
}
|
|
6769
|
+
static types() {
|
|
6770
|
+
return {
|
|
6771
|
+
appId: 'number',
|
|
6772
|
+
appName: 'string',
|
|
6773
|
+
description: 'string',
|
|
6774
|
+
securityToken: 'string',
|
|
6775
|
+
tag: { 'type': 'array', 'itemType': ModifyAppRequestTag },
|
|
6776
|
+
};
|
|
6777
|
+
}
|
|
6778
|
+
}
|
|
6779
|
+
exports.ModifyAppRequest = ModifyAppRequest;
|
|
6780
|
+
class ModifyAppResponseBody extends $tea.Model {
|
|
6781
|
+
constructor(map) {
|
|
6782
|
+
super(map);
|
|
6783
|
+
}
|
|
6784
|
+
static names() {
|
|
6785
|
+
return {
|
|
6786
|
+
requestId: 'RequestId',
|
|
6787
|
+
};
|
|
6788
|
+
}
|
|
6789
|
+
static types() {
|
|
6790
|
+
return {
|
|
6791
|
+
requestId: 'string',
|
|
6792
|
+
};
|
|
6793
|
+
}
|
|
6794
|
+
}
|
|
6795
|
+
exports.ModifyAppResponseBody = ModifyAppResponseBody;
|
|
6796
|
+
class ModifyAppResponse extends $tea.Model {
|
|
6797
|
+
constructor(map) {
|
|
6798
|
+
super(map);
|
|
6799
|
+
}
|
|
6800
|
+
static names() {
|
|
6801
|
+
return {
|
|
6802
|
+
headers: 'headers',
|
|
6803
|
+
body: 'body',
|
|
6804
|
+
};
|
|
6805
|
+
}
|
|
6806
|
+
static types() {
|
|
6807
|
+
return {
|
|
6808
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6809
|
+
body: ModifyAppResponseBody,
|
|
6100
6810
|
};
|
|
6101
6811
|
}
|
|
6102
6812
|
}
|
|
6103
|
-
exports.
|
|
6104
|
-
class
|
|
6813
|
+
exports.ModifyAppResponse = ModifyAppResponse;
|
|
6814
|
+
class ModifyBackendRequest extends $tea.Model {
|
|
6105
6815
|
constructor(map) {
|
|
6106
6816
|
super(map);
|
|
6107
6817
|
}
|
|
6108
6818
|
static names() {
|
|
6109
6819
|
return {
|
|
6110
|
-
|
|
6820
|
+
backendId: 'BackendId',
|
|
6821
|
+
backendName: 'BackendName',
|
|
6822
|
+
backendType: 'BackendType',
|
|
6823
|
+
description: 'Description',
|
|
6111
6824
|
securityToken: 'SecurityToken',
|
|
6112
|
-
vpcIds: 'VpcIds',
|
|
6113
6825
|
};
|
|
6114
6826
|
}
|
|
6115
6827
|
static types() {
|
|
6116
6828
|
return {
|
|
6117
|
-
|
|
6829
|
+
backendId: 'string',
|
|
6830
|
+
backendName: 'string',
|
|
6831
|
+
backendType: 'string',
|
|
6832
|
+
description: 'string',
|
|
6118
6833
|
securityToken: 'string',
|
|
6119
|
-
vpcIds: 'string',
|
|
6120
6834
|
};
|
|
6121
6835
|
}
|
|
6122
6836
|
}
|
|
6123
|
-
exports.
|
|
6124
|
-
class
|
|
6837
|
+
exports.ModifyBackendRequest = ModifyBackendRequest;
|
|
6838
|
+
class ModifyBackendResponseBody extends $tea.Model {
|
|
6125
6839
|
constructor(map) {
|
|
6126
6840
|
super(map);
|
|
6127
6841
|
}
|
|
@@ -6136,8 +6850,8 @@ class ModifyApiGroupVpcWhitelistResponseBody extends $tea.Model {
|
|
|
6136
6850
|
};
|
|
6137
6851
|
}
|
|
6138
6852
|
}
|
|
6139
|
-
exports.
|
|
6140
|
-
class
|
|
6853
|
+
exports.ModifyBackendResponseBody = ModifyBackendResponseBody;
|
|
6854
|
+
class ModifyBackendResponse extends $tea.Model {
|
|
6141
6855
|
constructor(map) {
|
|
6142
6856
|
super(map);
|
|
6143
6857
|
}
|
|
@@ -6150,52 +6864,58 @@ class ModifyApiGroupVpcWhitelistResponse extends $tea.Model {
|
|
|
6150
6864
|
static types() {
|
|
6151
6865
|
return {
|
|
6152
6866
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6153
|
-
body:
|
|
6867
|
+
body: ModifyBackendResponseBody,
|
|
6154
6868
|
};
|
|
6155
6869
|
}
|
|
6156
6870
|
}
|
|
6157
|
-
exports.
|
|
6158
|
-
class
|
|
6871
|
+
exports.ModifyBackendResponse = ModifyBackendResponse;
|
|
6872
|
+
class ModifyBackendModelRequest extends $tea.Model {
|
|
6159
6873
|
constructor(map) {
|
|
6160
6874
|
super(map);
|
|
6161
6875
|
}
|
|
6162
6876
|
static names() {
|
|
6163
6877
|
return {
|
|
6164
|
-
|
|
6165
|
-
|
|
6878
|
+
backendId: 'BackendId',
|
|
6879
|
+
backendModelData: 'BackendModelData',
|
|
6880
|
+
backendModelId: 'BackendModelId',
|
|
6881
|
+
backendType: 'BackendType',
|
|
6166
6882
|
description: 'Description',
|
|
6167
6883
|
securityToken: 'SecurityToken',
|
|
6168
|
-
|
|
6884
|
+
stageName: 'StageName',
|
|
6169
6885
|
};
|
|
6170
6886
|
}
|
|
6171
6887
|
static types() {
|
|
6172
6888
|
return {
|
|
6173
|
-
|
|
6174
|
-
|
|
6889
|
+
backendId: 'string',
|
|
6890
|
+
backendModelData: 'string',
|
|
6891
|
+
backendModelId: 'string',
|
|
6892
|
+
backendType: 'string',
|
|
6175
6893
|
description: 'string',
|
|
6176
6894
|
securityToken: 'string',
|
|
6177
|
-
|
|
6895
|
+
stageName: 'string',
|
|
6178
6896
|
};
|
|
6179
6897
|
}
|
|
6180
6898
|
}
|
|
6181
|
-
exports.
|
|
6182
|
-
class
|
|
6899
|
+
exports.ModifyBackendModelRequest = ModifyBackendModelRequest;
|
|
6900
|
+
class ModifyBackendModelResponseBody extends $tea.Model {
|
|
6183
6901
|
constructor(map) {
|
|
6184
6902
|
super(map);
|
|
6185
6903
|
}
|
|
6186
6904
|
static names() {
|
|
6187
6905
|
return {
|
|
6906
|
+
operationId: 'OperationId',
|
|
6188
6907
|
requestId: 'RequestId',
|
|
6189
6908
|
};
|
|
6190
6909
|
}
|
|
6191
6910
|
static types() {
|
|
6192
6911
|
return {
|
|
6912
|
+
operationId: 'string',
|
|
6193
6913
|
requestId: 'string',
|
|
6194
6914
|
};
|
|
6195
6915
|
}
|
|
6196
6916
|
}
|
|
6197
|
-
exports.
|
|
6198
|
-
class
|
|
6917
|
+
exports.ModifyBackendModelResponseBody = ModifyBackendModelResponseBody;
|
|
6918
|
+
class ModifyBackendModelResponse extends $tea.Model {
|
|
6199
6919
|
constructor(map) {
|
|
6200
6920
|
super(map);
|
|
6201
6921
|
}
|
|
@@ -6208,11 +6928,11 @@ class ModifyAppResponse extends $tea.Model {
|
|
|
6208
6928
|
static types() {
|
|
6209
6929
|
return {
|
|
6210
6930
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6211
|
-
body:
|
|
6931
|
+
body: ModifyBackendModelResponseBody,
|
|
6212
6932
|
};
|
|
6213
6933
|
}
|
|
6214
6934
|
}
|
|
6215
|
-
exports.
|
|
6935
|
+
exports.ModifyBackendModelResponse = ModifyBackendModelResponse;
|
|
6216
6936
|
class ModifyInstanceSpecRequest extends $tea.Model {
|
|
6217
6937
|
constructor(map) {
|
|
6218
6938
|
super(map);
|
|
@@ -8461,6 +9181,26 @@ class DescribeAbolishApiTaskResponseBodyApiAbolishResults extends $tea.Model {
|
|
|
8461
9181
|
}
|
|
8462
9182
|
}
|
|
8463
9183
|
exports.DescribeAbolishApiTaskResponseBodyApiAbolishResults = DescribeAbolishApiTaskResponseBodyApiAbolishResults;
|
|
9184
|
+
class DescribeApiResponseBodyBackendConfig extends $tea.Model {
|
|
9185
|
+
constructor(map) {
|
|
9186
|
+
super(map);
|
|
9187
|
+
}
|
|
9188
|
+
static names() {
|
|
9189
|
+
return {
|
|
9190
|
+
backendId: 'BackendId',
|
|
9191
|
+
backendName: 'BackendName',
|
|
9192
|
+
backendType: 'BackendType',
|
|
9193
|
+
};
|
|
9194
|
+
}
|
|
9195
|
+
static types() {
|
|
9196
|
+
return {
|
|
9197
|
+
backendId: 'string',
|
|
9198
|
+
backendName: 'string',
|
|
9199
|
+
backendType: 'string',
|
|
9200
|
+
};
|
|
9201
|
+
}
|
|
9202
|
+
}
|
|
9203
|
+
exports.DescribeApiResponseBodyBackendConfig = DescribeApiResponseBodyBackendConfig;
|
|
8464
9204
|
class DescribeApiResponseBodyConstantParametersConstantParameter extends $tea.Model {
|
|
8465
9205
|
constructor(map) {
|
|
8466
9206
|
super(map);
|
|
@@ -9487,6 +10227,26 @@ class DescribeApiHistoriesResponseBodyApiHisItems extends $tea.Model {
|
|
|
9487
10227
|
}
|
|
9488
10228
|
}
|
|
9489
10229
|
exports.DescribeApiHistoriesResponseBodyApiHisItems = DescribeApiHistoriesResponseBodyApiHisItems;
|
|
10230
|
+
class DescribeApiHistoryResponseBodyBackendConfig extends $tea.Model {
|
|
10231
|
+
constructor(map) {
|
|
10232
|
+
super(map);
|
|
10233
|
+
}
|
|
10234
|
+
static names() {
|
|
10235
|
+
return {
|
|
10236
|
+
backendId: 'BackendId',
|
|
10237
|
+
backendName: 'BackendName',
|
|
10238
|
+
backendType: 'BackendType',
|
|
10239
|
+
};
|
|
10240
|
+
}
|
|
10241
|
+
static types() {
|
|
10242
|
+
return {
|
|
10243
|
+
backendId: 'string',
|
|
10244
|
+
backendName: 'string',
|
|
10245
|
+
backendType: 'string',
|
|
10246
|
+
};
|
|
10247
|
+
}
|
|
10248
|
+
}
|
|
10249
|
+
exports.DescribeApiHistoryResponseBodyBackendConfig = DescribeApiHistoryResponseBodyBackendConfig;
|
|
9490
10250
|
class DescribeApiHistoryResponseBodyConstantParametersConstantParameter extends $tea.Model {
|
|
9491
10251
|
constructor(map) {
|
|
9492
10252
|
super(map);
|
|
@@ -10447,6 +11207,50 @@ class DescribeApisByAppResponseBodyAppApiRelationInfos extends $tea.Model {
|
|
|
10447
11207
|
}
|
|
10448
11208
|
}
|
|
10449
11209
|
exports.DescribeApisByAppResponseBodyAppApiRelationInfos = DescribeApisByAppResponseBodyAppApiRelationInfos;
|
|
11210
|
+
class DescribeApisByBackendResponseBodyApiInfoListApiInfo extends $tea.Model {
|
|
11211
|
+
constructor(map) {
|
|
11212
|
+
super(map);
|
|
11213
|
+
}
|
|
11214
|
+
static names() {
|
|
11215
|
+
return {
|
|
11216
|
+
apiId: 'ApiId',
|
|
11217
|
+
apiName: 'ApiName',
|
|
11218
|
+
description: 'Description',
|
|
11219
|
+
groupId: 'GroupId',
|
|
11220
|
+
groupName: 'GroupName',
|
|
11221
|
+
method: 'Method',
|
|
11222
|
+
path: 'Path',
|
|
11223
|
+
};
|
|
11224
|
+
}
|
|
11225
|
+
static types() {
|
|
11226
|
+
return {
|
|
11227
|
+
apiId: 'string',
|
|
11228
|
+
apiName: 'string',
|
|
11229
|
+
description: 'string',
|
|
11230
|
+
groupId: 'string',
|
|
11231
|
+
groupName: 'string',
|
|
11232
|
+
method: 'string',
|
|
11233
|
+
path: 'string',
|
|
11234
|
+
};
|
|
11235
|
+
}
|
|
11236
|
+
}
|
|
11237
|
+
exports.DescribeApisByBackendResponseBodyApiInfoListApiInfo = DescribeApisByBackendResponseBodyApiInfoListApiInfo;
|
|
11238
|
+
class DescribeApisByBackendResponseBodyApiInfoList extends $tea.Model {
|
|
11239
|
+
constructor(map) {
|
|
11240
|
+
super(map);
|
|
11241
|
+
}
|
|
11242
|
+
static names() {
|
|
11243
|
+
return {
|
|
11244
|
+
apiInfo: 'ApiInfo',
|
|
11245
|
+
};
|
|
11246
|
+
}
|
|
11247
|
+
static types() {
|
|
11248
|
+
return {
|
|
11249
|
+
apiInfo: { 'type': 'array', 'itemType': DescribeApisByBackendResponseBodyApiInfoListApiInfo },
|
|
11250
|
+
};
|
|
11251
|
+
}
|
|
11252
|
+
}
|
|
11253
|
+
exports.DescribeApisByBackendResponseBodyApiInfoList = DescribeApisByBackendResponseBodyApiInfoList;
|
|
10450
11254
|
class DescribeApisByIpControlResponseBodyApiInfosApiInfo extends $tea.Model {
|
|
10451
11255
|
constructor(map) {
|
|
10452
11256
|
super(map);
|
|
@@ -10716,127 +11520,307 @@ class DescribeAppsResponseBodyAppsAppItem extends $tea.Model {
|
|
|
10716
11520
|
}
|
|
10717
11521
|
static types() {
|
|
10718
11522
|
return {
|
|
10719
|
-
appId: 'number',
|
|
10720
|
-
appName: 'string',
|
|
10721
|
-
description: 'string',
|
|
11523
|
+
appId: 'number',
|
|
11524
|
+
appName: 'string',
|
|
11525
|
+
description: 'string',
|
|
11526
|
+
};
|
|
11527
|
+
}
|
|
11528
|
+
}
|
|
11529
|
+
exports.DescribeAppsResponseBodyAppsAppItem = DescribeAppsResponseBodyAppsAppItem;
|
|
11530
|
+
class DescribeAppsResponseBodyApps extends $tea.Model {
|
|
11531
|
+
constructor(map) {
|
|
11532
|
+
super(map);
|
|
11533
|
+
}
|
|
11534
|
+
static names() {
|
|
11535
|
+
return {
|
|
11536
|
+
appItem: 'AppItem',
|
|
11537
|
+
};
|
|
11538
|
+
}
|
|
11539
|
+
static types() {
|
|
11540
|
+
return {
|
|
11541
|
+
appItem: { 'type': 'array', 'itemType': DescribeAppsResponseBodyAppsAppItem },
|
|
11542
|
+
};
|
|
11543
|
+
}
|
|
11544
|
+
}
|
|
11545
|
+
exports.DescribeAppsResponseBodyApps = DescribeAppsResponseBodyApps;
|
|
11546
|
+
class DescribeAuthorizedApisResponseBodyAuthorizedApisAuthorizedApi extends $tea.Model {
|
|
11547
|
+
constructor(map) {
|
|
11548
|
+
super(map);
|
|
11549
|
+
}
|
|
11550
|
+
static names() {
|
|
11551
|
+
return {
|
|
11552
|
+
apiId: 'ApiId',
|
|
11553
|
+
apiName: 'ApiName',
|
|
11554
|
+
authVaildTime: 'AuthVaildTime',
|
|
11555
|
+
authorizationSource: 'AuthorizationSource',
|
|
11556
|
+
authorizedTime: 'AuthorizedTime',
|
|
11557
|
+
description: 'Description',
|
|
11558
|
+
groupId: 'GroupId',
|
|
11559
|
+
groupName: 'GroupName',
|
|
11560
|
+
operator: 'Operator',
|
|
11561
|
+
regionId: 'RegionId',
|
|
11562
|
+
stageName: 'StageName',
|
|
11563
|
+
};
|
|
11564
|
+
}
|
|
11565
|
+
static types() {
|
|
11566
|
+
return {
|
|
11567
|
+
apiId: 'string',
|
|
11568
|
+
apiName: 'string',
|
|
11569
|
+
authVaildTime: 'string',
|
|
11570
|
+
authorizationSource: 'string',
|
|
11571
|
+
authorizedTime: 'string',
|
|
11572
|
+
description: 'string',
|
|
11573
|
+
groupId: 'string',
|
|
11574
|
+
groupName: 'string',
|
|
11575
|
+
operator: 'string',
|
|
11576
|
+
regionId: 'string',
|
|
11577
|
+
stageName: 'string',
|
|
11578
|
+
};
|
|
11579
|
+
}
|
|
11580
|
+
}
|
|
11581
|
+
exports.DescribeAuthorizedApisResponseBodyAuthorizedApisAuthorizedApi = DescribeAuthorizedApisResponseBodyAuthorizedApisAuthorizedApi;
|
|
11582
|
+
class DescribeAuthorizedApisResponseBodyAuthorizedApis extends $tea.Model {
|
|
11583
|
+
constructor(map) {
|
|
11584
|
+
super(map);
|
|
11585
|
+
}
|
|
11586
|
+
static names() {
|
|
11587
|
+
return {
|
|
11588
|
+
authorizedApi: 'AuthorizedApi',
|
|
11589
|
+
};
|
|
11590
|
+
}
|
|
11591
|
+
static types() {
|
|
11592
|
+
return {
|
|
11593
|
+
authorizedApi: { 'type': 'array', 'itemType': DescribeAuthorizedApisResponseBodyAuthorizedApisAuthorizedApi },
|
|
11594
|
+
};
|
|
11595
|
+
}
|
|
11596
|
+
}
|
|
11597
|
+
exports.DescribeAuthorizedApisResponseBodyAuthorizedApis = DescribeAuthorizedApisResponseBodyAuthorizedApis;
|
|
11598
|
+
class DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedApp extends $tea.Model {
|
|
11599
|
+
constructor(map) {
|
|
11600
|
+
super(map);
|
|
11601
|
+
}
|
|
11602
|
+
static names() {
|
|
11603
|
+
return {
|
|
11604
|
+
appId: 'AppId',
|
|
11605
|
+
appName: 'AppName',
|
|
11606
|
+
authVaildTime: 'AuthVaildTime',
|
|
11607
|
+
authorizationSource: 'AuthorizationSource',
|
|
11608
|
+
authorizedTime: 'AuthorizedTime',
|
|
11609
|
+
description: 'Description',
|
|
11610
|
+
operator: 'Operator',
|
|
11611
|
+
stageName: 'StageName',
|
|
11612
|
+
};
|
|
11613
|
+
}
|
|
11614
|
+
static types() {
|
|
11615
|
+
return {
|
|
11616
|
+
appId: 'number',
|
|
11617
|
+
appName: 'string',
|
|
11618
|
+
authVaildTime: 'string',
|
|
11619
|
+
authorizationSource: 'string',
|
|
11620
|
+
authorizedTime: 'string',
|
|
11621
|
+
description: 'string',
|
|
11622
|
+
operator: 'string',
|
|
11623
|
+
stageName: 'string',
|
|
11624
|
+
};
|
|
11625
|
+
}
|
|
11626
|
+
}
|
|
11627
|
+
exports.DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedApp = DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedApp;
|
|
11628
|
+
class DescribeAuthorizedAppsResponseBodyAuthorizedApps extends $tea.Model {
|
|
11629
|
+
constructor(map) {
|
|
11630
|
+
super(map);
|
|
11631
|
+
}
|
|
11632
|
+
static names() {
|
|
11633
|
+
return {
|
|
11634
|
+
authorizedApp: 'AuthorizedApp',
|
|
11635
|
+
};
|
|
11636
|
+
}
|
|
11637
|
+
static types() {
|
|
11638
|
+
return {
|
|
11639
|
+
authorizedApp: { 'type': 'array', 'itemType': DescribeAuthorizedAppsResponseBodyAuthorizedAppsAuthorizedApp },
|
|
11640
|
+
};
|
|
11641
|
+
}
|
|
11642
|
+
}
|
|
11643
|
+
exports.DescribeAuthorizedAppsResponseBodyAuthorizedApps = DescribeAuthorizedAppsResponseBodyAuthorizedApps;
|
|
11644
|
+
class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigFunctionComputeConfig extends $tea.Model {
|
|
11645
|
+
constructor(map) {
|
|
11646
|
+
super(map);
|
|
11647
|
+
}
|
|
11648
|
+
static names() {
|
|
11649
|
+
return {
|
|
11650
|
+
fcBaseUrl: 'FcBaseUrl',
|
|
11651
|
+
fcRegionId: 'FcRegionId',
|
|
11652
|
+
fcType: 'FcType',
|
|
11653
|
+
functionName: 'FunctionName',
|
|
11654
|
+
onlyBusinessPath: 'OnlyBusinessPath',
|
|
11655
|
+
qualifier: 'Qualifier',
|
|
11656
|
+
roleArn: 'RoleArn',
|
|
11657
|
+
serviceName: 'ServiceName',
|
|
11658
|
+
};
|
|
11659
|
+
}
|
|
11660
|
+
static types() {
|
|
11661
|
+
return {
|
|
11662
|
+
fcBaseUrl: 'string',
|
|
11663
|
+
fcRegionId: 'string',
|
|
11664
|
+
fcType: 'string',
|
|
11665
|
+
functionName: 'string',
|
|
11666
|
+
onlyBusinessPath: 'boolean',
|
|
11667
|
+
qualifier: 'string',
|
|
11668
|
+
roleArn: 'string',
|
|
11669
|
+
serviceName: 'string',
|
|
11670
|
+
};
|
|
11671
|
+
}
|
|
11672
|
+
}
|
|
11673
|
+
exports.DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigFunctionComputeConfig = DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigFunctionComputeConfig;
|
|
11674
|
+
class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigOssConfig extends $tea.Model {
|
|
11675
|
+
constructor(map) {
|
|
11676
|
+
super(map);
|
|
11677
|
+
}
|
|
11678
|
+
static names() {
|
|
11679
|
+
return {
|
|
11680
|
+
bucketName: 'BucketName',
|
|
11681
|
+
ossRegionId: 'OssRegionId',
|
|
11682
|
+
};
|
|
11683
|
+
}
|
|
11684
|
+
static types() {
|
|
11685
|
+
return {
|
|
11686
|
+
bucketName: 'string',
|
|
11687
|
+
ossRegionId: 'string',
|
|
10722
11688
|
};
|
|
10723
11689
|
}
|
|
10724
11690
|
}
|
|
10725
|
-
exports.
|
|
10726
|
-
class
|
|
11691
|
+
exports.DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigOssConfig = DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigOssConfig;
|
|
11692
|
+
class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigVpcConfig extends $tea.Model {
|
|
10727
11693
|
constructor(map) {
|
|
10728
11694
|
super(map);
|
|
10729
11695
|
}
|
|
10730
11696
|
static names() {
|
|
10731
11697
|
return {
|
|
10732
|
-
|
|
11698
|
+
instanceId: 'InstanceId',
|
|
11699
|
+
name: 'Name',
|
|
11700
|
+
port: 'Port',
|
|
11701
|
+
vpcAccessId: 'VpcAccessId',
|
|
11702
|
+
vpcId: 'VpcId',
|
|
11703
|
+
vpcScheme: 'VpcScheme',
|
|
10733
11704
|
};
|
|
10734
11705
|
}
|
|
10735
11706
|
static types() {
|
|
10736
11707
|
return {
|
|
10737
|
-
|
|
11708
|
+
instanceId: 'string',
|
|
11709
|
+
name: 'string',
|
|
11710
|
+
port: 'number',
|
|
11711
|
+
vpcAccessId: 'string',
|
|
11712
|
+
vpcId: 'string',
|
|
11713
|
+
vpcScheme: 'string',
|
|
10738
11714
|
};
|
|
10739
11715
|
}
|
|
10740
11716
|
}
|
|
10741
|
-
exports.
|
|
10742
|
-
class
|
|
11717
|
+
exports.DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigVpcConfig = DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigVpcConfig;
|
|
11718
|
+
class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfig extends $tea.Model {
|
|
10743
11719
|
constructor(map) {
|
|
10744
11720
|
super(map);
|
|
10745
11721
|
}
|
|
10746
11722
|
static names() {
|
|
10747
11723
|
return {
|
|
10748
|
-
|
|
10749
|
-
|
|
10750
|
-
|
|
10751
|
-
|
|
10752
|
-
|
|
10753
|
-
description: 'Description',
|
|
10754
|
-
groupId: 'GroupId',
|
|
10755
|
-
groupName: 'GroupName',
|
|
10756
|
-
operator: 'Operator',
|
|
10757
|
-
regionId: 'RegionId',
|
|
10758
|
-
stageName: 'StageName',
|
|
11724
|
+
functionComputeConfig: 'FunctionComputeConfig',
|
|
11725
|
+
ossConfig: 'OssConfig',
|
|
11726
|
+
serviceAddress: 'ServiceAddress',
|
|
11727
|
+
type: 'Type',
|
|
11728
|
+
vpcConfig: 'VpcConfig',
|
|
10759
11729
|
};
|
|
10760
11730
|
}
|
|
10761
11731
|
static types() {
|
|
10762
11732
|
return {
|
|
10763
|
-
|
|
10764
|
-
|
|
10765
|
-
|
|
10766
|
-
|
|
10767
|
-
|
|
10768
|
-
description: 'string',
|
|
10769
|
-
groupId: 'string',
|
|
10770
|
-
groupName: 'string',
|
|
10771
|
-
operator: 'string',
|
|
10772
|
-
regionId: 'string',
|
|
10773
|
-
stageName: 'string',
|
|
11733
|
+
functionComputeConfig: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigFunctionComputeConfig,
|
|
11734
|
+
ossConfig: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigOssConfig,
|
|
11735
|
+
serviceAddress: 'string',
|
|
11736
|
+
type: 'string',
|
|
11737
|
+
vpcConfig: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigVpcConfig,
|
|
10774
11738
|
};
|
|
10775
11739
|
}
|
|
10776
11740
|
}
|
|
10777
|
-
exports.
|
|
10778
|
-
class
|
|
11741
|
+
exports.DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfig = DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfig;
|
|
11742
|
+
class DescribeBackendInfoResponseBodyBackendInfoBackendModels extends $tea.Model {
|
|
10779
11743
|
constructor(map) {
|
|
10780
11744
|
super(map);
|
|
10781
11745
|
}
|
|
10782
11746
|
static names() {
|
|
10783
11747
|
return {
|
|
10784
|
-
|
|
11748
|
+
backendConfig: 'BackendConfig',
|
|
11749
|
+
backendModelId: 'BackendModelId',
|
|
11750
|
+
description: 'Description',
|
|
11751
|
+
gmtCreate: 'GmtCreate',
|
|
11752
|
+
gmtModified: 'GmtModified',
|
|
11753
|
+
stageModeId: 'StageModeId',
|
|
11754
|
+
stageName: 'StageName',
|
|
10785
11755
|
};
|
|
10786
11756
|
}
|
|
10787
11757
|
static types() {
|
|
10788
11758
|
return {
|
|
10789
|
-
|
|
11759
|
+
backendConfig: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfig,
|
|
11760
|
+
backendModelId: 'string',
|
|
11761
|
+
description: 'string',
|
|
11762
|
+
gmtCreate: 'string',
|
|
11763
|
+
gmtModified: 'string',
|
|
11764
|
+
stageModeId: 'string',
|
|
11765
|
+
stageName: 'string',
|
|
10790
11766
|
};
|
|
10791
11767
|
}
|
|
10792
11768
|
}
|
|
10793
|
-
exports.
|
|
10794
|
-
class
|
|
11769
|
+
exports.DescribeBackendInfoResponseBodyBackendInfoBackendModels = DescribeBackendInfoResponseBodyBackendInfoBackendModels;
|
|
11770
|
+
class DescribeBackendInfoResponseBodyBackendInfo extends $tea.Model {
|
|
10795
11771
|
constructor(map) {
|
|
10796
11772
|
super(map);
|
|
10797
11773
|
}
|
|
10798
11774
|
static names() {
|
|
10799
11775
|
return {
|
|
10800
|
-
|
|
10801
|
-
|
|
10802
|
-
|
|
10803
|
-
|
|
10804
|
-
|
|
11776
|
+
backendId: 'BackendId',
|
|
11777
|
+
backendModels: 'BackendModels',
|
|
11778
|
+
backendName: 'BackendName',
|
|
11779
|
+
backendType: 'BackendType',
|
|
11780
|
+
createdTime: 'CreatedTime',
|
|
10805
11781
|
description: 'Description',
|
|
10806
|
-
|
|
10807
|
-
stageName: 'StageName',
|
|
11782
|
+
modifiedTime: 'ModifiedTime',
|
|
10808
11783
|
};
|
|
10809
11784
|
}
|
|
10810
11785
|
static types() {
|
|
10811
11786
|
return {
|
|
10812
|
-
|
|
10813
|
-
|
|
10814
|
-
|
|
10815
|
-
|
|
10816
|
-
|
|
11787
|
+
backendId: 'string',
|
|
11788
|
+
backendModels: { 'type': 'array', 'itemType': DescribeBackendInfoResponseBodyBackendInfoBackendModels },
|
|
11789
|
+
backendName: 'string',
|
|
11790
|
+
backendType: 'string',
|
|
11791
|
+
createdTime: 'string',
|
|
10817
11792
|
description: 'string',
|
|
10818
|
-
|
|
10819
|
-
stageName: 'string',
|
|
11793
|
+
modifiedTime: 'string',
|
|
10820
11794
|
};
|
|
10821
11795
|
}
|
|
10822
11796
|
}
|
|
10823
|
-
exports.
|
|
10824
|
-
class
|
|
11797
|
+
exports.DescribeBackendInfoResponseBodyBackendInfo = DescribeBackendInfoResponseBodyBackendInfo;
|
|
11798
|
+
class DescribeBackendListResponseBodyBackendInfoList extends $tea.Model {
|
|
10825
11799
|
constructor(map) {
|
|
10826
11800
|
super(map);
|
|
10827
11801
|
}
|
|
10828
11802
|
static names() {
|
|
10829
11803
|
return {
|
|
10830
|
-
|
|
11804
|
+
backendId: 'BackendId',
|
|
11805
|
+
backendName: 'BackendName',
|
|
11806
|
+
backendType: 'BackendType',
|
|
11807
|
+
createdTime: 'CreatedTime',
|
|
11808
|
+
description: 'Description',
|
|
11809
|
+
modifiedTime: 'ModifiedTime',
|
|
10831
11810
|
};
|
|
10832
11811
|
}
|
|
10833
11812
|
static types() {
|
|
10834
11813
|
return {
|
|
10835
|
-
|
|
11814
|
+
backendId: 'string',
|
|
11815
|
+
backendName: 'string',
|
|
11816
|
+
backendType: 'string',
|
|
11817
|
+
createdTime: 'string',
|
|
11818
|
+
description: 'string',
|
|
11819
|
+
modifiedTime: 'string',
|
|
10836
11820
|
};
|
|
10837
11821
|
}
|
|
10838
11822
|
}
|
|
10839
|
-
exports.
|
|
11823
|
+
exports.DescribeBackendListResponseBodyBackendInfoList = DescribeBackendListResponseBodyBackendInfoList;
|
|
10840
11824
|
class DescribeDeployApiTaskResponseBodyDeployedResultsDeployedResult extends $tea.Model {
|
|
10841
11825
|
constructor(map) {
|
|
10842
11826
|
super(map);
|
|
@@ -12347,6 +13331,54 @@ class DescribeTrafficControlsByApiResponseBodyTrafficControlItems extends $tea.M
|
|
|
12347
13331
|
}
|
|
12348
13332
|
}
|
|
12349
13333
|
exports.DescribeTrafficControlsByApiResponseBodyTrafficControlItems = DescribeTrafficControlsByApiResponseBodyTrafficControlItems;
|
|
13334
|
+
class DescribeUpdateBackendTaskResponseBodyApiUpdateBackendResultsApiUpdateBackendResult extends $tea.Model {
|
|
13335
|
+
constructor(map) {
|
|
13336
|
+
super(map);
|
|
13337
|
+
}
|
|
13338
|
+
static names() {
|
|
13339
|
+
return {
|
|
13340
|
+
apiName: 'ApiName',
|
|
13341
|
+
apiUid: 'ApiUid',
|
|
13342
|
+
backendId: 'BackendId',
|
|
13343
|
+
errorMsg: 'ErrorMsg',
|
|
13344
|
+
groupId: 'GroupId',
|
|
13345
|
+
groupName: 'GroupName',
|
|
13346
|
+
stageId: 'StageId',
|
|
13347
|
+
stageName: 'StageName',
|
|
13348
|
+
updateStatus: 'UpdateStatus',
|
|
13349
|
+
};
|
|
13350
|
+
}
|
|
13351
|
+
static types() {
|
|
13352
|
+
return {
|
|
13353
|
+
apiName: 'string',
|
|
13354
|
+
apiUid: 'string',
|
|
13355
|
+
backendId: 'string',
|
|
13356
|
+
errorMsg: 'string',
|
|
13357
|
+
groupId: 'string',
|
|
13358
|
+
groupName: 'string',
|
|
13359
|
+
stageId: 'string',
|
|
13360
|
+
stageName: 'string',
|
|
13361
|
+
updateStatus: 'string',
|
|
13362
|
+
};
|
|
13363
|
+
}
|
|
13364
|
+
}
|
|
13365
|
+
exports.DescribeUpdateBackendTaskResponseBodyApiUpdateBackendResultsApiUpdateBackendResult = DescribeUpdateBackendTaskResponseBodyApiUpdateBackendResultsApiUpdateBackendResult;
|
|
13366
|
+
class DescribeUpdateBackendTaskResponseBodyApiUpdateBackendResults extends $tea.Model {
|
|
13367
|
+
constructor(map) {
|
|
13368
|
+
super(map);
|
|
13369
|
+
}
|
|
13370
|
+
static names() {
|
|
13371
|
+
return {
|
|
13372
|
+
apiUpdateBackendResult: 'ApiUpdateBackendResult',
|
|
13373
|
+
};
|
|
13374
|
+
}
|
|
13375
|
+
static types() {
|
|
13376
|
+
return {
|
|
13377
|
+
apiUpdateBackendResult: { 'type': 'array', 'itemType': DescribeUpdateBackendTaskResponseBodyApiUpdateBackendResultsApiUpdateBackendResult },
|
|
13378
|
+
};
|
|
13379
|
+
}
|
|
13380
|
+
}
|
|
13381
|
+
exports.DescribeUpdateBackendTaskResponseBodyApiUpdateBackendResults = DescribeUpdateBackendTaskResponseBodyApiUpdateBackendResults;
|
|
12350
13382
|
class DescribeUpdateVpcInfoTaskResponseBodyApiUpdateVpcInfoResultsApiUpdateVpcInfoResult extends $tea.Model {
|
|
12351
13383
|
constructor(map) {
|
|
12352
13384
|
super(map);
|
|
@@ -13205,6 +14237,12 @@ class Client extends openapi_client_1.default {
|
|
|
13205
14237
|
if (!tea_util_1.default.isUnset(request.authType)) {
|
|
13206
14238
|
query["AuthType"] = request.authType;
|
|
13207
14239
|
}
|
|
14240
|
+
if (!tea_util_1.default.isUnset(request.backendEnable)) {
|
|
14241
|
+
query["BackendEnable"] = request.backendEnable;
|
|
14242
|
+
}
|
|
14243
|
+
if (!tea_util_1.default.isUnset(request.backendId)) {
|
|
14244
|
+
query["BackendId"] = request.backendId;
|
|
14245
|
+
}
|
|
13208
14246
|
if (!tea_util_1.default.isUnset(request.constantParameters)) {
|
|
13209
14247
|
query["ConstantParameters"] = request.constantParameters;
|
|
13210
14248
|
}
|
|
@@ -13411,6 +14449,82 @@ class Client extends openapi_client_1.default {
|
|
|
13411
14449
|
let runtime = new $Util.RuntimeOptions({});
|
|
13412
14450
|
return await this.createAppWithOptions(request, runtime);
|
|
13413
14451
|
}
|
|
14452
|
+
async createBackendWithOptions(request, runtime) {
|
|
14453
|
+
tea_util_1.default.validateModel(request);
|
|
14454
|
+
let query = {};
|
|
14455
|
+
if (!tea_util_1.default.isUnset(request.backendName)) {
|
|
14456
|
+
query["BackendName"] = request.backendName;
|
|
14457
|
+
}
|
|
14458
|
+
if (!tea_util_1.default.isUnset(request.backendType)) {
|
|
14459
|
+
query["BackendType"] = request.backendType;
|
|
14460
|
+
}
|
|
14461
|
+
if (!tea_util_1.default.isUnset(request.description)) {
|
|
14462
|
+
query["Description"] = request.description;
|
|
14463
|
+
}
|
|
14464
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
14465
|
+
query["SecurityToken"] = request.securityToken;
|
|
14466
|
+
}
|
|
14467
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
14468
|
+
query: openapi_util_1.default.query(query),
|
|
14469
|
+
});
|
|
14470
|
+
let params = new $OpenApi.Params({
|
|
14471
|
+
action: "CreateBackend",
|
|
14472
|
+
version: "2016-07-14",
|
|
14473
|
+
protocol: "HTTPS",
|
|
14474
|
+
pathname: "/",
|
|
14475
|
+
method: "POST",
|
|
14476
|
+
authType: "AK",
|
|
14477
|
+
style: "RPC",
|
|
14478
|
+
reqBodyType: "formData",
|
|
14479
|
+
bodyType: "json",
|
|
14480
|
+
});
|
|
14481
|
+
return $tea.cast(await this.callApi(params, req, runtime), new CreateBackendResponse({}));
|
|
14482
|
+
}
|
|
14483
|
+
async createBackend(request) {
|
|
14484
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
14485
|
+
return await this.createBackendWithOptions(request, runtime);
|
|
14486
|
+
}
|
|
14487
|
+
async createBackendModelWithOptions(request, runtime) {
|
|
14488
|
+
tea_util_1.default.validateModel(request);
|
|
14489
|
+
let query = {};
|
|
14490
|
+
if (!tea_util_1.default.isUnset(request.backendId)) {
|
|
14491
|
+
query["BackendId"] = request.backendId;
|
|
14492
|
+
}
|
|
14493
|
+
if (!tea_util_1.default.isUnset(request.backendModelData)) {
|
|
14494
|
+
query["BackendModelData"] = request.backendModelData;
|
|
14495
|
+
}
|
|
14496
|
+
if (!tea_util_1.default.isUnset(request.backendType)) {
|
|
14497
|
+
query["BackendType"] = request.backendType;
|
|
14498
|
+
}
|
|
14499
|
+
if (!tea_util_1.default.isUnset(request.description)) {
|
|
14500
|
+
query["Description"] = request.description;
|
|
14501
|
+
}
|
|
14502
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
14503
|
+
query["SecurityToken"] = request.securityToken;
|
|
14504
|
+
}
|
|
14505
|
+
if (!tea_util_1.default.isUnset(request.stageName)) {
|
|
14506
|
+
query["StageName"] = request.stageName;
|
|
14507
|
+
}
|
|
14508
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
14509
|
+
query: openapi_util_1.default.query(query),
|
|
14510
|
+
});
|
|
14511
|
+
let params = new $OpenApi.Params({
|
|
14512
|
+
action: "CreateBackendModel",
|
|
14513
|
+
version: "2016-07-14",
|
|
14514
|
+
protocol: "HTTPS",
|
|
14515
|
+
pathname: "/",
|
|
14516
|
+
method: "POST",
|
|
14517
|
+
authType: "AK",
|
|
14518
|
+
style: "RPC",
|
|
14519
|
+
reqBodyType: "formData",
|
|
14520
|
+
bodyType: "json",
|
|
14521
|
+
});
|
|
14522
|
+
return $tea.cast(await this.callApi(params, req, runtime), new CreateBackendModelResponse({}));
|
|
14523
|
+
}
|
|
14524
|
+
async createBackendModel(request) {
|
|
14525
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
14526
|
+
return await this.createBackendModelWithOptions(request, runtime);
|
|
14527
|
+
}
|
|
13414
14528
|
async createInstanceWithOptions(request, runtime) {
|
|
13415
14529
|
tea_util_1.default.validateModel(request);
|
|
13416
14530
|
let query = {};
|
|
@@ -13842,30 +14956,91 @@ class Client extends openapi_client_1.default {
|
|
|
13842
14956
|
});
|
|
13843
14957
|
return $tea.cast(await this.callApi(params, req, runtime), new DeleteApiGroupResponse({}));
|
|
13844
14958
|
}
|
|
13845
|
-
async deleteApiGroup(request) {
|
|
14959
|
+
async deleteApiGroup(request) {
|
|
14960
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
14961
|
+
return await this.deleteApiGroupWithOptions(request, runtime);
|
|
14962
|
+
}
|
|
14963
|
+
async deleteApiStageVariableWithOptions(request, runtime) {
|
|
14964
|
+
tea_util_1.default.validateModel(request);
|
|
14965
|
+
let query = {};
|
|
14966
|
+
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
14967
|
+
query["GroupId"] = request.groupId;
|
|
14968
|
+
}
|
|
14969
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
14970
|
+
query["SecurityToken"] = request.securityToken;
|
|
14971
|
+
}
|
|
14972
|
+
if (!tea_util_1.default.isUnset(request.stageId)) {
|
|
14973
|
+
query["StageId"] = request.stageId;
|
|
14974
|
+
}
|
|
14975
|
+
if (!tea_util_1.default.isUnset(request.variableName)) {
|
|
14976
|
+
query["VariableName"] = request.variableName;
|
|
14977
|
+
}
|
|
14978
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
14979
|
+
query: openapi_util_1.default.query(query),
|
|
14980
|
+
});
|
|
14981
|
+
let params = new $OpenApi.Params({
|
|
14982
|
+
action: "DeleteApiStageVariable",
|
|
14983
|
+
version: "2016-07-14",
|
|
14984
|
+
protocol: "HTTPS",
|
|
14985
|
+
pathname: "/",
|
|
14986
|
+
method: "POST",
|
|
14987
|
+
authType: "AK",
|
|
14988
|
+
style: "RPC",
|
|
14989
|
+
reqBodyType: "formData",
|
|
14990
|
+
bodyType: "json",
|
|
14991
|
+
});
|
|
14992
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DeleteApiStageVariableResponse({}));
|
|
14993
|
+
}
|
|
14994
|
+
async deleteApiStageVariable(request) {
|
|
14995
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
14996
|
+
return await this.deleteApiStageVariableWithOptions(request, runtime);
|
|
14997
|
+
}
|
|
14998
|
+
async deleteAppWithOptions(request, runtime) {
|
|
14999
|
+
tea_util_1.default.validateModel(request);
|
|
15000
|
+
let query = {};
|
|
15001
|
+
if (!tea_util_1.default.isUnset(request.appId)) {
|
|
15002
|
+
query["AppId"] = request.appId;
|
|
15003
|
+
}
|
|
15004
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
15005
|
+
query["SecurityToken"] = request.securityToken;
|
|
15006
|
+
}
|
|
15007
|
+
if (!tea_util_1.default.isUnset(request.tag)) {
|
|
15008
|
+
query["Tag"] = request.tag;
|
|
15009
|
+
}
|
|
15010
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
15011
|
+
query: openapi_util_1.default.query(query),
|
|
15012
|
+
});
|
|
15013
|
+
let params = new $OpenApi.Params({
|
|
15014
|
+
action: "DeleteApp",
|
|
15015
|
+
version: "2016-07-14",
|
|
15016
|
+
protocol: "HTTPS",
|
|
15017
|
+
pathname: "/",
|
|
15018
|
+
method: "POST",
|
|
15019
|
+
authType: "AK",
|
|
15020
|
+
style: "RPC",
|
|
15021
|
+
reqBodyType: "formData",
|
|
15022
|
+
bodyType: "json",
|
|
15023
|
+
});
|
|
15024
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DeleteAppResponse({}));
|
|
15025
|
+
}
|
|
15026
|
+
async deleteApp(request) {
|
|
13846
15027
|
let runtime = new $Util.RuntimeOptions({});
|
|
13847
|
-
return await this.
|
|
15028
|
+
return await this.deleteAppWithOptions(request, runtime);
|
|
13848
15029
|
}
|
|
13849
|
-
async
|
|
15030
|
+
async deleteBackendWithOptions(request, runtime) {
|
|
13850
15031
|
tea_util_1.default.validateModel(request);
|
|
13851
15032
|
let query = {};
|
|
13852
|
-
if (!tea_util_1.default.isUnset(request.
|
|
13853
|
-
query["
|
|
15033
|
+
if (!tea_util_1.default.isUnset(request.backendId)) {
|
|
15034
|
+
query["BackendId"] = request.backendId;
|
|
13854
15035
|
}
|
|
13855
15036
|
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
13856
15037
|
query["SecurityToken"] = request.securityToken;
|
|
13857
15038
|
}
|
|
13858
|
-
if (!tea_util_1.default.isUnset(request.stageId)) {
|
|
13859
|
-
query["StageId"] = request.stageId;
|
|
13860
|
-
}
|
|
13861
|
-
if (!tea_util_1.default.isUnset(request.variableName)) {
|
|
13862
|
-
query["VariableName"] = request.variableName;
|
|
13863
|
-
}
|
|
13864
15039
|
let req = new $OpenApi.OpenApiRequest({
|
|
13865
15040
|
query: openapi_util_1.default.query(query),
|
|
13866
15041
|
});
|
|
13867
15042
|
let params = new $OpenApi.Params({
|
|
13868
|
-
action: "
|
|
15043
|
+
action: "DeleteBackend",
|
|
13869
15044
|
version: "2016-07-14",
|
|
13870
15045
|
protocol: "HTTPS",
|
|
13871
15046
|
pathname: "/",
|
|
@@ -13875,29 +15050,32 @@ class Client extends openapi_client_1.default {
|
|
|
13875
15050
|
reqBodyType: "formData",
|
|
13876
15051
|
bodyType: "json",
|
|
13877
15052
|
});
|
|
13878
|
-
return $tea.cast(await this.callApi(params, req, runtime), new
|
|
15053
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DeleteBackendResponse({}));
|
|
13879
15054
|
}
|
|
13880
|
-
async
|
|
15055
|
+
async deleteBackend(request) {
|
|
13881
15056
|
let runtime = new $Util.RuntimeOptions({});
|
|
13882
|
-
return await this.
|
|
15057
|
+
return await this.deleteBackendWithOptions(request, runtime);
|
|
13883
15058
|
}
|
|
13884
|
-
async
|
|
15059
|
+
async deleteBackendModelWithOptions(request, runtime) {
|
|
13885
15060
|
tea_util_1.default.validateModel(request);
|
|
13886
15061
|
let query = {};
|
|
13887
|
-
if (!tea_util_1.default.isUnset(request.
|
|
13888
|
-
query["
|
|
15062
|
+
if (!tea_util_1.default.isUnset(request.backendId)) {
|
|
15063
|
+
query["BackendId"] = request.backendId;
|
|
15064
|
+
}
|
|
15065
|
+
if (!tea_util_1.default.isUnset(request.backendModelId)) {
|
|
15066
|
+
query["BackendModelId"] = request.backendModelId;
|
|
13889
15067
|
}
|
|
13890
15068
|
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
13891
15069
|
query["SecurityToken"] = request.securityToken;
|
|
13892
15070
|
}
|
|
13893
|
-
if (!tea_util_1.default.isUnset(request.
|
|
13894
|
-
query["
|
|
15071
|
+
if (!tea_util_1.default.isUnset(request.stageName)) {
|
|
15072
|
+
query["StageName"] = request.stageName;
|
|
13895
15073
|
}
|
|
13896
15074
|
let req = new $OpenApi.OpenApiRequest({
|
|
13897
15075
|
query: openapi_util_1.default.query(query),
|
|
13898
15076
|
});
|
|
13899
15077
|
let params = new $OpenApi.Params({
|
|
13900
|
-
action: "
|
|
15078
|
+
action: "DeleteBackendModel",
|
|
13901
15079
|
version: "2016-07-14",
|
|
13902
15080
|
protocol: "HTTPS",
|
|
13903
15081
|
pathname: "/",
|
|
@@ -13907,11 +15085,11 @@ class Client extends openapi_client_1.default {
|
|
|
13907
15085
|
reqBodyType: "formData",
|
|
13908
15086
|
bodyType: "json",
|
|
13909
15087
|
});
|
|
13910
|
-
return $tea.cast(await this.callApi(params, req, runtime), new
|
|
15088
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DeleteBackendModelResponse({}));
|
|
13911
15089
|
}
|
|
13912
|
-
async
|
|
15090
|
+
async deleteBackendModel(request) {
|
|
13913
15091
|
let runtime = new $Util.RuntimeOptions({});
|
|
13914
|
-
return await this.
|
|
15092
|
+
return await this.deleteBackendModelWithOptions(request, runtime);
|
|
13915
15093
|
}
|
|
13916
15094
|
async deleteDomainWithOptions(request, runtime) {
|
|
13917
15095
|
tea_util_1.default.validateModel(request);
|
|
@@ -14096,6 +15274,38 @@ class Client extends openapi_client_1.default {
|
|
|
14096
15274
|
let runtime = new $Util.RuntimeOptions({});
|
|
14097
15275
|
return await this.deleteModelWithOptions(request, runtime);
|
|
14098
15276
|
}
|
|
15277
|
+
async deleteMonitorGroupWithOptions(request, runtime) {
|
|
15278
|
+
tea_util_1.default.validateModel(request);
|
|
15279
|
+
let query = {};
|
|
15280
|
+
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
15281
|
+
query["GroupId"] = request.groupId;
|
|
15282
|
+
}
|
|
15283
|
+
if (!tea_util_1.default.isUnset(request.rawMonitorGroupId)) {
|
|
15284
|
+
query["RawMonitorGroupId"] = request.rawMonitorGroupId;
|
|
15285
|
+
}
|
|
15286
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
15287
|
+
query["SecurityToken"] = request.securityToken;
|
|
15288
|
+
}
|
|
15289
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
15290
|
+
query: openapi_util_1.default.query(query),
|
|
15291
|
+
});
|
|
15292
|
+
let params = new $OpenApi.Params({
|
|
15293
|
+
action: "DeleteMonitorGroup",
|
|
15294
|
+
version: "2016-07-14",
|
|
15295
|
+
protocol: "HTTPS",
|
|
15296
|
+
pathname: "/",
|
|
15297
|
+
method: "POST",
|
|
15298
|
+
authType: "AK",
|
|
15299
|
+
style: "RPC",
|
|
15300
|
+
reqBodyType: "formData",
|
|
15301
|
+
bodyType: "json",
|
|
15302
|
+
});
|
|
15303
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DeleteMonitorGroupResponse({}));
|
|
15304
|
+
}
|
|
15305
|
+
async deleteMonitorGroup(request) {
|
|
15306
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
15307
|
+
return await this.deleteMonitorGroupWithOptions(request, runtime);
|
|
15308
|
+
}
|
|
14099
15309
|
async deletePluginWithOptions(request, runtime) {
|
|
14100
15310
|
tea_util_1.default.validateModel(request);
|
|
14101
15311
|
let query = {};
|
|
@@ -14926,6 +16136,44 @@ class Client extends openapi_client_1.default {
|
|
|
14926
16136
|
let runtime = new $Util.RuntimeOptions({});
|
|
14927
16137
|
return await this.describeApisByAppWithOptions(request, runtime);
|
|
14928
16138
|
}
|
|
16139
|
+
async describeApisByBackendWithOptions(request, runtime) {
|
|
16140
|
+
tea_util_1.default.validateModel(request);
|
|
16141
|
+
let query = {};
|
|
16142
|
+
if (!tea_util_1.default.isUnset(request.backendId)) {
|
|
16143
|
+
query["BackendId"] = request.backendId;
|
|
16144
|
+
}
|
|
16145
|
+
if (!tea_util_1.default.isUnset(request.pageNumber)) {
|
|
16146
|
+
query["PageNumber"] = request.pageNumber;
|
|
16147
|
+
}
|
|
16148
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
16149
|
+
query["PageSize"] = request.pageSize;
|
|
16150
|
+
}
|
|
16151
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
16152
|
+
query["SecurityToken"] = request.securityToken;
|
|
16153
|
+
}
|
|
16154
|
+
if (!tea_util_1.default.isUnset(request.stageName)) {
|
|
16155
|
+
query["StageName"] = request.stageName;
|
|
16156
|
+
}
|
|
16157
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
16158
|
+
query: openapi_util_1.default.query(query),
|
|
16159
|
+
});
|
|
16160
|
+
let params = new $OpenApi.Params({
|
|
16161
|
+
action: "DescribeApisByBackend",
|
|
16162
|
+
version: "2016-07-14",
|
|
16163
|
+
protocol: "HTTPS",
|
|
16164
|
+
pathname: "/",
|
|
16165
|
+
method: "POST",
|
|
16166
|
+
authType: "AK",
|
|
16167
|
+
style: "RPC",
|
|
16168
|
+
reqBodyType: "formData",
|
|
16169
|
+
bodyType: "json",
|
|
16170
|
+
});
|
|
16171
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DescribeApisByBackendResponse({}));
|
|
16172
|
+
}
|
|
16173
|
+
async describeApisByBackend(request) {
|
|
16174
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
16175
|
+
return await this.describeApisByBackendWithOptions(request, runtime);
|
|
16176
|
+
}
|
|
14929
16177
|
async describeApisByIpControlWithOptions(request, runtime) {
|
|
14930
16178
|
tea_util_1.default.validateModel(request);
|
|
14931
16179
|
let query = {};
|
|
@@ -15268,6 +16516,73 @@ class Client extends openapi_client_1.default {
|
|
|
15268
16516
|
let runtime = new $Util.RuntimeOptions({});
|
|
15269
16517
|
return await this.describeAuthorizedAppsWithOptions(request, runtime);
|
|
15270
16518
|
}
|
|
16519
|
+
async describeBackendInfoWithOptions(request, runtime) {
|
|
16520
|
+
tea_util_1.default.validateModel(request);
|
|
16521
|
+
let query = {};
|
|
16522
|
+
if (!tea_util_1.default.isUnset(request.backendId)) {
|
|
16523
|
+
query["BackendId"] = request.backendId;
|
|
16524
|
+
}
|
|
16525
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
16526
|
+
query["SecurityToken"] = request.securityToken;
|
|
16527
|
+
}
|
|
16528
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
16529
|
+
query: openapi_util_1.default.query(query),
|
|
16530
|
+
});
|
|
16531
|
+
let params = new $OpenApi.Params({
|
|
16532
|
+
action: "DescribeBackendInfo",
|
|
16533
|
+
version: "2016-07-14",
|
|
16534
|
+
protocol: "HTTPS",
|
|
16535
|
+
pathname: "/",
|
|
16536
|
+
method: "POST",
|
|
16537
|
+
authType: "AK",
|
|
16538
|
+
style: "RPC",
|
|
16539
|
+
reqBodyType: "formData",
|
|
16540
|
+
bodyType: "json",
|
|
16541
|
+
});
|
|
16542
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DescribeBackendInfoResponse({}));
|
|
16543
|
+
}
|
|
16544
|
+
async describeBackendInfo(request) {
|
|
16545
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
16546
|
+
return await this.describeBackendInfoWithOptions(request, runtime);
|
|
16547
|
+
}
|
|
16548
|
+
async describeBackendListWithOptions(request, runtime) {
|
|
16549
|
+
tea_util_1.default.validateModel(request);
|
|
16550
|
+
let query = {};
|
|
16551
|
+
if (!tea_util_1.default.isUnset(request.backendName)) {
|
|
16552
|
+
query["BackendName"] = request.backendName;
|
|
16553
|
+
}
|
|
16554
|
+
if (!tea_util_1.default.isUnset(request.backendType)) {
|
|
16555
|
+
query["BackendType"] = request.backendType;
|
|
16556
|
+
}
|
|
16557
|
+
if (!tea_util_1.default.isUnset(request.pageNumber)) {
|
|
16558
|
+
query["PageNumber"] = request.pageNumber;
|
|
16559
|
+
}
|
|
16560
|
+
if (!tea_util_1.default.isUnset(request.pageSize)) {
|
|
16561
|
+
query["PageSize"] = request.pageSize;
|
|
16562
|
+
}
|
|
16563
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
16564
|
+
query["SecurityToken"] = request.securityToken;
|
|
16565
|
+
}
|
|
16566
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
16567
|
+
query: openapi_util_1.default.query(query),
|
|
16568
|
+
});
|
|
16569
|
+
let params = new $OpenApi.Params({
|
|
16570
|
+
action: "DescribeBackendList",
|
|
16571
|
+
version: "2016-07-14",
|
|
16572
|
+
protocol: "HTTPS",
|
|
16573
|
+
pathname: "/",
|
|
16574
|
+
method: "POST",
|
|
16575
|
+
authType: "AK",
|
|
16576
|
+
style: "RPC",
|
|
16577
|
+
reqBodyType: "formData",
|
|
16578
|
+
bodyType: "json",
|
|
16579
|
+
});
|
|
16580
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DescribeBackendListResponse({}));
|
|
16581
|
+
}
|
|
16582
|
+
async describeBackendList(request) {
|
|
16583
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
16584
|
+
return await this.describeBackendListWithOptions(request, runtime);
|
|
16585
|
+
}
|
|
15271
16586
|
async describeDeployApiTaskWithOptions(request, runtime) {
|
|
15272
16587
|
tea_util_1.default.validateModel(request);
|
|
15273
16588
|
let query = {};
|
|
@@ -16091,6 +17406,35 @@ class Client extends openapi_client_1.default {
|
|
|
16091
17406
|
let runtime = new $Util.RuntimeOptions({});
|
|
16092
17407
|
return await this.describeTrafficControlsByApiWithOptions(request, runtime);
|
|
16093
17408
|
}
|
|
17409
|
+
async describeUpdateBackendTaskWithOptions(request, runtime) {
|
|
17410
|
+
tea_util_1.default.validateModel(request);
|
|
17411
|
+
let query = {};
|
|
17412
|
+
if (!tea_util_1.default.isUnset(request.operationUid)) {
|
|
17413
|
+
query["OperationUid"] = request.operationUid;
|
|
17414
|
+
}
|
|
17415
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
17416
|
+
query["SecurityToken"] = request.securityToken;
|
|
17417
|
+
}
|
|
17418
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
17419
|
+
query: openapi_util_1.default.query(query),
|
|
17420
|
+
});
|
|
17421
|
+
let params = new $OpenApi.Params({
|
|
17422
|
+
action: "DescribeUpdateBackendTask",
|
|
17423
|
+
version: "2016-07-14",
|
|
17424
|
+
protocol: "HTTPS",
|
|
17425
|
+
pathname: "/",
|
|
17426
|
+
method: "POST",
|
|
17427
|
+
authType: "AK",
|
|
17428
|
+
style: "RPC",
|
|
17429
|
+
reqBodyType: "formData",
|
|
17430
|
+
bodyType: "json",
|
|
17431
|
+
});
|
|
17432
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DescribeUpdateBackendTaskResponse({}));
|
|
17433
|
+
}
|
|
17434
|
+
async describeUpdateBackendTask(request) {
|
|
17435
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
17436
|
+
return await this.describeUpdateBackendTaskWithOptions(request, runtime);
|
|
17437
|
+
}
|
|
16094
17438
|
async describeUpdateVpcInfoTaskWithOptions(request, runtime) {
|
|
16095
17439
|
tea_util_1.default.validateModel(request);
|
|
16096
17440
|
let query = {};
|
|
@@ -16196,6 +17540,44 @@ class Client extends openapi_client_1.default {
|
|
|
16196
17540
|
let runtime = new $Util.RuntimeOptions({});
|
|
16197
17541
|
return await this.describeZonesWithOptions(request, runtime);
|
|
16198
17542
|
}
|
|
17543
|
+
async detachPluginWithOptions(request, runtime) {
|
|
17544
|
+
tea_util_1.default.validateModel(request);
|
|
17545
|
+
let query = {};
|
|
17546
|
+
if (!tea_util_1.default.isUnset(request.apiId)) {
|
|
17547
|
+
query["ApiId"] = request.apiId;
|
|
17548
|
+
}
|
|
17549
|
+
if (!tea_util_1.default.isUnset(request.groupId)) {
|
|
17550
|
+
query["GroupId"] = request.groupId;
|
|
17551
|
+
}
|
|
17552
|
+
if (!tea_util_1.default.isUnset(request.pluginId)) {
|
|
17553
|
+
query["PluginId"] = request.pluginId;
|
|
17554
|
+
}
|
|
17555
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
17556
|
+
query["SecurityToken"] = request.securityToken;
|
|
17557
|
+
}
|
|
17558
|
+
if (!tea_util_1.default.isUnset(request.stageName)) {
|
|
17559
|
+
query["StageName"] = request.stageName;
|
|
17560
|
+
}
|
|
17561
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
17562
|
+
query: openapi_util_1.default.query(query),
|
|
17563
|
+
});
|
|
17564
|
+
let params = new $OpenApi.Params({
|
|
17565
|
+
action: "DetachPlugin",
|
|
17566
|
+
version: "2016-07-14",
|
|
17567
|
+
protocol: "HTTPS",
|
|
17568
|
+
pathname: "/",
|
|
17569
|
+
method: "POST",
|
|
17570
|
+
authType: "AK",
|
|
17571
|
+
style: "RPC",
|
|
17572
|
+
reqBodyType: "formData",
|
|
17573
|
+
bodyType: "json",
|
|
17574
|
+
});
|
|
17575
|
+
return $tea.cast(await this.callApi(params, req, runtime), new DetachPluginResponse({}));
|
|
17576
|
+
}
|
|
17577
|
+
async detachPlugin(request) {
|
|
17578
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
17579
|
+
return await this.detachPluginWithOptions(request, runtime);
|
|
17580
|
+
}
|
|
16199
17581
|
async dryRunSwaggerWithOptions(tmpReq, runtime) {
|
|
16200
17582
|
tea_util_1.default.validateModel(tmpReq);
|
|
16201
17583
|
let request = new DryRunSwaggerShrinkRequest({});
|
|
@@ -16348,6 +17730,12 @@ class Client extends openapi_client_1.default {
|
|
|
16348
17730
|
if (!tea_util_1.default.isUnset(request.authType)) {
|
|
16349
17731
|
query["AuthType"] = request.authType;
|
|
16350
17732
|
}
|
|
17733
|
+
if (!tea_util_1.default.isUnset(request.backendEnable)) {
|
|
17734
|
+
query["BackendEnable"] = request.backendEnable;
|
|
17735
|
+
}
|
|
17736
|
+
if (!tea_util_1.default.isUnset(request.backendId)) {
|
|
17737
|
+
query["BackendId"] = request.backendId;
|
|
17738
|
+
}
|
|
16351
17739
|
if (!tea_util_1.default.isUnset(request.constantParameters)) {
|
|
16352
17740
|
query["ConstantParameters"] = request.constantParameters;
|
|
16353
17741
|
}
|
|
@@ -16563,6 +17951,88 @@ class Client extends openapi_client_1.default {
|
|
|
16563
17951
|
let runtime = new $Util.RuntimeOptions({});
|
|
16564
17952
|
return await this.modifyAppWithOptions(request, runtime);
|
|
16565
17953
|
}
|
|
17954
|
+
async modifyBackendWithOptions(request, runtime) {
|
|
17955
|
+
tea_util_1.default.validateModel(request);
|
|
17956
|
+
let query = {};
|
|
17957
|
+
if (!tea_util_1.default.isUnset(request.backendId)) {
|
|
17958
|
+
query["BackendId"] = request.backendId;
|
|
17959
|
+
}
|
|
17960
|
+
if (!tea_util_1.default.isUnset(request.backendName)) {
|
|
17961
|
+
query["BackendName"] = request.backendName;
|
|
17962
|
+
}
|
|
17963
|
+
if (!tea_util_1.default.isUnset(request.backendType)) {
|
|
17964
|
+
query["BackendType"] = request.backendType;
|
|
17965
|
+
}
|
|
17966
|
+
if (!tea_util_1.default.isUnset(request.description)) {
|
|
17967
|
+
query["Description"] = request.description;
|
|
17968
|
+
}
|
|
17969
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
17970
|
+
query["SecurityToken"] = request.securityToken;
|
|
17971
|
+
}
|
|
17972
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
17973
|
+
query: openapi_util_1.default.query(query),
|
|
17974
|
+
});
|
|
17975
|
+
let params = new $OpenApi.Params({
|
|
17976
|
+
action: "ModifyBackend",
|
|
17977
|
+
version: "2016-07-14",
|
|
17978
|
+
protocol: "HTTPS",
|
|
17979
|
+
pathname: "/",
|
|
17980
|
+
method: "POST",
|
|
17981
|
+
authType: "AK",
|
|
17982
|
+
style: "RPC",
|
|
17983
|
+
reqBodyType: "formData",
|
|
17984
|
+
bodyType: "json",
|
|
17985
|
+
});
|
|
17986
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ModifyBackendResponse({}));
|
|
17987
|
+
}
|
|
17988
|
+
async modifyBackend(request) {
|
|
17989
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
17990
|
+
return await this.modifyBackendWithOptions(request, runtime);
|
|
17991
|
+
}
|
|
17992
|
+
async modifyBackendModelWithOptions(request, runtime) {
|
|
17993
|
+
tea_util_1.default.validateModel(request);
|
|
17994
|
+
let query = {};
|
|
17995
|
+
if (!tea_util_1.default.isUnset(request.backendId)) {
|
|
17996
|
+
query["BackendId"] = request.backendId;
|
|
17997
|
+
}
|
|
17998
|
+
if (!tea_util_1.default.isUnset(request.backendModelData)) {
|
|
17999
|
+
query["BackendModelData"] = request.backendModelData;
|
|
18000
|
+
}
|
|
18001
|
+
if (!tea_util_1.default.isUnset(request.backendModelId)) {
|
|
18002
|
+
query["BackendModelId"] = request.backendModelId;
|
|
18003
|
+
}
|
|
18004
|
+
if (!tea_util_1.default.isUnset(request.backendType)) {
|
|
18005
|
+
query["BackendType"] = request.backendType;
|
|
18006
|
+
}
|
|
18007
|
+
if (!tea_util_1.default.isUnset(request.description)) {
|
|
18008
|
+
query["Description"] = request.description;
|
|
18009
|
+
}
|
|
18010
|
+
if (!tea_util_1.default.isUnset(request.securityToken)) {
|
|
18011
|
+
query["SecurityToken"] = request.securityToken;
|
|
18012
|
+
}
|
|
18013
|
+
if (!tea_util_1.default.isUnset(request.stageName)) {
|
|
18014
|
+
query["StageName"] = request.stageName;
|
|
18015
|
+
}
|
|
18016
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18017
|
+
query: openapi_util_1.default.query(query),
|
|
18018
|
+
});
|
|
18019
|
+
let params = new $OpenApi.Params({
|
|
18020
|
+
action: "ModifyBackendModel",
|
|
18021
|
+
version: "2016-07-14",
|
|
18022
|
+
protocol: "HTTPS",
|
|
18023
|
+
pathname: "/",
|
|
18024
|
+
method: "POST",
|
|
18025
|
+
authType: "AK",
|
|
18026
|
+
style: "RPC",
|
|
18027
|
+
reqBodyType: "formData",
|
|
18028
|
+
bodyType: "json",
|
|
18029
|
+
});
|
|
18030
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ModifyBackendModelResponse({}));
|
|
18031
|
+
}
|
|
18032
|
+
async modifyBackendModel(request) {
|
|
18033
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
18034
|
+
return await this.modifyBackendModelWithOptions(request, runtime);
|
|
18035
|
+
}
|
|
16566
18036
|
async modifyInstanceSpecWithOptions(request, runtime) {
|
|
16567
18037
|
tea_util_1.default.validateModel(request);
|
|
16568
18038
|
let query = {};
|