tencentcloud-sdk-nodejs 4.0.613 → 4.0.614

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.
Files changed (36) hide show
  1. package/CHANGELOG.md +294 -0
  2. package/SERVICE_CHANGELOG.md +429 -74
  3. package/package.json +1 -1
  4. package/products.md +14 -14
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/apigateway/v20180808/apigateway_client.ts +14 -9
  7. package/src/services/apigateway/v20180808/apigateway_models.ts +309 -163
  8. package/src/services/billing/v20180709/billing_client.ts +19 -5
  9. package/src/services/billing/v20180709/billing_models.ts +320 -77
  10. package/src/services/cfs/v20190719/cfs_models.ts +7 -1
  11. package/src/services/ecm/v20190719/ecm_models.ts +21 -0
  12. package/src/services/ses/v20201002/ses_models.ts +11 -1
  13. package/src/services/tbp/v20190311/tbp_client.ts +2 -0
  14. package/src/services/tbp/v20190311/tbp_models.ts +45 -0
  15. package/src/services/tbp/v20190627/tbp_models.ts +5 -0
  16. package/src/services/tcss/v20201101/tcss_models.ts +1 -1
  17. package/src/services/tdmq/v20200217/tdmq_models.ts +12 -2
  18. package/src/services/wedata/v20210820/wedata_client.ts +3 -0
  19. package/src/services/wedata/v20210820/wedata_models.ts +367 -29
  20. package/tencentcloud/common/sdk_version.d.ts +1 -1
  21. package/tencentcloud/common/sdk_version.js +1 -1
  22. package/tencentcloud/services/apigateway/v20180808/apigateway_client.d.ts +4 -4
  23. package/tencentcloud/services/apigateway/v20180808/apigateway_client.js +3 -3
  24. package/tencentcloud/services/apigateway/v20180808/apigateway_models.d.ts +252 -127
  25. package/tencentcloud/services/billing/v20180709/billing_client.d.ts +5 -1
  26. package/tencentcloud/services/billing/v20180709/billing_client.js +6 -0
  27. package/tencentcloud/services/billing/v20180709/billing_models.d.ts +269 -66
  28. package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +7 -1
  29. package/tencentcloud/services/ecm/v20190719/ecm_models.d.ts +17 -0
  30. package/tencentcloud/services/ses/v20201002/ses_models.d.ts +9 -1
  31. package/tencentcloud/services/tbp/v20190311/tbp_models.d.ts +39 -0
  32. package/tencentcloud/services/tbp/v20190627/tbp_models.d.ts +4 -0
  33. package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +1 -1
  34. package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +10 -2
  35. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +311 -27
  36. package/test/billing.v20180709.test.js +10 -0
@@ -15,6 +15,23 @@
15
15
  * under the License.
16
16
  */
17
17
 
18
+ /**
19
+ * ip策略绑定api详情
20
+ */
21
+ export interface IPStrategyApiStatus {
22
+ /**
23
+ * 环境绑定API数量。
24
+ 注意:此字段可能返回 null,表示取不到有效值。
25
+ */
26
+ TotalCount: number
27
+
28
+ /**
29
+ * 环境绑定API详情。
30
+ 注意:此字段可能返回 null,表示取不到有效值。
31
+ */
32
+ ApiIdStatusSet: Array<IPStrategyApi>
33
+ }
34
+
18
35
  /**
19
36
  * UnBindSubDomain返回参数结构体
20
37
  */
@@ -241,6 +258,35 @@ export interface DescribeAPIDocDetailRequest {
241
258
  ApiDocId: string
242
259
  }
243
260
 
261
+ /**
262
+ * 创建api返回
263
+ */
264
+ export interface CreateApiResultInfo {
265
+ /**
266
+ * api id
267
+ 注意:此字段可能返回 null,表示取不到有效值。
268
+ */
269
+ ApiId: string
270
+
271
+ /**
272
+ * 路径
273
+ 注意:此字段可能返回 null,表示取不到有效值。
274
+ */
275
+ Path: string
276
+
277
+ /**
278
+ * 请求方法
279
+ 注意:此字段可能返回 null,表示取不到有效值。
280
+ */
281
+ Method: string
282
+
283
+ /**
284
+ * 创建时间
285
+ 注意:此字段可能返回 null,表示取不到有效值。
286
+ */
287
+ CreatedTime: string
288
+ }
289
+
244
290
  /**
245
291
  * ModifyAPIDoc返回参数结构体
246
292
  */
@@ -515,40 +561,44 @@ export interface ModifyApiResponse {
515
561
  }
516
562
 
517
563
  /**
518
- * 服务环境策略
564
+ * ServiceParameter
519
565
  */
520
- export interface ServiceEnvironmentStrategy {
566
+ export interface DescribeApiResultServiceParametersInfo {
521
567
  /**
522
- * 环境名。
523
- */
524
- EnvironmentName: string
568
+ * API的后端服务参数名称。只有ServiceType是HTTP才会用到此参数。前后端参数名称可不同。
569
+ 注意:此字段可能返回 null,表示取不到有效值。
570
+ */
571
+ Name?: string
525
572
 
526
573
  /**
527
- * 访问服务对应环境的url。
528
- */
529
- Url: string
574
+ * API 的后端服务参数位置,如 head。只有 ServiceType 是 HTTP 才会用到此参数。前后端参数位置可配置不同。
575
+ 注意:此字段可能返回 null,表示取不到有效值。
576
+ */
577
+ Position?: string
530
578
 
531
579
  /**
532
- * 发布状态。
533
- */
534
- Status: number
580
+ * API 的后端服务参数对应的前端参数位置,如 head。只有 ServiceType 是 HTTP 才会用到此参数。
581
+ 注意:此字段可能返回 null,表示取不到有效值。
582
+ */
583
+ RelevantRequestParameterPosition?: string
535
584
 
536
585
  /**
537
- * 发布的版本号。
586
+ * API 的后端服务参数对应的前端参数名称。只有 ServiceType 是 HTTP 才会用到此参数。
538
587
  注意:此字段可能返回 null,表示取不到有效值。
539
588
  */
540
- VersionName: string
589
+ RelevantRequestParameterName?: string
541
590
 
542
591
  /**
543
- * 限流值。
544
- */
545
- Strategy: number
592
+ * API 的后端服务参数默认值。只有 ServiceType 是 HTTP 才会用到此参数。
593
+ 注意:此字段可能返回 null,表示取不到有效值。
594
+ */
595
+ DefaultValue?: string
546
596
 
547
597
  /**
548
- * 最大限流值
598
+ * API 的后端服务参数备注。只有 ServiceType 是 HTTP 才会用到此参数。
549
599
  注意:此字段可能返回 null,表示取不到有效值。
550
600
  */
551
- MaxStrategy: number
601
+ RelevantRequestParameterDesc?: string
552
602
  }
553
603
 
554
604
  /**
@@ -718,7 +768,7 @@ export interface ApiInfo {
718
768
  * API的后端服务参数。
719
769
  注意:此字段可能返回 null,表示取不到有效值。
720
770
  */
721
- ServiceParameters: Array<ServiceParameter>
771
+ ServiceParameters: Array<DescribeApiResultServiceParametersInfo>
722
772
 
723
773
  /**
724
774
  * 常量参数。
@@ -1061,23 +1111,27 @@ export interface DescribeUsagePlansStatusResponse {
1061
1111
  */
1062
1112
  export interface HealthCheckConf {
1063
1113
  /**
1064
- * 是否开启健康检查。
1065
- */
1114
+ * 是否开启健康检查。
1115
+ 注意:此字段可能返回 null,表示取不到有效值。
1116
+ */
1066
1117
  IsHealthCheck?: boolean
1067
1118
 
1068
1119
  /**
1069
- * 健康检查阈值。
1070
- */
1120
+ * 健康检查阈值。
1121
+ 注意:此字段可能返回 null,表示取不到有效值。
1122
+ */
1071
1123
  RequestVolumeThreshold?: number
1072
1124
 
1073
1125
  /**
1074
- * 窗口大小。
1075
- */
1126
+ * 窗口大小。
1127
+ 注意:此字段可能返回 null,表示取不到有效值。
1128
+ */
1076
1129
  SleepWindowInMilliseconds?: number
1077
1130
 
1078
1131
  /**
1079
- * 阈值百分比。
1080
- */
1132
+ * 阈值百分比。
1133
+ 注意:此字段可能返回 null,表示取不到有效值。
1134
+ */
1081
1135
  ErrorThresholdPercentage?: number
1082
1136
  }
1083
1137
 
@@ -1328,7 +1382,7 @@ export interface DescribeExclusiveInstancesResponse {
1328
1382
  /**
1329
1383
  * 独享实例列表查询结果
1330
1384
  */
1331
- Result: InstanceInfo
1385
+ Result?: DescribeExclusiveInstancesResult
1332
1386
 
1333
1387
  /**
1334
1388
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -1436,6 +1490,43 @@ export interface DescribeApiEnvironmentStrategyRequest {
1436
1490
  */
1437
1491
  export type UpstreamHealthCheckerReqHeaders = null
1438
1492
 
1493
+ /**
1494
+ * 服务环境策略
1495
+ */
1496
+ export interface ServiceEnvironmentStrategy {
1497
+ /**
1498
+ * 环境名。
1499
+ */
1500
+ EnvironmentName: string
1501
+
1502
+ /**
1503
+ * 访问服务对应环境的url。
1504
+ */
1505
+ Url: string
1506
+
1507
+ /**
1508
+ * 发布状态。
1509
+ */
1510
+ Status: number
1511
+
1512
+ /**
1513
+ * 发布的版本号。
1514
+ 注意:此字段可能返回 null,表示取不到有效值。
1515
+ */
1516
+ VersionName: string
1517
+
1518
+ /**
1519
+ * 限流值。
1520
+ */
1521
+ Strategy: number
1522
+
1523
+ /**
1524
+ * 最大限流值
1525
+ 注意:此字段可能返回 null,表示取不到有效值。
1526
+ */
1527
+ MaxStrategy: number
1528
+ }
1529
+
1439
1530
  /**
1440
1531
  * DescribeServiceForApiApp返回参数结构体
1441
1532
  */
@@ -1630,144 +1721,144 @@ export interface DescribeServiceResponse {
1630
1721
  /**
1631
1722
  * 服务唯一ID。
1632
1723
  */
1633
- ServiceId: string
1724
+ ServiceId?: string
1634
1725
 
1635
1726
  /**
1636
1727
  * 服务 环境列表。
1637
1728
  */
1638
- AvailableEnvironments: Array<string>
1729
+ AvailableEnvironments?: Array<string>
1639
1730
 
1640
1731
  /**
1641
1732
  * 服务名称。
1642
1733
  */
1643
- ServiceName: string
1734
+ ServiceName?: string
1644
1735
 
1645
1736
  /**
1646
1737
  * 服务描述。
1647
1738
  注意:此字段可能返回 null,表示取不到有效值。
1648
1739
  */
1649
- ServiceDesc: string
1740
+ ServiceDesc?: string
1650
1741
 
1651
1742
  /**
1652
1743
  * 服务支持协议,可选值为http、https、http&https。
1653
1744
  */
1654
- Protocol: string
1745
+ Protocol?: string
1655
1746
 
1656
1747
  /**
1657
1748
  * 服务创建时间。
1658
1749
  */
1659
- CreatedTime: string
1750
+ CreatedTime?: string
1660
1751
 
1661
1752
  /**
1662
1753
  * 服务修改时间。
1663
1754
  */
1664
- ModifiedTime: string
1755
+ ModifiedTime?: string
1665
1756
 
1666
1757
  /**
1667
1758
  * 独立集群名称。
1668
1759
  */
1669
- ExclusiveSetName: string
1760
+ ExclusiveSetName?: string
1670
1761
 
1671
1762
  /**
1672
1763
  * 网络类型列表,INNER为内网访问,OUTER为外网访问。
1673
1764
  */
1674
- NetTypes: Array<string>
1765
+ NetTypes?: Array<string>
1675
1766
 
1676
1767
  /**
1677
1768
  * 内网访问子域名。
1678
1769
  */
1679
- InternalSubDomain: string
1770
+ InternalSubDomain?: string
1680
1771
 
1681
1772
  /**
1682
1773
  * 外网访问子域名。
1683
1774
  */
1684
- OuterSubDomain: string
1775
+ OuterSubDomain?: string
1685
1776
 
1686
1777
  /**
1687
1778
  * 内网访问http服务端口号。
1688
1779
  */
1689
- InnerHttpPort: number
1780
+ InnerHttpPort?: number
1690
1781
 
1691
1782
  /**
1692
1783
  * 内网访问https端口号。
1693
1784
  */
1694
- InnerHttpsPort: number
1785
+ InnerHttpsPort?: number
1695
1786
 
1696
1787
  /**
1697
1788
  * API总数。
1698
1789
  */
1699
- ApiTotalCount: number
1790
+ ApiTotalCount?: number
1700
1791
 
1701
1792
  /**
1702
1793
  * API列表。
1703
1794
  注意:此字段可能返回 null,表示取不到有效值。
1704
1795
  */
1705
- ApiIdStatusSet: Array<ApiIdStatus>
1796
+ ApiIdStatusSet?: Array<ApiIdStatus>
1706
1797
 
1707
1798
  /**
1708
1799
  * 使用计划总数量。
1709
1800
  */
1710
- UsagePlanTotalCount: number
1801
+ UsagePlanTotalCount?: number
1711
1802
 
1712
1803
  /**
1713
1804
  * 使用计划数组。
1714
1805
  注意:此字段可能返回 null,表示取不到有效值。
1715
1806
  */
1716
- UsagePlanList: Array<UsagePlan>
1807
+ UsagePlanList?: Array<UsagePlan>
1717
1808
 
1718
1809
  /**
1719
1810
  * IP版本。
1720
1811
  注意:此字段可能返回 null,表示取不到有效值。
1721
1812
  */
1722
- IpVersion: string
1813
+ IpVersion?: string
1723
1814
 
1724
1815
  /**
1725
1816
  * 此服务的用户类型。
1726
1817
  注意:此字段可能返回 null,表示取不到有效值。
1727
1818
  */
1728
- UserType: string
1819
+ UserType?: string
1729
1820
 
1730
1821
  /**
1731
1822
  * 预留字段。
1732
1823
  注意:此字段可能返回 null,表示取不到有效值。
1733
1824
  */
1734
- SetId: number
1825
+ SetId?: number
1735
1826
 
1736
1827
  /**
1737
1828
  * 服务绑定的标签。
1738
1829
  注意:此字段可能返回 null,表示取不到有效值。
1739
1830
  */
1740
- Tags: Array<Tag>
1831
+ Tags?: Array<Tag>
1741
1832
 
1742
1833
  /**
1743
1834
  * 独享实例id
1744
1835
  注意:此字段可能返回 null,表示取不到有效值。
1745
1836
  */
1746
- InstanceId: string
1837
+ InstanceId?: string
1747
1838
 
1748
1839
  /**
1749
1840
  * 独享实例name
1750
1841
  注意:此字段可能返回 null,表示取不到有效值。
1751
1842
  */
1752
- InstanceName: string
1843
+ InstanceName?: string
1753
1844
 
1754
1845
  /**
1755
1846
  * 集群类型
1756
1847
  注意:此字段可能返回 null,表示取不到有效值。
1757
1848
  */
1758
- SetType: string
1849
+ SetType?: string
1759
1850
 
1760
1851
  /**
1761
1852
  * 服务部署的集群类型
1762
1853
  注意:此字段可能返回 null,表示取不到有效值。
1763
1854
  */
1764
- DeploymentType: string
1855
+ DeploymentType?: string
1765
1856
 
1766
1857
  /**
1767
1858
  * 特殊用途, NULL和DEFAULT表示无特殊用途,其他用途如HTTP_DNS等
1768
1859
  注意:此字段可能返回 null,表示取不到有效值。
1769
1860
  */
1770
- SpecialUse: string
1861
+ SpecialUse?: string
1771
1862
 
1772
1863
  /**
1773
1864
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -1816,12 +1907,6 @@ export interface DescribeExclusiveInstancesRequest {
1816
1907
  * BindSubDomain返回参数结构体
1817
1908
  */
1818
1909
  export interface BindSubDomainResponse {
1819
- /**
1820
- * 绑定操作是否成功。
1821
- 注意:此字段可能返回 null,表示取不到有效值。
1822
- */
1823
- Result: boolean
1824
-
1825
1910
  /**
1826
1911
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1827
1912
  */
@@ -1895,23 +1980,27 @@ export interface DescribeApiBindApiAppsStatusResponse {
1895
1980
  */
1896
1981
  export interface ConstantParameter {
1897
1982
  /**
1898
- * 常量参数名称。只有 ServiceType 是 HTTP 才会用到此参数。
1899
- */
1983
+ * 常量参数名称。只有 ServiceType 是 HTTP 才会用到此参数。
1984
+ 注意:此字段可能返回 null,表示取不到有效值。
1985
+ */
1900
1986
  Name?: string
1901
1987
 
1902
1988
  /**
1903
- * 常量参数描述。只有 ServiceType 是 HTTP 才会用到此参数。
1904
- */
1989
+ * 常量参数描述。只有 ServiceType 是 HTTP 才会用到此参数。
1990
+ 注意:此字段可能返回 null,表示取不到有效值。
1991
+ */
1905
1992
  Desc?: string
1906
1993
 
1907
1994
  /**
1908
- * 常量参数位置。只有 ServiceType 是 HTTP 才会用到此参数。
1909
- */
1995
+ * 常量参数位置。只有 ServiceType 是 HTTP 才会用到此参数。
1996
+ 注意:此字段可能返回 null,表示取不到有效值。
1997
+ */
1910
1998
  Position?: string
1911
1999
 
1912
2000
  /**
1913
- * 常量参数默认值。只有 ServiceType 是 HTTP 才会用到此参数。
1914
- */
2001
+ * 常量参数默认值。只有 ServiceType 是 HTTP 才会用到此参数。
2002
+ 注意:此字段可能返回 null,表示取不到有效值。
2003
+ */
1915
2004
  DefaultValue?: string
1916
2005
  }
1917
2006
 
@@ -2037,6 +2126,29 @@ export interface DisableApiKeyRequest {
2037
2126
  AccessKeyId: string
2038
2127
  }
2039
2128
 
2129
+ /**
2130
+ * 使用计划绑定密钥
2131
+ */
2132
+ export interface UsagePlanBindSecret {
2133
+ /**
2134
+ * 密钥ID。
2135
+ 注意:此字段可能返回 null,表示取不到有效值。
2136
+ */
2137
+ AccessKeyId: string
2138
+
2139
+ /**
2140
+ * 密钥名称。
2141
+ 注意:此字段可能返回 null,表示取不到有效值。
2142
+ */
2143
+ SecretName: string
2144
+
2145
+ /**
2146
+ * 密钥状态,0表示已禁用,1表示启用中。
2147
+ 注意:此字段可能返回 null,表示取不到有效值。
2148
+ */
2149
+ Status: number
2150
+ }
2151
+
2040
2152
  /**
2041
2153
  * 自定义域名的路径映射。
2042
2154
  */
@@ -2231,46 +2343,6 @@ export interface BindApiAppRequest {
2231
2343
  ApiId: string
2232
2344
  }
2233
2345
 
2234
- /**
2235
- * 策略绑定api列表
2236
- */
2237
- export interface IPStrategyApi {
2238
- /**
2239
- * API 唯一 ID。
2240
- */
2241
- ApiId: string
2242
-
2243
- /**
2244
- * 用户自定义的 API 名称。
2245
- */
2246
- ApiName: string
2247
-
2248
- /**
2249
- * API 类型。取值为NORMAL(普通API)和TSF (微服务API)。
2250
- */
2251
- ApiType: string
2252
-
2253
- /**
2254
- * API 的路径。如 /path。
2255
- */
2256
- Path: string
2257
-
2258
- /**
2259
- * API 的请求方法。如 GET。
2260
- */
2261
- Method: string
2262
-
2263
- /**
2264
- * API 已经绑定的其他策略唯一ID。
2265
- */
2266
- OtherIPStrategyId: string
2267
-
2268
- /**
2269
- * API 已经绑定的环境。
2270
- */
2271
- OtherEnvironmentName: string
2272
- }
2273
-
2274
2346
  /**
2275
2347
  * DescribeIPStrategy返回参数结构体
2276
2348
  */
@@ -2387,7 +2459,7 @@ export interface CreateApiResponse {
2387
2459
  * api信息
2388
2460
  注意:此字段可能返回 null,表示取不到有效值。
2389
2461
  */
2390
- Result: CreateApiRsp
2462
+ Result?: CreateApiResultInfo
2391
2463
 
2392
2464
  /**
2393
2465
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2767,8 +2839,9 @@ export interface UsagePlan {
2767
2839
  UsagePlanName: string
2768
2840
 
2769
2841
  /**
2770
- * 使用计划描述。
2771
- */
2842
+ * 使用计划描述。
2843
+ 注意:此字段可能返回 null,表示取不到有效值。
2844
+ */
2772
2845
  UsagePlanDesc: string
2773
2846
 
2774
2847
  /**
@@ -3426,26 +3499,76 @@ export interface ParameterInfo {
3426
3499
  }
3427
3500
 
3428
3501
  /**
3429
- * 使用计划绑定密钥
3502
+ * 后端通道详细信息
3430
3503
  */
3431
- export interface UsagePlanBindSecret {
3504
+ export interface ModifyUpstreamResultInfo {
3432
3505
  /**
3433
- * 密钥ID
3506
+ * 后端通道唯一ID
3507
+ */
3508
+ UpstreamId: string
3509
+
3510
+ /**
3511
+ * 后端通道名字
3512
+ */
3513
+ UpstreamName: string
3514
+
3515
+ /**
3516
+ * 后端通道描述
3517
+ */
3518
+ UpstreamDescription: string
3519
+
3520
+ /**
3521
+ * 后端协议,取值范围:HTTP, HTTPS
3522
+ */
3523
+ Scheme: string
3524
+
3525
+ /**
3526
+ * 负载均衡算法,取值范围:ROUND_ROBIN
3527
+ */
3528
+ Algorithm: string
3529
+
3530
+ /**
3531
+ * VPC唯一ID
3532
+ */
3533
+ UniqVpcId: string
3534
+
3535
+ /**
3536
+ * 请求重试次数
3537
+ */
3538
+ Retries: number
3539
+
3540
+ /**
3541
+ * 后端节点
3542
+ */
3543
+ Nodes: Array<UpstreamNode>
3544
+
3545
+ /**
3546
+ * 创建时间
3547
+ */
3548
+ CreatedTime: string
3549
+
3550
+ /**
3551
+ * 健康检查配置
3434
3552
  注意:此字段可能返回 null,表示取不到有效值。
3435
3553
  */
3436
- AccessKeyId: string
3554
+ HealthChecker: UpstreamHealthChecker
3437
3555
 
3438
3556
  /**
3439
- * 密钥名称。
3557
+ * 后端的类型,取值范围:IP_PORT, K8S
3558
+ */
3559
+ UpstreamType: string
3560
+
3561
+ /**
3562
+ * K8S容器服务配置
3440
3563
  注意:此字段可能返回 null,表示取不到有效值。
3441
3564
  */
3442
- SecretName: string
3565
+ K8sServices: Array<K8sService>
3443
3566
 
3444
3567
  /**
3445
- * 密钥状态,0表示已禁用,1表示启用中。
3568
+ * 网关转发给后端的Host请求头
3446
3569
  注意:此字段可能返回 null,表示取不到有效值。
3447
3570
  */
3448
- Status: number
3571
+ UpstreamHost: string
3449
3572
  }
3450
3573
 
3451
3574
  /**
@@ -3458,6 +3581,16 @@ export interface DeleteApiKeyRequest {
3458
3581
  AccessKeyId: string
3459
3582
  }
3460
3583
 
3584
+ /**
3585
+ * 描述api列表状态
3586
+ */
3587
+ export interface DescribeApisStatusResultInfo {
3588
+ /**
3589
+ * 符合条件的 API 接口数量。
3590
+ */
3591
+ TotalCount: number
3592
+ }
3593
+
3461
3594
  /**
3462
3595
  * DescribeIPStrategyApisStatus返回参数结构体
3463
3596
  */
@@ -4008,8 +4141,9 @@ export interface ApiIdStatus {
4008
4141
  ApiId: string
4009
4142
 
4010
4143
  /**
4011
- * API描述
4012
- */
4144
+ * API描述
4145
+ 注意:此字段可能返回 null,表示取不到有效值。
4146
+ */
4013
4147
  ApiDesc: string
4014
4148
 
4015
4149
  /**
@@ -4990,7 +5124,7 @@ export interface DescribeApisStatusResponse {
4990
5124
  /**
4991
5125
  * API 详情列表。
4992
5126
  */
4993
- Result: ApisStatus
5127
+ Result?: DescribeApisStatusResultInfo
4994
5128
 
4995
5129
  /**
4996
5130
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5589,7 +5723,7 @@ export interface CreateUpstreamResponse {
5589
5723
  * 创建返回的唯一ID
5590
5724
  注意:此字段可能返回 null,表示取不到有效值。
5591
5725
  */
5592
- UpstreamId: string
5726
+ UpstreamId?: string
5593
5727
 
5594
5728
  /**
5595
5729
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5703,13 +5837,43 @@ export interface ApiUsagePlan {
5703
5837
  }
5704
5838
 
5705
5839
  /**
5706
- * BuildAPIDoc请求参数结构体
5840
+ * 策略绑定api列表
5707
5841
  */
5708
- export interface BuildAPIDocRequest {
5842
+ export interface IPStrategyApi {
5709
5843
  /**
5710
- * API文档ID
5844
+ * API 唯一 ID
5711
5845
  */
5712
- ApiDocId: string
5846
+ ApiId: string
5847
+
5848
+ /**
5849
+ * 用户自定义的 API 名称。
5850
+ */
5851
+ ApiName: string
5852
+
5853
+ /**
5854
+ * API 类型。取值为NORMAL(普通API)和TSF (微服务API)。
5855
+ */
5856
+ ApiType: string
5857
+
5858
+ /**
5859
+ * API 的路径。如 /path。
5860
+ */
5861
+ Path: string
5862
+
5863
+ /**
5864
+ * API 的请求方法。如 GET。
5865
+ */
5866
+ Method: string
5867
+
5868
+ /**
5869
+ * API 已经绑定的其他策略唯一ID。
5870
+ */
5871
+ OtherIPStrategyId: string
5872
+
5873
+ /**
5874
+ * API 已经绑定的环境。
5875
+ */
5876
+ OtherEnvironmentName: string
5713
5877
  }
5714
5878
 
5715
5879
  /**
@@ -6057,20 +6221,20 @@ export interface ApiAppInfos {
6057
6221
  }
6058
6222
 
6059
6223
  /**
6060
- * ip策略绑定api详情
6224
+ * 服务发布列表详情
6061
6225
  */
6062
- export interface IPStrategyApiStatus {
6226
+ export interface DescribeServiceReleaseVersionResultVersionListInfo {
6063
6227
  /**
6064
- * 环境绑定API数量。
6228
+ * 版本号。
6065
6229
  注意:此字段可能返回 null,表示取不到有效值。
6066
6230
  */
6067
- TotalCount: number
6231
+ VersionName: string
6068
6232
 
6069
6233
  /**
6070
- * 环境绑定API详情。
6234
+ * 版本描述。
6071
6235
  注意:此字段可能返回 null,表示取不到有效值。
6072
6236
  */
6073
- ApiIdStatusSet: Array<IPStrategyApi>
6237
+ VersionDesc: string
6074
6238
  }
6075
6239
 
6076
6240
  /**
@@ -6676,7 +6840,7 @@ export interface ModifyUpstreamResponse {
6676
6840
  * 返回修改后的后端通道信息
6677
6841
  注意:此字段可能返回 null,表示取不到有效值。
6678
6842
  */
6679
- Result: UpstreamInfo
6843
+ Result?: ModifyUpstreamResultInfo
6680
6844
 
6681
6845
  /**
6682
6846
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -6747,12 +6911,6 @@ export interface EnvironmentStrategy {
6747
6911
  * 限流值
6748
6912
  */
6749
6913
  Quota: number
6750
-
6751
- /**
6752
- * 限流最大值
6753
- 注意:此字段可能返回 null,表示取不到有效值。
6754
- */
6755
- MaxQuota: number
6756
6914
  }
6757
6915
 
6758
6916
  /**
@@ -6944,7 +7102,7 @@ export interface UpdateServiceResponse {
6944
7102
  * 切换版本操作是否成功。
6945
7103
  注意:此字段可能返回 null,表示取不到有效值。
6946
7104
  */
6947
- Result: boolean
7105
+ Result?: boolean
6948
7106
 
6949
7107
  /**
6950
7108
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -6974,12 +7132,6 @@ export interface UsagePlanInfo {
6974
7132
  */
6975
7133
  UsagePlanDesc: string
6976
7134
 
6977
- /**
6978
- * 初始化调用次数。
6979
- 注意:此字段可能返回 null,表示取不到有效值。
6980
- */
6981
- InitQuota: number
6982
-
6983
7135
  /**
6984
7136
  * 每秒请求限制数。
6985
7137
  注意:此字段可能返回 null,表示取不到有效值。
@@ -6992,12 +7144,6 @@ export interface UsagePlanInfo {
6992
7144
  */
6993
7145
  MaxRequestNum: number
6994
7146
 
6995
- /**
6996
- * 是否隐藏。
6997
- 注意:此字段可能返回 null,表示取不到有效值。
6998
- */
6999
- IsHide: number
7000
-
7001
7147
  /**
7002
7148
  * 创建时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
7003
7149
  注意:此字段可能返回 null,表示取不到有效值。
@@ -7412,18 +7558,13 @@ req_t:”>=“ 、 ”<=“
7412
7558
  }
7413
7559
 
7414
7560
  /**
7415
- * 描述api列表状态
7561
+ * BuildAPIDoc请求参数结构体
7416
7562
  */
7417
- export interface ApisStatus {
7418
- /**
7419
- * 符合条件的 API 接口数量。
7420
- */
7421
- TotalCount: number
7422
-
7563
+ export interface BuildAPIDocRequest {
7423
7564
  /**
7424
- * API 接口列表。
7565
+ * API文档ID
7425
7566
  */
7426
- ApiIdStatusSet: Array<DesApisStatus>
7567
+ ApiDocId: string
7427
7568
  }
7428
7569
 
7429
7570
  /**
@@ -7530,6 +7671,11 @@ export interface UnBindSubDomainRequest {
7530
7671
  SubDomain: string
7531
7672
  }
7532
7673
 
7674
+ /**
7675
+ * 数据结构
7676
+ */
7677
+ export type DescribeExclusiveInstancesResult = null
7678
+
7533
7679
  /**
7534
7680
  * 已绑定的插件信息。
7535
7681
  */
@@ -7881,7 +8027,7 @@ export interface ServiceReleaseVersion {
7881
8027
  * 发布版本列表。
7882
8028
  注意:此字段可能返回 null,表示取不到有效值。
7883
8029
  */
7884
- VersionList: Array<ServiceReleaseHistoryInfo>
8030
+ VersionList: Array<DescribeServiceReleaseVersionResultVersionListInfo>
7885
8031
  }
7886
8032
 
7887
8033
  /**