tencentcloud-sdk-python 3.0.1357__py2.py3-none-any.whl → 3.0.1358__py2.py3-none-any.whl

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 (41) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/bh/v20230418/bh_client.py +115 -0
  3. tencentcloud/bh/v20230418/errorcodes.py +15 -0
  4. tencentcloud/bh/v20230418/models.py +854 -28
  5. tencentcloud/bpaas/v20181217/models.py +0 -54
  6. tencentcloud/cdb/v20170320/cdb_client.py +1 -1
  7. tencentcloud/cdb/v20170320/models.py +15 -0
  8. tencentcloud/chc/v20230418/chc_client.py +23 -0
  9. tencentcloud/chc/v20230418/models.py +185 -2
  10. tencentcloud/cls/v20201016/cls_client.py +23 -0
  11. tencentcloud/cls/v20201016/models.py +79 -0
  12. tencentcloud/cwp/v20180228/models.py +2 -2
  13. tencentcloud/es/v20180416/models.py +57 -6
  14. tencentcloud/es/v20250101/__init__.py +0 -0
  15. tencentcloud/es/v20250101/errorcodes.py +45 -0
  16. tencentcloud/es/v20250101/es_client.py +228 -0
  17. tencentcloud/es/v20250101/models.py +2168 -0
  18. tencentcloud/ess/v20201111/ess_client.py +33 -0
  19. tencentcloud/ess/v20201111/models.py +137 -2
  20. tencentcloud/essbasic/v20210526/essbasic_client.py +33 -0
  21. tencentcloud/essbasic/v20210526/models.py +120 -0
  22. tencentcloud/lcic/v20220817/models.py +15 -0
  23. tencentcloud/ocr/v20181119/models.py +2 -2
  24. tencentcloud/sts/v20180813/errorcodes.py +9 -0
  25. tencentcloud/sts/v20180813/models.py +171 -0
  26. tencentcloud/sts/v20180813/sts_client.py +23 -0
  27. tencentcloud/tcr/v20190924/models.py +10 -6
  28. tencentcloud/tdmq/v20200217/models.py +68 -0
  29. tencentcloud/tione/v20211111/errorcodes.py +3 -0
  30. tencentcloud/tione/v20211111/models.py +384 -0
  31. tencentcloud/tione/v20211111/tione_client.py +23 -0
  32. tencentcloud/tse/v20201207/models.py +0 -296
  33. tencentcloud/tsf/v20180326/models.py +6 -110
  34. tencentcloud/tsf/v20180326/tsf_client.py +3 -1
  35. tencentcloud/waf/v20180125/models.py +473 -0
  36. tencentcloud/waf/v20180125/waf_client.py +69 -0
  37. {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/METADATA +1 -1
  38. {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/RECORD +41 -37
  39. {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/LICENSE +0 -0
  40. {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/WHEEL +0 -0
  41. {tencentcloud_sdk_python-3.0.1357.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/top_level.txt +0 -0
@@ -848,10 +848,8 @@ class CloudAPIGatewayCanaryRuleList(AbstractModel):
848
848
  def __init__(self):
849
849
  r"""
850
850
  :param _CanaryRuleList: 灰度规则
851
- 注意:此字段可能返回 null,表示取不到有效值。
852
851
  :type CanaryRuleList: list of CloudNativeAPIGatewayCanaryRule
853
852
  :param _TotalCount: 总数
854
- 注意:此字段可能返回 null,表示取不到有效值。
855
853
  :type TotalCount: int
856
854
  """
857
855
  self._CanaryRuleList = None
@@ -860,7 +858,6 @@ class CloudAPIGatewayCanaryRuleList(AbstractModel):
860
858
  @property
861
859
  def CanaryRuleList(self):
862
860
  """灰度规则
863
- 注意:此字段可能返回 null,表示取不到有效值。
864
861
  :rtype: list of CloudNativeAPIGatewayCanaryRule
865
862
  """
866
863
  return self._CanaryRuleList
@@ -872,7 +869,6 @@ class CloudAPIGatewayCanaryRuleList(AbstractModel):
872
869
  @property
873
870
  def TotalCount(self):
874
871
  """总数
875
- 注意:此字段可能返回 null,表示取不到有效值。
876
872
  :rtype: int
877
873
  """
878
874
  return self._TotalCount
@@ -908,16 +904,12 @@ class CloudNativeAPIGatewayBalancedService(AbstractModel):
908
904
  def __init__(self):
909
905
  r"""
910
906
  :param _ServiceID: 服务 ID,作为入参时,必填
911
- 注意:此字段可能返回 null,表示取不到有效值。
912
907
  :type ServiceID: str
913
908
  :param _ServiceName: 服务名称,作为入参时,无意义
914
- 注意:此字段可能返回 null,表示取不到有效值。
915
909
  :type ServiceName: str
916
910
  :param _UpstreamName: Upstream 名称,作为入参时,无意义
917
- 注意:此字段可能返回 null,表示取不到有效值。
918
911
  :type UpstreamName: str
919
912
  :param _Percent: 百分比,10 即 10%,范围0-100
920
- 注意:此字段可能返回 null,表示取不到有效值。
921
913
  :type Percent: float
922
914
  """
923
915
  self._ServiceID = None
@@ -928,7 +920,6 @@ class CloudNativeAPIGatewayBalancedService(AbstractModel):
928
920
  @property
929
921
  def ServiceID(self):
930
922
  """服务 ID,作为入参时,必填
931
- 注意:此字段可能返回 null,表示取不到有效值。
932
923
  :rtype: str
933
924
  """
934
925
  return self._ServiceID
@@ -940,7 +931,6 @@ class CloudNativeAPIGatewayBalancedService(AbstractModel):
940
931
  @property
941
932
  def ServiceName(self):
942
933
  """服务名称,作为入参时,无意义
943
- 注意:此字段可能返回 null,表示取不到有效值。
944
934
  :rtype: str
945
935
  """
946
936
  return self._ServiceName
@@ -952,7 +942,6 @@ class CloudNativeAPIGatewayBalancedService(AbstractModel):
952
942
  @property
953
943
  def UpstreamName(self):
954
944
  """Upstream 名称,作为入参时,无意义
955
- 注意:此字段可能返回 null,表示取不到有效值。
956
945
  :rtype: str
957
946
  """
958
947
  return self._UpstreamName
@@ -964,7 +953,6 @@ class CloudNativeAPIGatewayBalancedService(AbstractModel):
964
953
  @property
965
954
  def Percent(self):
966
955
  """百分比,10 即 10%,范围0-100
967
- 注意:此字段可能返回 null,表示取不到有效值。
968
956
  :rtype: float
969
957
  """
970
958
  return self._Percent
@@ -997,44 +985,32 @@ class CloudNativeAPIGatewayCanaryRule(AbstractModel):
997
985
  def __init__(self):
998
986
  r"""
999
987
  :param _Priority: 优先级,值范围为 0 到 100;值越大,优先级越高;不同规则间优先级不可重复
1000
- 注意:此字段可能返回 null,表示取不到有效值。
1001
988
  :type Priority: int
1002
989
  :param _Enabled: 是否启用规则
1003
- 注意:此字段可能返回 null,表示取不到有效值。
1004
990
  :type Enabled: bool
1005
991
  :param _ConditionList: 参数匹配条件
1006
- 注意:此字段可能返回 null,表示取不到有效值。
1007
992
  :type ConditionList: list of CloudNativeAPIGatewayCanaryRuleCondition
1008
993
  :param _BalancedServiceList: 服务的流量百分比配置
1009
994
  注意:此字段可能返回 null,表示取不到有效值。
1010
995
  :type BalancedServiceList: list of CloudNativeAPIGatewayBalancedService
1011
996
  :param _ServiceId: 归属服务 ID
1012
- 注意:此字段可能返回 null,表示取不到有效值。
1013
997
  :type ServiceId: str
1014
998
  :param _ServiceName: 归属服务名称
1015
- 注意:此字段可能返回 null,表示取不到有效值。
1016
999
  :type ServiceName: str
1017
1000
  :param _RuleType: 灰度规则类别
1018
1001
  Standard|Lane
1019
- 注意:此字段可能返回 null,表示取不到有效值。
1020
1002
  :type RuleType: str
1021
1003
  :param _MatchType: 全链路灰度策略多个条件之间的匹配方式,与AND,或OR
1022
- 注意:此字段可能返回 null,表示取不到有效值。
1023
1004
  :type MatchType: str
1024
1005
  :param _GroupId: 泳道组ID
1025
- 注意:此字段可能返回 null,表示取不到有效值。
1026
1006
  :type GroupId: str
1027
1007
  :param _GroupName: 泳道组名称
1028
- 注意:此字段可能返回 null,表示取不到有效值。
1029
1008
  :type GroupName: str
1030
1009
  :param _LaneId: 泳道ID
1031
- 注意:此字段可能返回 null,表示取不到有效值。
1032
1010
  :type LaneId: str
1033
1011
  :param _LaneName: 泳道名称
1034
- 注意:此字段可能返回 null,表示取不到有效值。
1035
1012
  :type LaneName: str
1036
1013
  :param _MatchMode: 泳道匹配规则:严格STRICT|宽松PERMISSIVE
1037
- 注意:此字段可能返回 null,表示取不到有效值。
1038
1014
  :type MatchMode: str
1039
1015
  :param _LaneTag: 泳道标签
1040
1016
  注意:此字段可能返回 null,表示取不到有效值。
@@ -1058,7 +1034,6 @@ Standard|Lane
1058
1034
  @property
1059
1035
  def Priority(self):
1060
1036
  """优先级,值范围为 0 到 100;值越大,优先级越高;不同规则间优先级不可重复
1061
- 注意:此字段可能返回 null,表示取不到有效值。
1062
1037
  :rtype: int
1063
1038
  """
1064
1039
  return self._Priority
@@ -1070,7 +1045,6 @@ Standard|Lane
1070
1045
  @property
1071
1046
  def Enabled(self):
1072
1047
  """是否启用规则
1073
- 注意:此字段可能返回 null,表示取不到有效值。
1074
1048
  :rtype: bool
1075
1049
  """
1076
1050
  return self._Enabled
@@ -1082,7 +1056,6 @@ Standard|Lane
1082
1056
  @property
1083
1057
  def ConditionList(self):
1084
1058
  """参数匹配条件
1085
- 注意:此字段可能返回 null,表示取不到有效值。
1086
1059
  :rtype: list of CloudNativeAPIGatewayCanaryRuleCondition
1087
1060
  """
1088
1061
  return self._ConditionList
@@ -1106,7 +1079,6 @@ Standard|Lane
1106
1079
  @property
1107
1080
  def ServiceId(self):
1108
1081
  """归属服务 ID
1109
- 注意:此字段可能返回 null,表示取不到有效值。
1110
1082
  :rtype: str
1111
1083
  """
1112
1084
  return self._ServiceId
@@ -1118,7 +1090,6 @@ Standard|Lane
1118
1090
  @property
1119
1091
  def ServiceName(self):
1120
1092
  """归属服务名称
1121
- 注意:此字段可能返回 null,表示取不到有效值。
1122
1093
  :rtype: str
1123
1094
  """
1124
1095
  return self._ServiceName
@@ -1131,7 +1102,6 @@ Standard|Lane
1131
1102
  def RuleType(self):
1132
1103
  """灰度规则类别
1133
1104
  Standard|Lane
1134
- 注意:此字段可能返回 null,表示取不到有效值。
1135
1105
  :rtype: str
1136
1106
  """
1137
1107
  return self._RuleType
@@ -1143,7 +1113,6 @@ Standard|Lane
1143
1113
  @property
1144
1114
  def MatchType(self):
1145
1115
  """全链路灰度策略多个条件之间的匹配方式,与AND,或OR
1146
- 注意:此字段可能返回 null,表示取不到有效值。
1147
1116
  :rtype: str
1148
1117
  """
1149
1118
  return self._MatchType
@@ -1155,7 +1124,6 @@ Standard|Lane
1155
1124
  @property
1156
1125
  def GroupId(self):
1157
1126
  """泳道组ID
1158
- 注意:此字段可能返回 null,表示取不到有效值。
1159
1127
  :rtype: str
1160
1128
  """
1161
1129
  return self._GroupId
@@ -1167,7 +1135,6 @@ Standard|Lane
1167
1135
  @property
1168
1136
  def GroupName(self):
1169
1137
  """泳道组名称
1170
- 注意:此字段可能返回 null,表示取不到有效值。
1171
1138
  :rtype: str
1172
1139
  """
1173
1140
  return self._GroupName
@@ -1179,7 +1146,6 @@ Standard|Lane
1179
1146
  @property
1180
1147
  def LaneId(self):
1181
1148
  """泳道ID
1182
- 注意:此字段可能返回 null,表示取不到有效值。
1183
1149
  :rtype: str
1184
1150
  """
1185
1151
  return self._LaneId
@@ -1191,7 +1157,6 @@ Standard|Lane
1191
1157
  @property
1192
1158
  def LaneName(self):
1193
1159
  """泳道名称
1194
- 注意:此字段可能返回 null,表示取不到有效值。
1195
1160
  :rtype: str
1196
1161
  """
1197
1162
  return self._LaneName
@@ -1203,7 +1168,6 @@ Standard|Lane
1203
1168
  @property
1204
1169
  def MatchMode(self):
1205
1170
  """泳道匹配规则:严格STRICT|宽松PERMISSIVE
1206
- 注意:此字段可能返回 null,表示取不到有效值。
1207
1171
  :rtype: str
1208
1172
  """
1209
1173
  return self._MatchMode
@@ -1268,25 +1232,18 @@ class CloudNativeAPIGatewayCanaryRuleCondition(AbstractModel):
1268
1232
  def __init__(self):
1269
1233
  r"""
1270
1234
  :param _Type: 条件类型,支持 path, method, query, header, cookie, body 和 system。
1271
- 注意:此字段可能返回 null,表示取不到有效值。
1272
1235
  :type Type: str
1273
1236
  :param _Key: 参数名
1274
- 注意:此字段可能返回 null,表示取不到有效值。
1275
1237
  :type Key: str
1276
1238
  :param _Operator: 操作符,支持 "le", "eq", "lt", "ne", "ge", "gt", "regex", "exists", "in", "not in", "prefix" ,"exact", "regex" 等
1277
- 注意:此字段可能返回 null,表示取不到有效值。
1278
1239
  :type Operator: str
1279
1240
  :param _Value: 目标参数值
1280
- 注意:此字段可能返回 null,表示取不到有效值。
1281
1241
  :type Value: str
1282
1242
  :param _Delimiter: 分隔符,当 Operator 为 in 或者 not in 时生效。支持值为英文逗号,英文分号,空格,换行符。
1283
- 注意:此字段可能返回 null,表示取不到有效值。
1284
1243
  :type Delimiter: str
1285
1244
  :param _GlobalConfigId: 全局配置 Id
1286
- 注意:此字段可能返回 null,表示取不到有效值。
1287
1245
  :type GlobalConfigId: str
1288
1246
  :param _GlobalConfigName: 全局配置名称
1289
- 注意:此字段可能返回 null,表示取不到有效值。
1290
1247
  :type GlobalConfigName: str
1291
1248
  """
1292
1249
  self._Type = None
@@ -1300,7 +1257,6 @@ class CloudNativeAPIGatewayCanaryRuleCondition(AbstractModel):
1300
1257
  @property
1301
1258
  def Type(self):
1302
1259
  """条件类型,支持 path, method, query, header, cookie, body 和 system。
1303
- 注意:此字段可能返回 null,表示取不到有效值。
1304
1260
  :rtype: str
1305
1261
  """
1306
1262
  return self._Type
@@ -1312,7 +1268,6 @@ class CloudNativeAPIGatewayCanaryRuleCondition(AbstractModel):
1312
1268
  @property
1313
1269
  def Key(self):
1314
1270
  """参数名
1315
- 注意:此字段可能返回 null,表示取不到有效值。
1316
1271
  :rtype: str
1317
1272
  """
1318
1273
  return self._Key
@@ -1324,7 +1279,6 @@ class CloudNativeAPIGatewayCanaryRuleCondition(AbstractModel):
1324
1279
  @property
1325
1280
  def Operator(self):
1326
1281
  """操作符,支持 "le", "eq", "lt", "ne", "ge", "gt", "regex", "exists", "in", "not in", "prefix" ,"exact", "regex" 等
1327
- 注意:此字段可能返回 null,表示取不到有效值。
1328
1282
  :rtype: str
1329
1283
  """
1330
1284
  return self._Operator
@@ -1336,7 +1290,6 @@ class CloudNativeAPIGatewayCanaryRuleCondition(AbstractModel):
1336
1290
  @property
1337
1291
  def Value(self):
1338
1292
  """目标参数值
1339
- 注意:此字段可能返回 null,表示取不到有效值。
1340
1293
  :rtype: str
1341
1294
  """
1342
1295
  return self._Value
@@ -1348,7 +1301,6 @@ class CloudNativeAPIGatewayCanaryRuleCondition(AbstractModel):
1348
1301
  @property
1349
1302
  def Delimiter(self):
1350
1303
  """分隔符,当 Operator 为 in 或者 not in 时生效。支持值为英文逗号,英文分号,空格,换行符。
1351
- 注意:此字段可能返回 null,表示取不到有效值。
1352
1304
  :rtype: str
1353
1305
  """
1354
1306
  return self._Delimiter
@@ -1360,7 +1312,6 @@ class CloudNativeAPIGatewayCanaryRuleCondition(AbstractModel):
1360
1312
  @property
1361
1313
  def GlobalConfigId(self):
1362
1314
  """全局配置 Id
1363
- 注意:此字段可能返回 null,表示取不到有效值。
1364
1315
  :rtype: str
1365
1316
  """
1366
1317
  return self._GlobalConfigId
@@ -1372,7 +1323,6 @@ class CloudNativeAPIGatewayCanaryRuleCondition(AbstractModel):
1372
1323
  @property
1373
1324
  def GlobalConfigName(self):
1374
1325
  """全局配置名称
1375
- 注意:此字段可能返回 null,表示取不到有效值。
1376
1326
  :rtype: str
1377
1327
  """
1378
1328
  return self._GlobalConfigName
@@ -1752,25 +1702,18 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1752
1702
  :param _NodeIp: 节点 ip
1753
1703
  :type NodeIp: str
1754
1704
  :param _ZoneId: Zone id
1755
- 注意:此字段可能返回 null,表示取不到有效值。
1756
1705
  :type ZoneId: str
1757
1706
  :param _Zone: Zone
1758
- 注意:此字段可能返回 null,表示取不到有效值。
1759
1707
  :type Zone: str
1760
1708
  :param _GroupId: 分组ID
1761
- 注意:此字段可能返回 null,表示取不到有效值。
1762
1709
  :type GroupId: str
1763
1710
  :param _GroupName: 分组名
1764
- 注意:此字段可能返回 null,表示取不到有效值。
1765
1711
  :type GroupName: str
1766
1712
  :param _Status: 状态
1767
- 注意:此字段可能返回 null,表示取不到有效值。
1768
1713
  :type Status: str
1769
1714
  :param _Weight: 节点权重
1770
- 注意:此字段可能返回 null,表示取不到有效值。
1771
1715
  :type Weight: int
1772
1716
  :param _IsDefaultWeight: 是否默认权重
1773
- 注意:此字段可能返回 null,表示取不到有效值。
1774
1717
  :type IsDefaultWeight: bool
1775
1718
  """
1776
1719
  self._NodeId = None
@@ -1808,7 +1751,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1808
1751
  @property
1809
1752
  def ZoneId(self):
1810
1753
  """Zone id
1811
- 注意:此字段可能返回 null,表示取不到有效值。
1812
1754
  :rtype: str
1813
1755
  """
1814
1756
  return self._ZoneId
@@ -1820,7 +1762,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1820
1762
  @property
1821
1763
  def Zone(self):
1822
1764
  """Zone
1823
- 注意:此字段可能返回 null,表示取不到有效值。
1824
1765
  :rtype: str
1825
1766
  """
1826
1767
  return self._Zone
@@ -1832,7 +1773,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1832
1773
  @property
1833
1774
  def GroupId(self):
1834
1775
  """分组ID
1835
- 注意:此字段可能返回 null,表示取不到有效值。
1836
1776
  :rtype: str
1837
1777
  """
1838
1778
  return self._GroupId
@@ -1844,7 +1784,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1844
1784
  @property
1845
1785
  def GroupName(self):
1846
1786
  """分组名
1847
- 注意:此字段可能返回 null,表示取不到有效值。
1848
1787
  :rtype: str
1849
1788
  """
1850
1789
  return self._GroupName
@@ -1856,7 +1795,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1856
1795
  @property
1857
1796
  def Status(self):
1858
1797
  """状态
1859
- 注意:此字段可能返回 null,表示取不到有效值。
1860
1798
  :rtype: str
1861
1799
  """
1862
1800
  return self._Status
@@ -1868,7 +1806,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1868
1806
  @property
1869
1807
  def Weight(self):
1870
1808
  """节点权重
1871
- 注意:此字段可能返回 null,表示取不到有效值。
1872
1809
  :rtype: int
1873
1810
  """
1874
1811
  return self._Weight
@@ -1880,7 +1817,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1880
1817
  @property
1881
1818
  def IsDefaultWeight(self):
1882
1819
  """是否默认权重
1883
- 注意:此字段可能返回 null,表示取不到有效值。
1884
1820
  :rtype: bool
1885
1821
  """
1886
1822
  return self._IsDefaultWeight
@@ -1973,30 +1909,24 @@ class CloudNativeAPIGatewayRateLimitDetail(AbstractModel):
1973
1909
  :param _QpsThresholds: qps阈值
1974
1910
  :type QpsThresholds: list of QpsThreshold
1975
1911
  :param _Path: 需要进行流量控制的请求路径
1976
- 注意:此字段可能返回 null,表示取不到有效值。
1977
1912
  :type Path: str
1978
1913
  :param _Header: 需要进行流量控制的请求头Key
1979
- 注意:此字段可能返回 null,表示取不到有效值。
1980
1914
  :type Header: str
1981
1915
  :param _LimitBy: 限流依据
1982
1916
  ip service consumer credential path header
1983
1917
  :type LimitBy: str
1984
1918
  :param _ExternalRedis: 外部redis配置
1985
- 注意:此字段可能返回 null,表示取不到有效值。
1986
1919
  :type ExternalRedis: :class:`tencentcloud.tse.v20201207.models.ExternalRedis`
1987
1920
  :param _Policy: 计数器策略
1988
1921
  local 单机
1989
1922
  redis 默认redis
1990
1923
  external_redis 外部redis
1991
1924
 
1992
- 注意:此字段可能返回 null,表示取不到有效值。
1993
1925
  :type Policy: str
1994
1926
  :param _RateLimitResponse: 响应配置,响应策略为text
1995
1927
 
1996
- 注意:此字段可能返回 null,表示取不到有效值。
1997
1928
  :type RateLimitResponse: :class:`tencentcloud.tse.v20201207.models.RateLimitResponse`
1998
1929
  :param _RateLimitResponseUrl: 请求转发地址
1999
- 注意:此字段可能返回 null,表示取不到有效值。
2000
1930
  :type RateLimitResponseUrl: str
2001
1931
  :param _ResponseType: 响应策略
2002
1932
  url请求转发
@@ -2058,7 +1988,6 @@ default 直接返回
2058
1988
  @property
2059
1989
  def Path(self):
2060
1990
  """需要进行流量控制的请求路径
2061
- 注意:此字段可能返回 null,表示取不到有效值。
2062
1991
  :rtype: str
2063
1992
  """
2064
1993
  return self._Path
@@ -2070,7 +1999,6 @@ default 直接返回
2070
1999
  @property
2071
2000
  def Header(self):
2072
2001
  """需要进行流量控制的请求头Key
2073
- 注意:此字段可能返回 null,表示取不到有效值。
2074
2002
  :rtype: str
2075
2003
  """
2076
2004
  return self._Header
@@ -2094,7 +2022,6 @@ ip service consumer credential path header
2094
2022
  @property
2095
2023
  def ExternalRedis(self):
2096
2024
  """外部redis配置
2097
- 注意:此字段可能返回 null,表示取不到有效值。
2098
2025
  :rtype: :class:`tencentcloud.tse.v20201207.models.ExternalRedis`
2099
2026
  """
2100
2027
  return self._ExternalRedis
@@ -2110,7 +2037,6 @@ local 单机
2110
2037
  redis 默认redis
2111
2038
  external_redis 外部redis
2112
2039
 
2113
- 注意:此字段可能返回 null,表示取不到有效值。
2114
2040
  :rtype: str
2115
2041
  """
2116
2042
  return self._Policy
@@ -2123,7 +2049,6 @@ external_redis 外部redis
2123
2049
  def RateLimitResponse(self):
2124
2050
  """响应配置,响应策略为text
2125
2051
 
2126
- 注意:此字段可能返回 null,表示取不到有效值。
2127
2052
  :rtype: :class:`tencentcloud.tse.v20201207.models.RateLimitResponse`
2128
2053
  """
2129
2054
  return self._RateLimitResponse
@@ -2135,7 +2060,6 @@ external_redis 外部redis
2135
2060
  @property
2136
2061
  def RateLimitResponseUrl(self):
2137
2062
  """请求转发地址
2138
- 注意:此字段可能返回 null,表示取不到有效值。
2139
2063
  :rtype: str
2140
2064
  """
2141
2065
  return self._RateLimitResponseUrl
@@ -2272,25 +2196,18 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2272
2196
  :param _StrategyId: 策略ID
2273
2197
  :type StrategyId: str
2274
2198
  :param _StrategyName: 策略名称
2275
- 注意:此字段可能返回 null,表示取不到有效值。
2276
2199
  :type StrategyName: str
2277
2200
  :param _CreateTime: 创建时间
2278
- 注意:此字段可能返回 null,表示取不到有效值。
2279
2201
  :type CreateTime: str
2280
2202
  :param _ModifyTime: 更新时间
2281
- 注意:此字段可能返回 null,表示取不到有效值。
2282
2203
  :type ModifyTime: str
2283
2204
  :param _Description: 策略描述
2284
- 注意:此字段可能返回 null,表示取不到有效值。
2285
2205
  :type Description: str
2286
2206
  :param _Config: 弹性伸缩配置
2287
- 注意:此字段可能返回 null,表示取不到有效值。
2288
2207
  :type Config: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayStrategyAutoScalerConfig`
2289
2208
  :param _GatewayId: 网关实例ID
2290
- 注意:此字段可能返回 null,表示取不到有效值。
2291
2209
  :type GatewayId: str
2292
2210
  :param _CronConfig: 定时伸缩配置
2293
- 注意:此字段可能返回 null,表示取不到有效值。
2294
2211
  :type CronConfig: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayStrategyCronScalerConfig`
2295
2212
  :param _MaxReplicas: 最大节点数
2296
2213
  注意:此字段可能返回 null,表示取不到有效值。
@@ -2320,7 +2237,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2320
2237
  @property
2321
2238
  def StrategyName(self):
2322
2239
  """策略名称
2323
- 注意:此字段可能返回 null,表示取不到有效值。
2324
2240
  :rtype: str
2325
2241
  """
2326
2242
  return self._StrategyName
@@ -2332,7 +2248,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2332
2248
  @property
2333
2249
  def CreateTime(self):
2334
2250
  """创建时间
2335
- 注意:此字段可能返回 null,表示取不到有效值。
2336
2251
  :rtype: str
2337
2252
  """
2338
2253
  return self._CreateTime
@@ -2344,7 +2259,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2344
2259
  @property
2345
2260
  def ModifyTime(self):
2346
2261
  """更新时间
2347
- 注意:此字段可能返回 null,表示取不到有效值。
2348
2262
  :rtype: str
2349
2263
  """
2350
2264
  return self._ModifyTime
@@ -2356,7 +2270,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2356
2270
  @property
2357
2271
  def Description(self):
2358
2272
  """策略描述
2359
- 注意:此字段可能返回 null,表示取不到有效值。
2360
2273
  :rtype: str
2361
2274
  """
2362
2275
  return self._Description
@@ -2368,7 +2281,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2368
2281
  @property
2369
2282
  def Config(self):
2370
2283
  """弹性伸缩配置
2371
- 注意:此字段可能返回 null,表示取不到有效值。
2372
2284
  :rtype: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayStrategyAutoScalerConfig`
2373
2285
  """
2374
2286
  return self._Config
@@ -2380,7 +2292,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2380
2292
  @property
2381
2293
  def GatewayId(self):
2382
2294
  """网关实例ID
2383
- 注意:此字段可能返回 null,表示取不到有效值。
2384
2295
  :rtype: str
2385
2296
  """
2386
2297
  return self._GatewayId
@@ -2392,7 +2303,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2392
2303
  @property
2393
2304
  def CronConfig(self):
2394
2305
  """定时伸缩配置
2395
- 注意:此字段可能返回 null,表示取不到有效值。
2396
2306
  :rtype: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayStrategyCronScalerConfig`
2397
2307
  """
2398
2308
  return self._CronConfig
@@ -2719,19 +2629,14 @@ class CloudNativeAPIGatewayStrategyBindingGroupInfo(AbstractModel):
2719
2629
  def __init__(self):
2720
2630
  r"""
2721
2631
  :param _GroupId: 网关分组ID
2722
- 注意:此字段可能返回 null,表示取不到有效值。
2723
2632
  :type GroupId: str
2724
2633
  :param _NodeConfig: 节点配置
2725
- 注意:此字段可能返回 null,表示取不到有效值。
2726
2634
  :type NodeConfig: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayNodeConfig`
2727
2635
  :param _BindTime: 绑定时间
2728
- 注意:此字段可能返回 null,表示取不到有效值。
2729
2636
  :type BindTime: str
2730
2637
  :param _GroupName: 网关分组名称
2731
- 注意:此字段可能返回 null,表示取不到有效值。
2732
2638
  :type GroupName: str
2733
2639
  :param _Status: 绑定状态
2734
- 注意:此字段可能返回 null,表示取不到有效值。
2735
2640
  :type Status: str
2736
2641
  """
2737
2642
  self._GroupId = None
@@ -2743,7 +2648,6 @@ class CloudNativeAPIGatewayStrategyBindingGroupInfo(AbstractModel):
2743
2648
  @property
2744
2649
  def GroupId(self):
2745
2650
  """网关分组ID
2746
- 注意:此字段可能返回 null,表示取不到有效值。
2747
2651
  :rtype: str
2748
2652
  """
2749
2653
  return self._GroupId
@@ -2755,7 +2659,6 @@ class CloudNativeAPIGatewayStrategyBindingGroupInfo(AbstractModel):
2755
2659
  @property
2756
2660
  def NodeConfig(self):
2757
2661
  """节点配置
2758
- 注意:此字段可能返回 null,表示取不到有效值。
2759
2662
  :rtype: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayNodeConfig`
2760
2663
  """
2761
2664
  return self._NodeConfig
@@ -2767,7 +2670,6 @@ class CloudNativeAPIGatewayStrategyBindingGroupInfo(AbstractModel):
2767
2670
  @property
2768
2671
  def BindTime(self):
2769
2672
  """绑定时间
2770
- 注意:此字段可能返回 null,表示取不到有效值。
2771
2673
  :rtype: str
2772
2674
  """
2773
2675
  return self._BindTime
@@ -2779,7 +2681,6 @@ class CloudNativeAPIGatewayStrategyBindingGroupInfo(AbstractModel):
2779
2681
  @property
2780
2682
  def GroupName(self):
2781
2683
  """网关分组名称
2782
- 注意:此字段可能返回 null,表示取不到有效值。
2783
2684
  :rtype: str
2784
2685
  """
2785
2686
  return self._GroupName
@@ -2791,7 +2692,6 @@ class CloudNativeAPIGatewayStrategyBindingGroupInfo(AbstractModel):
2791
2692
  @property
2792
2693
  def Status(self):
2793
2694
  """绑定状态
2794
- 注意:此字段可能返回 null,表示取不到有效值。
2795
2695
  :rtype: str
2796
2696
  """
2797
2697
  return self._Status
@@ -3035,10 +2935,8 @@ class CloudNativeAPIGatewayVpcConfig(AbstractModel):
3035
2935
  def __init__(self):
3036
2936
  r"""
3037
2937
  :param _VpcId: 私有网络ID。
3038
- 注意:此字段可能返回 null,表示取不到有效值。
3039
2938
  :type VpcId: str
3040
2939
  :param _SubnetId: 子网ID。
3041
- 注意:此字段可能返回 null,表示取不到有效值。
3042
2940
  :type SubnetId: str
3043
2941
  """
3044
2942
  self._VpcId = None
@@ -3047,7 +2945,6 @@ class CloudNativeAPIGatewayVpcConfig(AbstractModel):
3047
2945
  @property
3048
2946
  def VpcId(self):
3049
2947
  """私有网络ID。
3050
- 注意:此字段可能返回 null,表示取不到有效值。
3051
2948
  :rtype: str
3052
2949
  """
3053
2950
  return self._VpcId
@@ -3059,7 +2956,6 @@ class CloudNativeAPIGatewayVpcConfig(AbstractModel):
3059
2956
  @property
3060
2957
  def SubnetId(self):
3061
2958
  """子网ID。
3062
- 注意:此字段可能返回 null,表示取不到有效值。
3063
2959
  :rtype: str
3064
2960
  """
3065
2961
  return self._SubnetId
@@ -5818,7 +5714,6 @@ class CreateCloudNativeAPIGatewayResult(AbstractModel):
5818
5714
  :param _Status: 云原生网关状态。
5819
5715
  :type Status: str
5820
5716
  :param _TaskId: 任务ID
5821
- 注意:此字段可能返回 null,表示取不到有效值。
5822
5717
  :type TaskId: str
5823
5718
  """
5824
5719
  self._GatewayId = None
@@ -5850,7 +5745,6 @@ class CreateCloudNativeAPIGatewayResult(AbstractModel):
5850
5745
  @property
5851
5746
  def TaskId(self):
5852
5747
  """任务ID
5853
- 注意:此字段可能返回 null,表示取不到有效值。
5854
5748
  :rtype: str
5855
5749
  """
5856
5750
  return self._TaskId
@@ -10401,7 +10295,6 @@ class DeleteNativeGatewayServerGroupResult(AbstractModel):
10401
10295
  :param _Status: 删除状态
10402
10296
  :type Status: str
10403
10297
  :param _TaskId: 任务ID
10404
- 注意:此字段可能返回 null,表示取不到有效值。
10405
10298
  :type TaskId: str
10406
10299
  """
10407
10300
  self._GatewayId = None
@@ -10445,7 +10338,6 @@ class DeleteNativeGatewayServerGroupResult(AbstractModel):
10445
10338
  @property
10446
10339
  def TaskId(self):
10447
10340
  """任务ID
10448
- 注意:此字段可能返回 null,表示取不到有效值。
10449
10341
  :rtype: str
10450
10342
  """
10451
10343
  return self._TaskId
@@ -11440,13 +11332,10 @@ class DescribeCloudNativeAPIGatewayConfigResult(AbstractModel):
11440
11332
  :param _ConfigList: 分组网络配置列表。
11441
11333
  :type ConfigList: list of CloudNativeAPIGatewayConfig
11442
11334
  :param _GroupSubnetId: 分组子网信息
11443
- 注意:此字段可能返回 null,表示取不到有效值。
11444
11335
  :type GroupSubnetId: str
11445
11336
  :param _GroupVpcId: 分组VPC信息
11446
- 注意:此字段可能返回 null,表示取不到有效值。
11447
11337
  :type GroupVpcId: str
11448
11338
  :param _GroupId: 分组ID
11449
- 注意:此字段可能返回 null,表示取不到有效值。
11450
11339
  :type GroupId: str
11451
11340
  """
11452
11341
  self._GatewayId = None
@@ -11480,7 +11369,6 @@ class DescribeCloudNativeAPIGatewayConfigResult(AbstractModel):
11480
11369
  @property
11481
11370
  def GroupSubnetId(self):
11482
11371
  """分组子网信息
11483
- 注意:此字段可能返回 null,表示取不到有效值。
11484
11372
  :rtype: str
11485
11373
  """
11486
11374
  return self._GroupSubnetId
@@ -11492,7 +11380,6 @@ class DescribeCloudNativeAPIGatewayConfigResult(AbstractModel):
11492
11380
  @property
11493
11381
  def GroupVpcId(self):
11494
11382
  """分组VPC信息
11495
- 注意:此字段可能返回 null,表示取不到有效值。
11496
11383
  :rtype: str
11497
11384
  """
11498
11385
  return self._GroupVpcId
@@ -11504,7 +11391,6 @@ class DescribeCloudNativeAPIGatewayConfigResult(AbstractModel):
11504
11391
  @property
11505
11392
  def GroupId(self):
11506
11393
  """分组ID
11507
- 注意:此字段可能返回 null,表示取不到有效值。
11508
11394
  :rtype: str
11509
11395
  """
11510
11396
  return self._GroupId
@@ -11988,53 +11874,37 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
11988
11874
  :param _CreateTime: 云原生API网关创建时间。
11989
11875
  :type CreateTime: str
11990
11876
  :param _Tags: 实例的标签信息
11991
- 注意:此字段可能返回 null,表示取不到有效值。
11992
11877
  :type Tags: list of InstanceTagInfo
11993
11878
  :param _EnableCls: 是否开启 cls 日志
11994
- 注意:此字段可能返回 null,表示取不到有效值。
11995
11879
  :type EnableCls: bool
11996
11880
  :param _TradeType: 付费模式,0表示后付费,1预付费
11997
- 注意:此字段可能返回 null,表示取不到有效值。
11998
11881
  :type TradeType: int
11999
11882
  :param _FeatureVersion: 实例版本,当前支持开发版、标准版、专业版【TRIAL、STANDARD、PROFESSIONAL】
12000
- 注意:此字段可能返回 null,表示取不到有效值。
12001
11883
  :type FeatureVersion: str
12002
11884
  :param _InternetMaxBandwidthOut: 公网出流量带宽,[1,2048]Mbps
12003
- 注意:此字段可能返回 null,表示取不到有效值。
12004
11885
  :type InternetMaxBandwidthOut: int
12005
11886
  :param _AutoRenewFlag: 自动续费标记,0表示默认状态(用户未设置,即初始状态);
12006
11887
  1表示自动续费,2表示明确不自动续费(用户设置),若业务无续费概念或无需自动续费,需要设置为0
12007
- 注意:此字段可能返回 null,表示取不到有效值。
12008
11888
  :type AutoRenewFlag: int
12009
11889
  :param _CurDeadline: 到期时间,预付费时使用
12010
- 注意:此字段可能返回 null,表示取不到有效值。
12011
11890
  :type CurDeadline: str
12012
11891
  :param _IsolateTime: 隔离时间,实例隔离时使用
12013
- 注意:此字段可能返回 null,表示取不到有效值。
12014
11892
  :type IsolateTime: str
12015
11893
  :param _EnableInternet: 是否开启客户端公网。
12016
- 注意:此字段可能返回 null,表示取不到有效值。
12017
11894
  :type EnableInternet: bool
12018
11895
  :param _EngineRegion: 实例实际的地域信息
12019
- 注意:此字段可能返回 null,表示取不到有效值。
12020
11896
  :type EngineRegion: str
12021
11897
  :param _IngressClassName: Ingress class名称
12022
- 注意:此字段可能返回 null,表示取不到有效值。
12023
11898
  :type IngressClassName: str
12024
11899
  :param _InternetPayMode: 公网计费方式。可选取值 BANDWIDTH | TRAFFIC ,表示按带宽和按流量计费。
12025
- 注意:此字段可能返回 null,表示取不到有效值。
12026
11900
  :type InternetPayMode: str
12027
11901
  :param _GatewayMinorVersion: 云原生API网关小版本号
12028
- 注意:此字段可能返回 null,表示取不到有效值。
12029
11902
  :type GatewayMinorVersion: str
12030
11903
  :param _InstancePort: 实例监听的端口信息
12031
- 注意:此字段可能返回 null,表示取不到有效值。
12032
11904
  :type InstancePort: :class:`tencentcloud.tse.v20201207.models.InstancePort`
12033
11905
  :param _LoadBalancerType: 公网CLB默认类型
12034
- 注意:此字段可能返回 null,表示取不到有效值。
12035
11906
  :type LoadBalancerType: str
12036
11907
  :param _PublicIpAddresses: 公网IP地址列表
12037
- 注意:此字段可能返回 null,表示取不到有效值。
12038
11908
  :type PublicIpAddresses: list of str
12039
11909
  """
12040
11910
  self._GatewayId = None
@@ -12167,7 +12037,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12167
12037
  @property
12168
12038
  def Tags(self):
12169
12039
  """实例的标签信息
12170
- 注意:此字段可能返回 null,表示取不到有效值。
12171
12040
  :rtype: list of InstanceTagInfo
12172
12041
  """
12173
12042
  return self._Tags
@@ -12179,7 +12048,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12179
12048
  @property
12180
12049
  def EnableCls(self):
12181
12050
  """是否开启 cls 日志
12182
- 注意:此字段可能返回 null,表示取不到有效值。
12183
12051
  :rtype: bool
12184
12052
  """
12185
12053
  return self._EnableCls
@@ -12191,7 +12059,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12191
12059
  @property
12192
12060
  def TradeType(self):
12193
12061
  """付费模式,0表示后付费,1预付费
12194
- 注意:此字段可能返回 null,表示取不到有效值。
12195
12062
  :rtype: int
12196
12063
  """
12197
12064
  return self._TradeType
@@ -12203,7 +12070,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12203
12070
  @property
12204
12071
  def FeatureVersion(self):
12205
12072
  """实例版本,当前支持开发版、标准版、专业版【TRIAL、STANDARD、PROFESSIONAL】
12206
- 注意:此字段可能返回 null,表示取不到有效值。
12207
12073
  :rtype: str
12208
12074
  """
12209
12075
  return self._FeatureVersion
@@ -12215,7 +12081,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12215
12081
  @property
12216
12082
  def InternetMaxBandwidthOut(self):
12217
12083
  """公网出流量带宽,[1,2048]Mbps
12218
- 注意:此字段可能返回 null,表示取不到有效值。
12219
12084
  :rtype: int
12220
12085
  """
12221
12086
  return self._InternetMaxBandwidthOut
@@ -12228,7 +12093,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12228
12093
  def AutoRenewFlag(self):
12229
12094
  """自动续费标记,0表示默认状态(用户未设置,即初始状态);
12230
12095
  1表示自动续费,2表示明确不自动续费(用户设置),若业务无续费概念或无需自动续费,需要设置为0
12231
- 注意:此字段可能返回 null,表示取不到有效值。
12232
12096
  :rtype: int
12233
12097
  """
12234
12098
  return self._AutoRenewFlag
@@ -12240,7 +12104,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12240
12104
  @property
12241
12105
  def CurDeadline(self):
12242
12106
  """到期时间,预付费时使用
12243
- 注意:此字段可能返回 null,表示取不到有效值。
12244
12107
  :rtype: str
12245
12108
  """
12246
12109
  return self._CurDeadline
@@ -12252,7 +12115,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12252
12115
  @property
12253
12116
  def IsolateTime(self):
12254
12117
  """隔离时间,实例隔离时使用
12255
- 注意:此字段可能返回 null,表示取不到有效值。
12256
12118
  :rtype: str
12257
12119
  """
12258
12120
  return self._IsolateTime
@@ -12264,7 +12126,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12264
12126
  @property
12265
12127
  def EnableInternet(self):
12266
12128
  """是否开启客户端公网。
12267
- 注意:此字段可能返回 null,表示取不到有效值。
12268
12129
  :rtype: bool
12269
12130
  """
12270
12131
  return self._EnableInternet
@@ -12276,7 +12137,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12276
12137
  @property
12277
12138
  def EngineRegion(self):
12278
12139
  """实例实际的地域信息
12279
- 注意:此字段可能返回 null,表示取不到有效值。
12280
12140
  :rtype: str
12281
12141
  """
12282
12142
  return self._EngineRegion
@@ -12288,7 +12148,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12288
12148
  @property
12289
12149
  def IngressClassName(self):
12290
12150
  """Ingress class名称
12291
- 注意:此字段可能返回 null,表示取不到有效值。
12292
12151
  :rtype: str
12293
12152
  """
12294
12153
  return self._IngressClassName
@@ -12300,7 +12159,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12300
12159
  @property
12301
12160
  def InternetPayMode(self):
12302
12161
  """公网计费方式。可选取值 BANDWIDTH | TRAFFIC ,表示按带宽和按流量计费。
12303
- 注意:此字段可能返回 null,表示取不到有效值。
12304
12162
  :rtype: str
12305
12163
  """
12306
12164
  return self._InternetPayMode
@@ -12312,7 +12170,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12312
12170
  @property
12313
12171
  def GatewayMinorVersion(self):
12314
12172
  """云原生API网关小版本号
12315
- 注意:此字段可能返回 null,表示取不到有效值。
12316
12173
  :rtype: str
12317
12174
  """
12318
12175
  return self._GatewayMinorVersion
@@ -12324,7 +12181,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12324
12181
  @property
12325
12182
  def InstancePort(self):
12326
12183
  """实例监听的端口信息
12327
- 注意:此字段可能返回 null,表示取不到有效值。
12328
12184
  :rtype: :class:`tencentcloud.tse.v20201207.models.InstancePort`
12329
12185
  """
12330
12186
  return self._InstancePort
@@ -12336,7 +12192,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12336
12192
  @property
12337
12193
  def LoadBalancerType(self):
12338
12194
  """公网CLB默认类型
12339
- 注意:此字段可能返回 null,表示取不到有效值。
12340
12195
  :rtype: str
12341
12196
  """
12342
12197
  return self._LoadBalancerType
@@ -12348,7 +12203,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12348
12203
  @property
12349
12204
  def PublicIpAddresses(self):
12350
12205
  """公网IP地址列表
12351
- 注意:此字段可能返回 null,表示取不到有效值。
12352
12206
  :rtype: list of str
12353
12207
  """
12354
12208
  return self._PublicIpAddresses
@@ -16949,13 +16803,10 @@ class DescribePublicAddressConfigResult(AbstractModel):
16949
16803
  def __init__(self):
16950
16804
  r"""
16951
16805
  :param _GatewayId: 网关实例id
16952
- 注意:此字段可能返回 null,表示取不到有效值。
16953
16806
  :type GatewayId: str
16954
16807
  :param _ConfigList: 公网地址信息
16955
- 注意:此字段可能返回 null,表示取不到有效值。
16956
16808
  :type ConfigList: list of PublicAddressConfig
16957
16809
  :param _TotalCount: 总个数
16958
- 注意:此字段可能返回 null,表示取不到有效值。
16959
16810
  :type TotalCount: int
16960
16811
  """
16961
16812
  self._GatewayId = None
@@ -16965,7 +16816,6 @@ class DescribePublicAddressConfigResult(AbstractModel):
16965
16816
  @property
16966
16817
  def GatewayId(self):
16967
16818
  """网关实例id
16968
- 注意:此字段可能返回 null,表示取不到有效值。
16969
16819
  :rtype: str
16970
16820
  """
16971
16821
  return self._GatewayId
@@ -16977,7 +16827,6 @@ class DescribePublicAddressConfigResult(AbstractModel):
16977
16827
  @property
16978
16828
  def ConfigList(self):
16979
16829
  """公网地址信息
16980
- 注意:此字段可能返回 null,表示取不到有效值。
16981
16830
  :rtype: list of PublicAddressConfig
16982
16831
  """
16983
16832
  return self._ConfigList
@@ -16989,7 +16838,6 @@ class DescribePublicAddressConfigResult(AbstractModel):
16989
16838
  @property
16990
16839
  def TotalCount(self):
16991
16840
  """总个数
16992
- 注意:此字段可能返回 null,表示取不到有效值。
16993
16841
  :rtype: int
16994
16842
  """
16995
16843
  return self._TotalCount
@@ -17980,16 +17828,12 @@ class DescribeWafProtectionResult(AbstractModel):
17980
17828
  def __init__(self):
17981
17829
  r"""
17982
17830
  :param _GlobalStatus: 全局防护状态
17983
- 注意:此字段可能返回 null,表示取不到有效值。
17984
17831
  :type GlobalStatus: str
17985
17832
  :param _ServicesStatus: 服务防护状态
17986
- 注意:此字段可能返回 null,表示取不到有效值。
17987
17833
  :type ServicesStatus: list of ServiceWafStatus
17988
17834
  :param _RouteStatus: 路由防护状态
17989
- 注意:此字段可能返回 null,表示取不到有效值。
17990
17835
  :type RouteStatus: list of RouteWafStatus
17991
17836
  :param _ObjectStatus: 对象防护状态
17992
- 注意:此字段可能返回 null,表示取不到有效值。
17993
17837
  :type ObjectStatus: str
17994
17838
  """
17995
17839
  self._GlobalStatus = None
@@ -18000,7 +17844,6 @@ class DescribeWafProtectionResult(AbstractModel):
18000
17844
  @property
18001
17845
  def GlobalStatus(self):
18002
17846
  """全局防护状态
18003
- 注意:此字段可能返回 null,表示取不到有效值。
18004
17847
  :rtype: str
18005
17848
  """
18006
17849
  return self._GlobalStatus
@@ -18012,7 +17855,6 @@ class DescribeWafProtectionResult(AbstractModel):
18012
17855
  @property
18013
17856
  def ServicesStatus(self):
18014
17857
  """服务防护状态
18015
- 注意:此字段可能返回 null,表示取不到有效值。
18016
17858
  :rtype: list of ServiceWafStatus
18017
17859
  """
18018
17860
  return self._ServicesStatus
@@ -18024,7 +17866,6 @@ class DescribeWafProtectionResult(AbstractModel):
18024
17866
  @property
18025
17867
  def RouteStatus(self):
18026
17868
  """路由防护状态
18027
- 注意:此字段可能返回 null,表示取不到有效值。
18028
17869
  :rtype: list of RouteWafStatus
18029
17870
  """
18030
17871
  return self._RouteStatus
@@ -18036,7 +17877,6 @@ class DescribeWafProtectionResult(AbstractModel):
18036
17877
  @property
18037
17878
  def ObjectStatus(self):
18038
17879
  """对象防护状态
18039
- 注意:此字段可能返回 null,表示取不到有效值。
18040
17880
  :rtype: str
18041
17881
  """
18042
17882
  return self._ObjectStatus
@@ -18885,16 +18725,12 @@ class ExternalRedis(AbstractModel):
18885
18725
  def __init__(self):
18886
18726
  r"""
18887
18727
  :param _RedisHost: redis ip
18888
- 注意:此字段可能返回 null,表示取不到有效值。
18889
18728
  :type RedisHost: str
18890
18729
  :param _RedisPassword: redis密码
18891
- 注意:此字段可能返回 null,表示取不到有效值。
18892
18730
  :type RedisPassword: str
18893
18731
  :param _RedisPort: redis端口
18894
- 注意:此字段可能返回 null,表示取不到有效值。
18895
18732
  :type RedisPort: int
18896
18733
  :param _RedisTimeout: 超时时间 ms
18897
- 注意:此字段可能返回 null,表示取不到有效值。
18898
18734
  :type RedisTimeout: int
18899
18735
  """
18900
18736
  self._RedisHost = None
@@ -18905,7 +18741,6 @@ class ExternalRedis(AbstractModel):
18905
18741
  @property
18906
18742
  def RedisHost(self):
18907
18743
  """redis ip
18908
- 注意:此字段可能返回 null,表示取不到有效值。
18909
18744
  :rtype: str
18910
18745
  """
18911
18746
  return self._RedisHost
@@ -18917,7 +18752,6 @@ class ExternalRedis(AbstractModel):
18917
18752
  @property
18918
18753
  def RedisPassword(self):
18919
18754
  """redis密码
18920
- 注意:此字段可能返回 null,表示取不到有效值。
18921
18755
  :rtype: str
18922
18756
  """
18923
18757
  return self._RedisPassword
@@ -18929,7 +18763,6 @@ class ExternalRedis(AbstractModel):
18929
18763
  @property
18930
18764
  def RedisPort(self):
18931
18765
  """redis端口
18932
- 注意:此字段可能返回 null,表示取不到有效值。
18933
18766
  :rtype: int
18934
18767
  """
18935
18768
  return self._RedisPort
@@ -18941,7 +18774,6 @@ class ExternalRedis(AbstractModel):
18941
18774
  @property
18942
18775
  def RedisTimeout(self):
18943
18776
  """超时时间 ms
18944
- 注意:此字段可能返回 null,表示取不到有效值。
18945
18777
  :rtype: int
18946
18778
  """
18947
18779
  return self._RedisTimeout
@@ -21258,16 +21090,12 @@ class InstancePort(AbstractModel):
21258
21090
  def __init__(self):
21259
21091
  r"""
21260
21092
  :param _HttpPort: 监听的 http 端口范围。
21261
- 注意:此字段可能返回 null,表示取不到有效值。
21262
21093
  :type HttpPort: str
21263
21094
  :param _HttpsPort: 监听的 https 端口范围。
21264
- 注意:此字段可能返回 null,表示取不到有效值。
21265
21095
  :type HttpsPort: str
21266
21096
  :param _TcpPort: 监听的 tcp 端口范围。
21267
- 注意:此字段可能返回 null,表示取不到有效值。
21268
21097
  :type TcpPort: str
21269
21098
  :param _UdpPort: 监听的 udp 端口范围。
21270
- 注意:此字段可能返回 null,表示取不到有效值。
21271
21099
  :type UdpPort: str
21272
21100
  """
21273
21101
  self._HttpPort = None
@@ -21278,7 +21106,6 @@ class InstancePort(AbstractModel):
21278
21106
  @property
21279
21107
  def HttpPort(self):
21280
21108
  """监听的 http 端口范围。
21281
- 注意:此字段可能返回 null,表示取不到有效值。
21282
21109
  :rtype: str
21283
21110
  """
21284
21111
  return self._HttpPort
@@ -21290,7 +21117,6 @@ class InstancePort(AbstractModel):
21290
21117
  @property
21291
21118
  def HttpsPort(self):
21292
21119
  """监听的 https 端口范围。
21293
- 注意:此字段可能返回 null,表示取不到有效值。
21294
21120
  :rtype: str
21295
21121
  """
21296
21122
  return self._HttpsPort
@@ -21302,7 +21128,6 @@ class InstancePort(AbstractModel):
21302
21128
  @property
21303
21129
  def TcpPort(self):
21304
21130
  """监听的 tcp 端口范围。
21305
- 注意:此字段可能返回 null,表示取不到有效值。
21306
21131
  :rtype: str
21307
21132
  """
21308
21133
  return self._TcpPort
@@ -21314,7 +21139,6 @@ class InstancePort(AbstractModel):
21314
21139
  @property
21315
21140
  def UdpPort(self):
21316
21141
  """监听的 udp 端口范围。
21317
- 注意:此字段可能返回 null,表示取不到有效值。
21318
21142
  :rtype: str
21319
21143
  """
21320
21144
  return self._UdpPort
@@ -21641,10 +21465,8 @@ class KeyValue(AbstractModel):
21641
21465
  def __init__(self):
21642
21466
  r"""
21643
21467
  :param _Key: 条件的Key
21644
- 注意:此字段可能返回 null,表示取不到有效值。
21645
21468
  :type Key: str
21646
21469
  :param _Value: 条件的Value
21647
- 注意:此字段可能返回 null,表示取不到有效值。
21648
21470
  :type Value: str
21649
21471
  """
21650
21472
  self._Key = None
@@ -21653,7 +21475,6 @@ class KeyValue(AbstractModel):
21653
21475
  @property
21654
21476
  def Key(self):
21655
21477
  """条件的Key
21656
- 注意:此字段可能返回 null,表示取不到有效值。
21657
21478
  :rtype: str
21658
21479
  """
21659
21480
  return self._Key
@@ -21665,7 +21486,6 @@ class KeyValue(AbstractModel):
21665
21486
  @property
21666
21487
  def Value(self):
21667
21488
  """条件的Value
21668
- 注意:此字段可能返回 null,表示取不到有效值。
21669
21489
  :rtype: str
21670
21490
  """
21671
21491
  return self._Value
@@ -21815,7 +21635,6 @@ class KongCertificatesList(AbstractModel):
21815
21635
  def __init__(self):
21816
21636
  r"""
21817
21637
  :param _Total: 证书列表总数
21818
- 注意:此字段可能返回 null,表示取不到有效值。
21819
21638
  :type Total: int
21820
21639
  :param _CertificatesList: 无
21821
21640
  注意:此字段可能返回 null,表示取不到有效值。
@@ -21831,7 +21650,6 @@ class KongCertificatesList(AbstractModel):
21831
21650
  @property
21832
21651
  def Total(self):
21833
21652
  """证书列表总数
21834
- 注意:此字段可能返回 null,表示取不到有效值。
21835
21653
  :rtype: int
21836
21654
  """
21837
21655
  return self._Total
@@ -22430,37 +22248,28 @@ class KongServiceDetail(AbstractModel):
22430
22248
  def __init__(self):
22431
22249
  r"""
22432
22250
  :param _ID: 服务ID
22433
- 注意:此字段可能返回 null,表示取不到有效值。
22434
22251
  :type ID: str
22435
22252
  :param _Name: 服务名字
22436
- 注意:此字段可能返回 null,表示取不到有效值。
22437
22253
  :type Name: str
22438
22254
  :param _Protocol: 后端协议
22439
- 注意:此字段可能返回 null,表示取不到有效值。
22440
22255
  :type Protocol: str
22441
22256
  :param _Path: 后端路径
22442
22257
  注意:此字段可能返回 null,表示取不到有效值。
22443
22258
  :type Path: str
22444
22259
  :param _Timeout: 后端延时,单位ms
22445
- 注意:此字段可能返回 null,表示取不到有效值。
22446
22260
  :type Timeout: int
22447
22261
  :param _Retries: 重试次数
22448
- 注意:此字段可能返回 null,表示取不到有效值。
22449
22262
  :type Retries: int
22450
22263
  :param _Tags: 标签
22451
22264
  注意:此字段可能返回 null,表示取不到有效值。
22452
22265
  :type Tags: list of str
22453
22266
  :param _UpstreamInfo: 后端配置
22454
- 注意:此字段可能返回 null,表示取不到有效值。
22455
22267
  :type UpstreamInfo: :class:`tencentcloud.tse.v20201207.models.KongUpstreamInfo`
22456
22268
  :param _UpstreamType: 后端类型
22457
- 注意:此字段可能返回 null,表示取不到有效值。
22458
22269
  :type UpstreamType: str
22459
22270
  :param _Editable: 是否可编辑
22460
- 注意:此字段可能返回 null,表示取不到有效值。
22461
22271
  :type Editable: bool
22462
22272
  :param _CreatedTime: 创建时间
22463
- 注意:此字段可能返回 null,表示取不到有效值。
22464
22273
  :type CreatedTime: str
22465
22274
  """
22466
22275
  self._ID = None
@@ -22478,7 +22287,6 @@ class KongServiceDetail(AbstractModel):
22478
22287
  @property
22479
22288
  def ID(self):
22480
22289
  """服务ID
22481
- 注意:此字段可能返回 null,表示取不到有效值。
22482
22290
  :rtype: str
22483
22291
  """
22484
22292
  return self._ID
@@ -22490,7 +22298,6 @@ class KongServiceDetail(AbstractModel):
22490
22298
  @property
22491
22299
  def Name(self):
22492
22300
  """服务名字
22493
- 注意:此字段可能返回 null,表示取不到有效值。
22494
22301
  :rtype: str
22495
22302
  """
22496
22303
  return self._Name
@@ -22502,7 +22309,6 @@ class KongServiceDetail(AbstractModel):
22502
22309
  @property
22503
22310
  def Protocol(self):
22504
22311
  """后端协议
22505
- 注意:此字段可能返回 null,表示取不到有效值。
22506
22312
  :rtype: str
22507
22313
  """
22508
22314
  return self._Protocol
@@ -22526,7 +22332,6 @@ class KongServiceDetail(AbstractModel):
22526
22332
  @property
22527
22333
  def Timeout(self):
22528
22334
  """后端延时,单位ms
22529
- 注意:此字段可能返回 null,表示取不到有效值。
22530
22335
  :rtype: int
22531
22336
  """
22532
22337
  return self._Timeout
@@ -22538,7 +22343,6 @@ class KongServiceDetail(AbstractModel):
22538
22343
  @property
22539
22344
  def Retries(self):
22540
22345
  """重试次数
22541
- 注意:此字段可能返回 null,表示取不到有效值。
22542
22346
  :rtype: int
22543
22347
  """
22544
22348
  return self._Retries
@@ -22562,7 +22366,6 @@ class KongServiceDetail(AbstractModel):
22562
22366
  @property
22563
22367
  def UpstreamInfo(self):
22564
22368
  """后端配置
22565
- 注意:此字段可能返回 null,表示取不到有效值。
22566
22369
  :rtype: :class:`tencentcloud.tse.v20201207.models.KongUpstreamInfo`
22567
22370
  """
22568
22371
  return self._UpstreamInfo
@@ -22574,7 +22377,6 @@ class KongServiceDetail(AbstractModel):
22574
22377
  @property
22575
22378
  def UpstreamType(self):
22576
22379
  """后端类型
22577
- 注意:此字段可能返回 null,表示取不到有效值。
22578
22380
  :rtype: str
22579
22381
  """
22580
22382
  return self._UpstreamType
@@ -22586,7 +22388,6 @@ class KongServiceDetail(AbstractModel):
22586
22388
  @property
22587
22389
  def Editable(self):
22588
22390
  """是否可编辑
22589
- 注意:此字段可能返回 null,表示取不到有效值。
22590
22391
  :rtype: bool
22591
22392
  """
22592
22393
  return self._Editable
@@ -22598,7 +22399,6 @@ class KongServiceDetail(AbstractModel):
22598
22399
  @property
22599
22400
  def CreatedTime(self):
22600
22401
  """创建时间
22601
- 注意:此字段可能返回 null,表示取不到有效值。
22602
22402
  :rtype: str
22603
22403
  """
22604
22404
  return self._CreatedTime
@@ -23426,7 +23226,6 @@ class KongUpstreamList(AbstractModel):
23426
23226
  def __init__(self):
23427
23227
  r"""
23428
23228
  :param _UpstreamList: 无
23429
- 注意:此字段可能返回 null,表示取不到有效值。
23430
23229
  :type UpstreamList: list of KongUpstreamPreview
23431
23230
  """
23432
23231
  self._UpstreamList = None
@@ -23434,7 +23233,6 @@ class KongUpstreamList(AbstractModel):
23434
23233
  @property
23435
23234
  def UpstreamList(self):
23436
23235
  """无
23437
- 注意:此字段可能返回 null,表示取不到有效值。
23438
23236
  :rtype: list of KongUpstreamPreview
23439
23237
  """
23440
23238
  return self._UpstreamList
@@ -23469,13 +23267,10 @@ class KongUpstreamPreview(AbstractModel):
23469
23267
  def __init__(self):
23470
23268
  r"""
23471
23269
  :param _ID: 服务ID
23472
- 注意:此字段可能返回 null,表示取不到有效值。
23473
23270
  :type ID: str
23474
23271
  :param _Name: 服务名字
23475
- 注意:此字段可能返回 null,表示取不到有效值。
23476
23272
  :type Name: str
23477
23273
  :param _Target: 后端配置
23478
- 注意:此字段可能返回 null,表示取不到有效值。
23479
23274
  :type Target: list of KongTarget
23480
23275
  """
23481
23276
  self._ID = None
@@ -23485,7 +23280,6 @@ class KongUpstreamPreview(AbstractModel):
23485
23280
  @property
23486
23281
  def ID(self):
23487
23282
  """服务ID
23488
- 注意:此字段可能返回 null,表示取不到有效值。
23489
23283
  :rtype: str
23490
23284
  """
23491
23285
  return self._ID
@@ -23497,7 +23291,6 @@ class KongUpstreamPreview(AbstractModel):
23497
23291
  @property
23498
23292
  def Name(self):
23499
23293
  """服务名字
23500
- 注意:此字段可能返回 null,表示取不到有效值。
23501
23294
  :rtype: str
23502
23295
  """
23503
23296
  return self._Name
@@ -23509,7 +23302,6 @@ class KongUpstreamPreview(AbstractModel):
23509
23302
  @property
23510
23303
  def Target(self):
23511
23304
  """后端配置
23512
- 注意:此字段可能返回 null,表示取不到有效值。
23513
23305
  :rtype: list of KongTarget
23514
23306
  """
23515
23307
  return self._Target
@@ -23546,16 +23338,12 @@ class LimitRule(AbstractModel):
23546
23338
  def __init__(self):
23547
23339
  r"""
23548
23340
  :param _Filters: 请求匹配条件
23549
- 注意:此字段可能返回 null,表示取不到有效值。
23550
23341
  :type Filters: list of RuleFilter
23551
23342
  :param _LimitBy: 参数限流依据组合
23552
- 注意:此字段可能返回 null,表示取不到有效值。
23553
23343
  :type LimitBy: list of KeyValue
23554
23344
  :param _QpsThresholds: 限流阈值
23555
- 注意:此字段可能返回 null,表示取不到有效值。
23556
23345
  :type QpsThresholds: list of QpsThreshold
23557
23346
  :param _AccurateQpsThresholds: 精确限流阈值
23558
- 注意:此字段可能返回 null,表示取不到有效值。
23559
23347
  :type AccurateQpsThresholds: list of AccurateQpsThreshold
23560
23348
  """
23561
23349
  self._Filters = None
@@ -23566,7 +23354,6 @@ class LimitRule(AbstractModel):
23566
23354
  @property
23567
23355
  def Filters(self):
23568
23356
  """请求匹配条件
23569
- 注意:此字段可能返回 null,表示取不到有效值。
23570
23357
  :rtype: list of RuleFilter
23571
23358
  """
23572
23359
  return self._Filters
@@ -23578,7 +23365,6 @@ class LimitRule(AbstractModel):
23578
23365
  @property
23579
23366
  def LimitBy(self):
23580
23367
  """参数限流依据组合
23581
- 注意:此字段可能返回 null,表示取不到有效值。
23582
23368
  :rtype: list of KeyValue
23583
23369
  """
23584
23370
  return self._LimitBy
@@ -23590,7 +23376,6 @@ class LimitRule(AbstractModel):
23590
23376
  @property
23591
23377
  def QpsThresholds(self):
23592
23378
  """限流阈值
23593
- 注意:此字段可能返回 null,表示取不到有效值。
23594
23379
  :rtype: list of QpsThreshold
23595
23380
  """
23596
23381
  return self._QpsThresholds
@@ -23602,7 +23387,6 @@ class LimitRule(AbstractModel):
23602
23387
  @property
23603
23388
  def AccurateQpsThresholds(self):
23604
23389
  """精确限流阈值
23605
- 注意:此字段可能返回 null,表示取不到有效值。
23606
23390
  :rtype: list of AccurateQpsThreshold
23607
23391
  """
23608
23392
  return self._AccurateQpsThresholds
@@ -26950,25 +26734,18 @@ class NativeGatewayServerGroup(AbstractModel):
26950
26734
  1:是。
26951
26735
  :type IsFirstGroup: int
26952
26736
  :param _BindingStrategy: 关联策略信息
26953
- 注意:此字段可能返回 null,表示取不到有效值。
26954
26737
  :type BindingStrategy: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayStrategy`
26955
26738
  :param _GatewayId: 网关实例 id
26956
- 注意:此字段可能返回 null,表示取不到有效值。
26957
26739
  :type GatewayId: str
26958
26740
  :param _InternetMaxBandwidthOut: 带宽
26959
- 注意:此字段可能返回 null,表示取不到有效值。
26960
26741
  :type InternetMaxBandwidthOut: int
26961
26742
  :param _ModifyTime: 修改时间
26962
- 注意:此字段可能返回 null,表示取不到有效值。
26963
26743
  :type ModifyTime: str
26964
26744
  :param _SubnetIds: 子网id
26965
- 注意:此字段可能返回 null,表示取不到有效值。
26966
26745
  :type SubnetIds: str
26967
26746
  :param _DefaultWeight: 分组默认权重
26968
- 注意:此字段可能返回 null,表示取不到有效值。
26969
26747
  :type DefaultWeight: int
26970
26748
  :param _ElasticNumber: 弹性节点
26971
- 注意:此字段可能返回 null,表示取不到有效值。
26972
26749
  :type ElasticNumber: int
26973
26750
  """
26974
26751
  self._GroupId = None
@@ -27068,7 +26845,6 @@ class NativeGatewayServerGroup(AbstractModel):
27068
26845
  @property
27069
26846
  def BindingStrategy(self):
27070
26847
  """关联策略信息
27071
- 注意:此字段可能返回 null,表示取不到有效值。
27072
26848
  :rtype: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayStrategy`
27073
26849
  """
27074
26850
  return self._BindingStrategy
@@ -27080,7 +26856,6 @@ class NativeGatewayServerGroup(AbstractModel):
27080
26856
  @property
27081
26857
  def GatewayId(self):
27082
26858
  """网关实例 id
27083
- 注意:此字段可能返回 null,表示取不到有效值。
27084
26859
  :rtype: str
27085
26860
  """
27086
26861
  return self._GatewayId
@@ -27092,7 +26867,6 @@ class NativeGatewayServerGroup(AbstractModel):
27092
26867
  @property
27093
26868
  def InternetMaxBandwidthOut(self):
27094
26869
  """带宽
27095
- 注意:此字段可能返回 null,表示取不到有效值。
27096
26870
  :rtype: int
27097
26871
  """
27098
26872
  return self._InternetMaxBandwidthOut
@@ -27104,7 +26878,6 @@ class NativeGatewayServerGroup(AbstractModel):
27104
26878
  @property
27105
26879
  def ModifyTime(self):
27106
26880
  """修改时间
27107
- 注意:此字段可能返回 null,表示取不到有效值。
27108
26881
  :rtype: str
27109
26882
  """
27110
26883
  return self._ModifyTime
@@ -27116,7 +26889,6 @@ class NativeGatewayServerGroup(AbstractModel):
27116
26889
  @property
27117
26890
  def SubnetIds(self):
27118
26891
  """子网id
27119
- 注意:此字段可能返回 null,表示取不到有效值。
27120
26892
  :rtype: str
27121
26893
  """
27122
26894
  return self._SubnetIds
@@ -27128,7 +26900,6 @@ class NativeGatewayServerGroup(AbstractModel):
27128
26900
  @property
27129
26901
  def DefaultWeight(self):
27130
26902
  """分组默认权重
27131
- 注意:此字段可能返回 null,表示取不到有效值。
27132
26903
  :rtype: int
27133
26904
  """
27134
26905
  return self._DefaultWeight
@@ -27140,7 +26911,6 @@ class NativeGatewayServerGroup(AbstractModel):
27140
26911
  @property
27141
26912
  def ElasticNumber(self):
27142
26913
  """弹性节点
27143
- 注意:此字段可能返回 null,表示取不到有效值。
27144
26914
  :rtype: int
27145
26915
  """
27146
26916
  return self._ElasticNumber
@@ -27656,22 +27426,16 @@ class PublicAddressConfig(AbstractModel):
27656
27426
  def __init__(self):
27657
27427
  r"""
27658
27428
  :param _Vip: 公网 ip
27659
- 注意:此字段可能返回 null,表示取不到有效值。
27660
27429
  :type Vip: str
27661
27430
  :param _InternetMaxBandwidthOut: 公网最大带宽
27662
- 注意:此字段可能返回 null,表示取不到有效值。
27663
27431
  :type InternetMaxBandwidthOut: int
27664
27432
  :param _GroupId: 公网所属分组 id
27665
- 注意:此字段可能返回 null,表示取不到有效值。
27666
27433
  :type GroupId: str
27667
27434
  :param _GroupName: 公网所属分组名
27668
- 注意:此字段可能返回 null,表示取不到有效值。
27669
27435
  :type GroupName: str
27670
27436
  :param _NetworkId: 公网负载均衡 id
27671
- 注意:此字段可能返回 null,表示取不到有效值。
27672
27437
  :type NetworkId: str
27673
27438
  :param _Description: 公网负载均衡描述
27674
- 注意:此字段可能返回 null,表示取不到有效值。
27675
27439
  :type Description: str
27676
27440
  """
27677
27441
  self._Vip = None
@@ -27684,7 +27448,6 @@ class PublicAddressConfig(AbstractModel):
27684
27448
  @property
27685
27449
  def Vip(self):
27686
27450
  """公网 ip
27687
- 注意:此字段可能返回 null,表示取不到有效值。
27688
27451
  :rtype: str
27689
27452
  """
27690
27453
  return self._Vip
@@ -27696,7 +27459,6 @@ class PublicAddressConfig(AbstractModel):
27696
27459
  @property
27697
27460
  def InternetMaxBandwidthOut(self):
27698
27461
  """公网最大带宽
27699
- 注意:此字段可能返回 null,表示取不到有效值。
27700
27462
  :rtype: int
27701
27463
  """
27702
27464
  return self._InternetMaxBandwidthOut
@@ -27708,7 +27470,6 @@ class PublicAddressConfig(AbstractModel):
27708
27470
  @property
27709
27471
  def GroupId(self):
27710
27472
  """公网所属分组 id
27711
- 注意:此字段可能返回 null,表示取不到有效值。
27712
27473
  :rtype: str
27713
27474
  """
27714
27475
  return self._GroupId
@@ -27720,7 +27481,6 @@ class PublicAddressConfig(AbstractModel):
27720
27481
  @property
27721
27482
  def GroupName(self):
27722
27483
  """公网所属分组名
27723
- 注意:此字段可能返回 null,表示取不到有效值。
27724
27484
  :rtype: str
27725
27485
  """
27726
27486
  return self._GroupName
@@ -27732,7 +27492,6 @@ class PublicAddressConfig(AbstractModel):
27732
27492
  @property
27733
27493
  def NetworkId(self):
27734
27494
  """公网负载均衡 id
27735
- 注意:此字段可能返回 null,表示取不到有效值。
27736
27495
  :rtype: str
27737
27496
  """
27738
27497
  return self._NetworkId
@@ -27744,7 +27503,6 @@ class PublicAddressConfig(AbstractModel):
27744
27503
  @property
27745
27504
  def Description(self):
27746
27505
  """公网负载均衡描述
27747
- 注意:此字段可能返回 null,表示取不到有效值。
27748
27506
  :rtype: str
27749
27507
  """
27750
27508
  return self._Description
@@ -27956,13 +27714,10 @@ class RateLimitResponse(AbstractModel):
27956
27714
  def __init__(self):
27957
27715
  r"""
27958
27716
  :param _Body: 自定义响应体
27959
- 注意:此字段可能返回 null,表示取不到有效值。
27960
27717
  :type Body: str
27961
27718
  :param _Headers: Headers
27962
- 注意:此字段可能返回 null,表示取不到有效值。
27963
27719
  :type Headers: list of KVMapping
27964
27720
  :param _HttpStatus: http状态码
27965
- 注意:此字段可能返回 null,表示取不到有效值。
27966
27721
  :type HttpStatus: int
27967
27722
  """
27968
27723
  self._Body = None
@@ -27972,7 +27727,6 @@ class RateLimitResponse(AbstractModel):
27972
27727
  @property
27973
27728
  def Body(self):
27974
27729
  """自定义响应体
27975
- 注意:此字段可能返回 null,表示取不到有效值。
27976
27730
  :rtype: str
27977
27731
  """
27978
27732
  return self._Body
@@ -27984,7 +27738,6 @@ class RateLimitResponse(AbstractModel):
27984
27738
  @property
27985
27739
  def Headers(self):
27986
27740
  """Headers
27987
- 注意:此字段可能返回 null,表示取不到有效值。
27988
27741
  :rtype: list of KVMapping
27989
27742
  """
27990
27743
  return self._Headers
@@ -27996,7 +27749,6 @@ class RateLimitResponse(AbstractModel):
27996
27749
  @property
27997
27750
  def HttpStatus(self):
27998
27751
  """http状态码
27999
- 注意:此字段可能返回 null,表示取不到有效值。
28000
27752
  :rtype: int
28001
27753
  """
28002
27754
  return self._HttpStatus
@@ -28352,28 +28104,20 @@ class RouteWafStatus(AbstractModel):
28352
28104
  def __init__(self):
28353
28105
  r"""
28354
28106
  :param _Name: 路由的名字
28355
- 注意:此字段可能返回 null,表示取不到有效值。
28356
28107
  :type Name: str
28357
28108
  :param _Id: 路由的 ID
28358
- 注意:此字段可能返回 null,表示取不到有效值。
28359
28109
  :type Id: str
28360
28110
  :param _Status: 路由是否开启 WAF 防护
28361
- 注意:此字段可能返回 null,表示取不到有效值。
28362
28111
  :type Status: str
28363
28112
  :param _Methods: 方法
28364
- 注意:此字段可能返回 null,表示取不到有效值。
28365
28113
  :type Methods: list of str
28366
28114
  :param _Paths: 路径
28367
- 注意:此字段可能返回 null,表示取不到有效值。
28368
28115
  :type Paths: list of str
28369
28116
  :param _Hosts: 域名
28370
- 注意:此字段可能返回 null,表示取不到有效值。
28371
28117
  :type Hosts: list of str
28372
28118
  :param _ServiceName: 路由对应服务的名字
28373
- 注意:此字段可能返回 null,表示取不到有效值。
28374
28119
  :type ServiceName: str
28375
28120
  :param _ServiceId: 路由对应服务的ID
28376
- 注意:此字段可能返回 null,表示取不到有效值。
28377
28121
  :type ServiceId: str
28378
28122
  """
28379
28123
  self._Name = None
@@ -28388,7 +28132,6 @@ class RouteWafStatus(AbstractModel):
28388
28132
  @property
28389
28133
  def Name(self):
28390
28134
  """路由的名字
28391
- 注意:此字段可能返回 null,表示取不到有效值。
28392
28135
  :rtype: str
28393
28136
  """
28394
28137
  return self._Name
@@ -28400,7 +28143,6 @@ class RouteWafStatus(AbstractModel):
28400
28143
  @property
28401
28144
  def Id(self):
28402
28145
  """路由的 ID
28403
- 注意:此字段可能返回 null,表示取不到有效值。
28404
28146
  :rtype: str
28405
28147
  """
28406
28148
  return self._Id
@@ -28412,7 +28154,6 @@ class RouteWafStatus(AbstractModel):
28412
28154
  @property
28413
28155
  def Status(self):
28414
28156
  """ 路由是否开启 WAF 防护
28415
- 注意:此字段可能返回 null,表示取不到有效值。
28416
28157
  :rtype: str
28417
28158
  """
28418
28159
  return self._Status
@@ -28424,7 +28165,6 @@ class RouteWafStatus(AbstractModel):
28424
28165
  @property
28425
28166
  def Methods(self):
28426
28167
  """方法
28427
- 注意:此字段可能返回 null,表示取不到有效值。
28428
28168
  :rtype: list of str
28429
28169
  """
28430
28170
  return self._Methods
@@ -28436,7 +28176,6 @@ class RouteWafStatus(AbstractModel):
28436
28176
  @property
28437
28177
  def Paths(self):
28438
28178
  """路径
28439
- 注意:此字段可能返回 null,表示取不到有效值。
28440
28179
  :rtype: list of str
28441
28180
  """
28442
28181
  return self._Paths
@@ -28448,7 +28187,6 @@ class RouteWafStatus(AbstractModel):
28448
28187
  @property
28449
28188
  def Hosts(self):
28450
28189
  """域名
28451
- 注意:此字段可能返回 null,表示取不到有效值。
28452
28190
  :rtype: list of str
28453
28191
  """
28454
28192
  return self._Hosts
@@ -28460,7 +28198,6 @@ class RouteWafStatus(AbstractModel):
28460
28198
  @property
28461
28199
  def ServiceName(self):
28462
28200
  """路由对应服务的名字
28463
- 注意:此字段可能返回 null,表示取不到有效值。
28464
28201
  :rtype: str
28465
28202
  """
28466
28203
  return self._ServiceName
@@ -28472,7 +28209,6 @@ class RouteWafStatus(AbstractModel):
28472
28209
  @property
28473
28210
  def ServiceId(self):
28474
28211
  """路由对应服务的ID
28475
- 注意:此字段可能返回 null,表示取不到有效值。
28476
28212
  :rtype: str
28477
28213
  """
28478
28214
  return self._ServiceId
@@ -28509,16 +28245,12 @@ class RuleFilter(AbstractModel):
28509
28245
  def __init__(self):
28510
28246
  r"""
28511
28247
  :param _Key: 限流条件的Key
28512
- 注意:此字段可能返回 null,表示取不到有效值。
28513
28248
  :type Key: str
28514
28249
  :param _Values: 限流条件的Values
28515
- 注意:此字段可能返回 null,表示取不到有效值。
28516
28250
  :type Values: list of str
28517
28251
  :param _Operator: 操作符
28518
- 注意:此字段可能返回 null,表示取不到有效值。
28519
28252
  :type Operator: str
28520
28253
  :param _Name: header或query对应的name
28521
- 注意:此字段可能返回 null,表示取不到有效值。
28522
28254
  :type Name: str
28523
28255
  """
28524
28256
  self._Key = None
@@ -28529,7 +28261,6 @@ class RuleFilter(AbstractModel):
28529
28261
  @property
28530
28262
  def Key(self):
28531
28263
  """限流条件的Key
28532
- 注意:此字段可能返回 null,表示取不到有效值。
28533
28264
  :rtype: str
28534
28265
  """
28535
28266
  return self._Key
@@ -28541,7 +28272,6 @@ class RuleFilter(AbstractModel):
28541
28272
  @property
28542
28273
  def Values(self):
28543
28274
  """限流条件的Values
28544
- 注意:此字段可能返回 null,表示取不到有效值。
28545
28275
  :rtype: list of str
28546
28276
  """
28547
28277
  return self._Values
@@ -28553,7 +28283,6 @@ class RuleFilter(AbstractModel):
28553
28283
  @property
28554
28284
  def Operator(self):
28555
28285
  """操作符
28556
- 注意:此字段可能返回 null,表示取不到有效值。
28557
28286
  :rtype: str
28558
28287
  """
28559
28288
  return self._Operator
@@ -28565,7 +28294,6 @@ class RuleFilter(AbstractModel):
28565
28294
  @property
28566
28295
  def Name(self):
28567
28296
  """header或query对应的name
28568
- 注意:此字段可能返回 null,表示取不到有效值。
28569
28297
  :rtype: str
28570
28298
  """
28571
28299
  return self._Name
@@ -29372,16 +29100,12 @@ class ServiceWafStatus(AbstractModel):
29372
29100
  def __init__(self):
29373
29101
  r"""
29374
29102
  :param _Name: 服务的名字
29375
- 注意:此字段可能返回 null,表示取不到有效值。
29376
29103
  :type Name: str
29377
29104
  :param _Id: 服务的 ID
29378
- 注意:此字段可能返回 null,表示取不到有效值。
29379
29105
  :type Id: str
29380
29106
  :param _Type: 服务的类型
29381
- 注意:此字段可能返回 null,表示取不到有效值。
29382
29107
  :type Type: str
29383
29108
  :param _Status: 服务是否开启 WAF 防护
29384
- 注意:此字段可能返回 null,表示取不到有效值。
29385
29109
  :type Status: str
29386
29110
  """
29387
29111
  self._Name = None
@@ -29392,7 +29116,6 @@ class ServiceWafStatus(AbstractModel):
29392
29116
  @property
29393
29117
  def Name(self):
29394
29118
  """ 服务的名字
29395
- 注意:此字段可能返回 null,表示取不到有效值。
29396
29119
  :rtype: str
29397
29120
  """
29398
29121
  return self._Name
@@ -29404,7 +29127,6 @@ class ServiceWafStatus(AbstractModel):
29404
29127
  @property
29405
29128
  def Id(self):
29406
29129
  """服务的 ID
29407
- 注意:此字段可能返回 null,表示取不到有效值。
29408
29130
  :rtype: str
29409
29131
  """
29410
29132
  return self._Id
@@ -29416,7 +29138,6 @@ class ServiceWafStatus(AbstractModel):
29416
29138
  @property
29417
29139
  def Type(self):
29418
29140
  """服务的类型
29419
- 注意:此字段可能返回 null,表示取不到有效值。
29420
29141
  :rtype: str
29421
29142
  """
29422
29143
  return self._Type
@@ -29428,7 +29149,6 @@ class ServiceWafStatus(AbstractModel):
29428
29149
  @property
29429
29150
  def Status(self):
29430
29151
  """ 服务是否开启 WAF 防护
29431
- 注意:此字段可能返回 null,表示取不到有效值。
29432
29152
  :rtype: str
29433
29153
  """
29434
29154
  return self._Status
@@ -29463,10 +29183,8 @@ class SourceInfo(AbstractModel):
29463
29183
  :param _Addresses: 微服务引擎接入IP地址信息
29464
29184
  :type Addresses: list of str
29465
29185
  :param _VpcInfo: 微服务引擎VPC信息
29466
- 注意:此字段可能返回 null,表示取不到有效值。
29467
29186
  :type VpcInfo: :class:`tencentcloud.tse.v20201207.models.SourceInstanceVpcInfo`
29468
29187
  :param _Auth: 微服务引擎鉴权信息
29469
- 注意:此字段可能返回 null,表示取不到有效值。
29470
29188
  :type Auth: :class:`tencentcloud.tse.v20201207.models.SourceInstanceAuth`
29471
29189
  """
29472
29190
  self._Addresses = None
@@ -29487,7 +29205,6 @@ class SourceInfo(AbstractModel):
29487
29205
  @property
29488
29206
  def VpcInfo(self):
29489
29207
  """微服务引擎VPC信息
29490
- 注意:此字段可能返回 null,表示取不到有效值。
29491
29208
  :rtype: :class:`tencentcloud.tse.v20201207.models.SourceInstanceVpcInfo`
29492
29209
  """
29493
29210
  return self._VpcInfo
@@ -29499,7 +29216,6 @@ class SourceInfo(AbstractModel):
29499
29216
  @property
29500
29217
  def Auth(self):
29501
29218
  """微服务引擎鉴权信息
29502
- 注意:此字段可能返回 null,表示取不到有效值。
29503
29219
  :rtype: :class:`tencentcloud.tse.v20201207.models.SourceInstanceAuth`
29504
29220
  """
29505
29221
  return self._Auth
@@ -29535,13 +29251,10 @@ class SourceInstanceAuth(AbstractModel):
29535
29251
  def __init__(self):
29536
29252
  r"""
29537
29253
  :param _Username: 用户名
29538
- 注意:此字段可能返回 null,表示取不到有效值。
29539
29254
  :type Username: str
29540
29255
  :param _Password: 账户密码
29541
- 注意:此字段可能返回 null,表示取不到有效值。
29542
29256
  :type Password: str
29543
29257
  :param _AccessToken: 访问凭据 token
29544
- 注意:此字段可能返回 null,表示取不到有效值。
29545
29258
  :type AccessToken: str
29546
29259
  """
29547
29260
  self._Username = None
@@ -29551,7 +29264,6 @@ class SourceInstanceAuth(AbstractModel):
29551
29264
  @property
29552
29265
  def Username(self):
29553
29266
  """用户名
29554
- 注意:此字段可能返回 null,表示取不到有效值。
29555
29267
  :rtype: str
29556
29268
  """
29557
29269
  return self._Username
@@ -29563,7 +29275,6 @@ class SourceInstanceAuth(AbstractModel):
29563
29275
  @property
29564
29276
  def Password(self):
29565
29277
  """账户密码
29566
- 注意:此字段可能返回 null,表示取不到有效值。
29567
29278
  :rtype: str
29568
29279
  """
29569
29280
  return self._Password
@@ -29575,7 +29286,6 @@ class SourceInstanceAuth(AbstractModel):
29575
29286
  @property
29576
29287
  def AccessToken(self):
29577
29288
  """访问凭据 token
29578
- 注意:此字段可能返回 null,表示取不到有效值。
29579
29289
  :rtype: str
29580
29290
  """
29581
29291
  return self._AccessToken
@@ -29607,10 +29317,8 @@ class SourceInstanceVpcInfo(AbstractModel):
29607
29317
  def __init__(self):
29608
29318
  r"""
29609
29319
  :param _VpcID: 微服务引擎VPC信息
29610
- 注意:此字段可能返回 null,表示取不到有效值。
29611
29320
  :type VpcID: str
29612
29321
  :param _SubnetID: 微服务引擎子网信息
29613
- 注意:此字段可能返回 null,表示取不到有效值。
29614
29322
  :type SubnetID: str
29615
29323
  """
29616
29324
  self._VpcID = None
@@ -29619,7 +29327,6 @@ class SourceInstanceVpcInfo(AbstractModel):
29619
29327
  @property
29620
29328
  def VpcID(self):
29621
29329
  """微服务引擎VPC信息
29622
- 注意:此字段可能返回 null,表示取不到有效值。
29623
29330
  :rtype: str
29624
29331
  """
29625
29332
  return self._VpcID
@@ -29631,7 +29338,6 @@ class SourceInstanceVpcInfo(AbstractModel):
29631
29338
  @property
29632
29339
  def SubnetID(self):
29633
29340
  """微服务引擎子网信息
29634
- 注意:此字段可能返回 null,表示取不到有效值。
29635
29341
  :rtype: str
29636
29342
  """
29637
29343
  return self._SubnetID
@@ -29950,7 +29656,6 @@ class UpdateCloudNativeAPIGatewayResult(AbstractModel):
29950
29656
  :param _Status: 云原生网关状态。
29951
29657
  :type Status: str
29952
29658
  :param _TaskId: 任务ID
29953
- 注意:此字段可能返回 null,表示取不到有效值。
29954
29659
  :type TaskId: str
29955
29660
  """
29956
29661
  self._GatewayId = None
@@ -29982,7 +29687,6 @@ class UpdateCloudNativeAPIGatewayResult(AbstractModel):
29982
29687
  @property
29983
29688
  def TaskId(self):
29984
29689
  """任务ID
29985
- 注意:此字段可能返回 null,表示取不到有效值。
29986
29690
  :rtype: str
29987
29691
  """
29988
29692
  return self._TaskId