tencentcloud-sdk-python 3.0.1356__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 (61) 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/billing/v20180709/billing_client.py +0 -25
  6. tencentcloud/billing/v20180709/models.py +0 -512
  7. tencentcloud/bpaas/v20181217/models.py +0 -54
  8. tencentcloud/cdb/v20170320/cdb_client.py +1 -1
  9. tencentcloud/cdb/v20170320/models.py +47 -4
  10. tencentcloud/chc/v20230418/chc_client.py +23 -0
  11. tencentcloud/chc/v20230418/models.py +185 -2
  12. tencentcloud/cls/v20201016/cls_client.py +23 -0
  13. tencentcloud/cls/v20201016/models.py +79 -0
  14. tencentcloud/cwp/v20180228/models.py +2 -2
  15. tencentcloud/es/v20180416/models.py +57 -6
  16. tencentcloud/es/v20250101/__init__.py +0 -0
  17. tencentcloud/es/v20250101/errorcodes.py +45 -0
  18. tencentcloud/es/v20250101/es_client.py +228 -0
  19. tencentcloud/es/v20250101/models.py +2168 -0
  20. tencentcloud/ess/v20201111/ess_client.py +37 -2
  21. tencentcloud/ess/v20201111/models.py +341 -10
  22. tencentcloud/essbasic/v20210526/essbasic_client.py +33 -0
  23. tencentcloud/essbasic/v20210526/models.py +282 -12
  24. tencentcloud/gaap/v20180529/models.py +0 -90
  25. tencentcloud/gwlb/v20240906/models.py +20 -0
  26. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
  27. tencentcloud/iotexplorer/v20190423/models.py +254 -0
  28. tencentcloud/iotvideo/v20211125/iotvideo_client.py +23 -0
  29. tencentcloud/iotvideo/v20211125/models.py +254 -0
  30. tencentcloud/lcic/v20220817/models.py +15 -0
  31. tencentcloud/lowcode/v20210108/errorcodes.py +3 -0
  32. tencentcloud/mps/v20190612/models.py +28 -36
  33. tencentcloud/oceanus/v20190422/models.py +12 -0
  34. tencentcloud/ocr/v20181119/models.py +4 -4
  35. tencentcloud/ses/v20201002/models.py +15 -0
  36. tencentcloud/smop/v20201203/smop_client.py +3 -1
  37. tencentcloud/sts/v20180813/errorcodes.py +9 -0
  38. tencentcloud/sts/v20180813/models.py +171 -0
  39. tencentcloud/sts/v20180813/sts_client.py +23 -0
  40. tencentcloud/taf/v20200210/models.py +0 -270
  41. tencentcloud/taf/v20200210/taf_client.py +0 -23
  42. tencentcloud/tat/v20201028/errorcodes.py +6 -0
  43. tencentcloud/tat/v20201028/models.py +50 -2
  44. tencentcloud/tcr/v20190924/models.py +10 -6
  45. tencentcloud/tcss/v20201101/models.py +83 -8
  46. tencentcloud/tdmq/v20200217/models.py +68 -0
  47. tencentcloud/tione/v20211111/errorcodes.py +3 -0
  48. tencentcloud/tione/v20211111/models.py +384 -0
  49. tencentcloud/tione/v20211111/tione_client.py +23 -0
  50. tencentcloud/tse/v20201207/models.py +0 -478
  51. tencentcloud/tsf/v20180326/models.py +18 -392
  52. tencentcloud/tsf/v20180326/tsf_client.py +3 -1
  53. tencentcloud/vpc/v20170312/errorcodes.py +3 -0
  54. tencentcloud/vpc/v20170312/models.py +25 -132
  55. tencentcloud/waf/v20180125/models.py +473 -0
  56. tencentcloud/waf/v20180125/waf_client.py +69 -0
  57. {tencentcloud_sdk_python-3.0.1356.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/METADATA +1 -1
  58. {tencentcloud_sdk_python-3.0.1356.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/RECORD +61 -57
  59. {tencentcloud_sdk_python-3.0.1356.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/LICENSE +0 -0
  60. {tencentcloud_sdk_python-3.0.1356.dist-info → tencentcloud_sdk_python-3.0.1358.dist-info}/WHEEL +0 -0
  61. {tencentcloud_sdk_python-3.0.1356.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
@@ -1410,62 +1360,45 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1410
1360
  :param _ConsoleType: 控制台类型。
1411
1361
  :type ConsoleType: str
1412
1362
  :param _HttpUrl: HTTP链接地址。
1413
- 注意:此字段可能返回 null,表示取不到有效值。
1414
1363
  :type HttpUrl: str
1415
1364
  :param _HttpsUrl: HTTPS链接地址。
1416
1365
  :type HttpsUrl: str
1417
1366
  :param _NetType: 网络类型, Open|Internal。
1418
1367
  :type NetType: str
1419
1368
  :param _AdminUser: 管理员用户名。
1420
- 注意:此字段可能返回 null,表示取不到有效值。
1421
1369
  :type AdminUser: str
1422
1370
  :param _AdminPassword: 管理员密码。
1423
- 注意:此字段可能返回 null,表示取不到有效值。
1424
1371
  :type AdminPassword: str
1425
1372
  :param _Status: 网络状态, Open|Closed|Updating
1426
- 注意:此字段可能返回 null,表示取不到有效值。
1427
1373
  :type Status: str
1428
1374
  :param _AccessControl: 网络访问策略
1429
1375
  注意:此字段可能返回 null,表示取不到有效值。
1430
1376
  :type AccessControl: :class:`tencentcloud.tse.v20201207.models.NetworkAccessControl`
1431
1377
  :param _SubnetId: 内网子网 ID
1432
- 注意:此字段可能返回 null,表示取不到有效值。
1433
1378
  :type SubnetId: str
1434
1379
  :param _VpcId: 内网VPC ID
1435
- 注意:此字段可能返回 null,表示取不到有效值。
1436
1380
  :type VpcId: str
1437
1381
  :param _Description: 负载均衡的描述
1438
- 注意:此字段可能返回 null,表示取不到有效值。
1439
1382
  :type Description: str
1440
1383
  :param _SlaType: 负载均衡的规格类型
1441
- 注意:此字段可能返回 null,表示取不到有效值。
1442
1384
  :type SlaType: str
1443
1385
  :param _SlaName: clb规格名称
1444
- 注意:此字段可能返回 null,表示取不到有效值。
1445
1386
  :type SlaName: str
1446
1387
  :param _Vip: clb vip
1447
- 注意:此字段可能返回 null,表示取不到有效值。
1448
1388
  :type Vip: str
1449
1389
  :param _InternetMaxBandwidthOut: 带宽
1450
- 注意:此字段可能返回 null,表示取不到有效值。
1451
1390
  :type InternetMaxBandwidthOut: int
1452
1391
  :param _MultiZoneFlag: 是否多可用区
1453
- 注意:此字段可能返回 null,表示取不到有效值。
1454
1392
  :type MultiZoneFlag: bool
1455
1393
  :param _MasterZoneId: 主可用区
1456
- 注意:此字段可能返回 null,表示取不到有效值。
1457
1394
  :type MasterZoneId: str
1458
1395
  :param _SlaveZoneId: 备可用区
1459
- 注意:此字段可能返回 null,表示取不到有效值。
1460
1396
  :type SlaveZoneId: str
1461
1397
  :param _MasterZoneName: 主可用区名称
1462
- 注意:此字段可能返回 null,表示取不到有效值。
1463
1398
  :type MasterZoneName: str
1464
1399
  :param _SlaveZoneName: 备可用区名称
1465
- 注意:此字段可能返回 null,表示取不到有效值。
1466
1400
  :type SlaveZoneName: str
1467
1401
  :param _NetworkId: 网络 id
1468
- 注意:此字段可能返回 null,表示取不到有效值。
1469
1402
  :type NetworkId: str
1470
1403
  """
1471
1404
  self._ConsoleType = None
@@ -1504,7 +1437,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1504
1437
  @property
1505
1438
  def HttpUrl(self):
1506
1439
  """HTTP链接地址。
1507
- 注意:此字段可能返回 null,表示取不到有效值。
1508
1440
  :rtype: str
1509
1441
  """
1510
1442
  return self._HttpUrl
@@ -1538,7 +1470,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1538
1470
  @property
1539
1471
  def AdminUser(self):
1540
1472
  """管理员用户名。
1541
- 注意:此字段可能返回 null,表示取不到有效值。
1542
1473
  :rtype: str
1543
1474
  """
1544
1475
  return self._AdminUser
@@ -1550,7 +1481,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1550
1481
  @property
1551
1482
  def AdminPassword(self):
1552
1483
  """管理员密码。
1553
- 注意:此字段可能返回 null,表示取不到有效值。
1554
1484
  :rtype: str
1555
1485
  """
1556
1486
  return self._AdminPassword
@@ -1562,7 +1492,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1562
1492
  @property
1563
1493
  def Status(self):
1564
1494
  """网络状态, Open|Closed|Updating
1565
- 注意:此字段可能返回 null,表示取不到有效值。
1566
1495
  :rtype: str
1567
1496
  """
1568
1497
  return self._Status
@@ -1586,7 +1515,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1586
1515
  @property
1587
1516
  def SubnetId(self):
1588
1517
  """内网子网 ID
1589
- 注意:此字段可能返回 null,表示取不到有效值。
1590
1518
  :rtype: str
1591
1519
  """
1592
1520
  return self._SubnetId
@@ -1598,7 +1526,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1598
1526
  @property
1599
1527
  def VpcId(self):
1600
1528
  """内网VPC ID
1601
- 注意:此字段可能返回 null,表示取不到有效值。
1602
1529
  :rtype: str
1603
1530
  """
1604
1531
  return self._VpcId
@@ -1610,7 +1537,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1610
1537
  @property
1611
1538
  def Description(self):
1612
1539
  """负载均衡的描述
1613
- 注意:此字段可能返回 null,表示取不到有效值。
1614
1540
  :rtype: str
1615
1541
  """
1616
1542
  return self._Description
@@ -1622,7 +1548,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1622
1548
  @property
1623
1549
  def SlaType(self):
1624
1550
  """负载均衡的规格类型
1625
- 注意:此字段可能返回 null,表示取不到有效值。
1626
1551
  :rtype: str
1627
1552
  """
1628
1553
  return self._SlaType
@@ -1634,7 +1559,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1634
1559
  @property
1635
1560
  def SlaName(self):
1636
1561
  """clb规格名称
1637
- 注意:此字段可能返回 null,表示取不到有效值。
1638
1562
  :rtype: str
1639
1563
  """
1640
1564
  return self._SlaName
@@ -1646,7 +1570,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1646
1570
  @property
1647
1571
  def Vip(self):
1648
1572
  """clb vip
1649
- 注意:此字段可能返回 null,表示取不到有效值。
1650
1573
  :rtype: str
1651
1574
  """
1652
1575
  return self._Vip
@@ -1658,7 +1581,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1658
1581
  @property
1659
1582
  def InternetMaxBandwidthOut(self):
1660
1583
  """带宽
1661
- 注意:此字段可能返回 null,表示取不到有效值。
1662
1584
  :rtype: int
1663
1585
  """
1664
1586
  return self._InternetMaxBandwidthOut
@@ -1670,7 +1592,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1670
1592
  @property
1671
1593
  def MultiZoneFlag(self):
1672
1594
  """是否多可用区
1673
- 注意:此字段可能返回 null,表示取不到有效值。
1674
1595
  :rtype: bool
1675
1596
  """
1676
1597
  return self._MultiZoneFlag
@@ -1682,7 +1603,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1682
1603
  @property
1683
1604
  def MasterZoneId(self):
1684
1605
  """主可用区
1685
- 注意:此字段可能返回 null,表示取不到有效值。
1686
1606
  :rtype: str
1687
1607
  """
1688
1608
  return self._MasterZoneId
@@ -1694,7 +1614,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1694
1614
  @property
1695
1615
  def SlaveZoneId(self):
1696
1616
  """备可用区
1697
- 注意:此字段可能返回 null,表示取不到有效值。
1698
1617
  :rtype: str
1699
1618
  """
1700
1619
  return self._SlaveZoneId
@@ -1706,7 +1625,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1706
1625
  @property
1707
1626
  def MasterZoneName(self):
1708
1627
  """主可用区名称
1709
- 注意:此字段可能返回 null,表示取不到有效值。
1710
1628
  :rtype: str
1711
1629
  """
1712
1630
  return self._MasterZoneName
@@ -1718,7 +1636,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1718
1636
  @property
1719
1637
  def SlaveZoneName(self):
1720
1638
  """备可用区名称
1721
- 注意:此字段可能返回 null,表示取不到有效值。
1722
1639
  :rtype: str
1723
1640
  """
1724
1641
  return self._SlaveZoneName
@@ -1730,7 +1647,6 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
1730
1647
  @property
1731
1648
  def NetworkId(self):
1732
1649
  """网络 id
1733
- 注意:此字段可能返回 null,表示取不到有效值。
1734
1650
  :rtype: str
1735
1651
  """
1736
1652
  return self._NetworkId
@@ -1786,25 +1702,18 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1786
1702
  :param _NodeIp: 节点 ip
1787
1703
  :type NodeIp: str
1788
1704
  :param _ZoneId: Zone id
1789
- 注意:此字段可能返回 null,表示取不到有效值。
1790
1705
  :type ZoneId: str
1791
1706
  :param _Zone: Zone
1792
- 注意:此字段可能返回 null,表示取不到有效值。
1793
1707
  :type Zone: str
1794
1708
  :param _GroupId: 分组ID
1795
- 注意:此字段可能返回 null,表示取不到有效值。
1796
1709
  :type GroupId: str
1797
1710
  :param _GroupName: 分组名
1798
- 注意:此字段可能返回 null,表示取不到有效值。
1799
1711
  :type GroupName: str
1800
1712
  :param _Status: 状态
1801
- 注意:此字段可能返回 null,表示取不到有效值。
1802
1713
  :type Status: str
1803
1714
  :param _Weight: 节点权重
1804
- 注意:此字段可能返回 null,表示取不到有效值。
1805
1715
  :type Weight: int
1806
1716
  :param _IsDefaultWeight: 是否默认权重
1807
- 注意:此字段可能返回 null,表示取不到有效值。
1808
1717
  :type IsDefaultWeight: bool
1809
1718
  """
1810
1719
  self._NodeId = None
@@ -1842,7 +1751,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1842
1751
  @property
1843
1752
  def ZoneId(self):
1844
1753
  """Zone id
1845
- 注意:此字段可能返回 null,表示取不到有效值。
1846
1754
  :rtype: str
1847
1755
  """
1848
1756
  return self._ZoneId
@@ -1854,7 +1762,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1854
1762
  @property
1855
1763
  def Zone(self):
1856
1764
  """Zone
1857
- 注意:此字段可能返回 null,表示取不到有效值。
1858
1765
  :rtype: str
1859
1766
  """
1860
1767
  return self._Zone
@@ -1866,7 +1773,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1866
1773
  @property
1867
1774
  def GroupId(self):
1868
1775
  """分组ID
1869
- 注意:此字段可能返回 null,表示取不到有效值。
1870
1776
  :rtype: str
1871
1777
  """
1872
1778
  return self._GroupId
@@ -1878,7 +1784,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1878
1784
  @property
1879
1785
  def GroupName(self):
1880
1786
  """分组名
1881
- 注意:此字段可能返回 null,表示取不到有效值。
1882
1787
  :rtype: str
1883
1788
  """
1884
1789
  return self._GroupName
@@ -1890,7 +1795,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1890
1795
  @property
1891
1796
  def Status(self):
1892
1797
  """状态
1893
- 注意:此字段可能返回 null,表示取不到有效值。
1894
1798
  :rtype: str
1895
1799
  """
1896
1800
  return self._Status
@@ -1902,7 +1806,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1902
1806
  @property
1903
1807
  def Weight(self):
1904
1808
  """节点权重
1905
- 注意:此字段可能返回 null,表示取不到有效值。
1906
1809
  :rtype: int
1907
1810
  """
1908
1811
  return self._Weight
@@ -1914,7 +1817,6 @@ class CloudNativeAPIGatewayNode(AbstractModel):
1914
1817
  @property
1915
1818
  def IsDefaultWeight(self):
1916
1819
  """是否默认权重
1917
- 注意:此字段可能返回 null,表示取不到有效值。
1918
1820
  :rtype: bool
1919
1821
  """
1920
1822
  return self._IsDefaultWeight
@@ -1952,10 +1854,8 @@ class CloudNativeAPIGatewayNodeConfig(AbstractModel):
1952
1854
  def __init__(self):
1953
1855
  r"""
1954
1856
  :param _Specification: 节点配置, 1c2g|2c4g|4c8g|8c16g。
1955
- 注意:此字段可能返回 null,表示取不到有效值。
1956
1857
  :type Specification: str
1957
1858
  :param _Number: 节点数量,2-9。
1958
- 注意:此字段可能返回 null,表示取不到有效值。
1959
1859
  :type Number: int
1960
1860
  """
1961
1861
  self._Specification = None
@@ -1964,7 +1864,6 @@ class CloudNativeAPIGatewayNodeConfig(AbstractModel):
1964
1864
  @property
1965
1865
  def Specification(self):
1966
1866
  """节点配置, 1c2g|2c4g|4c8g|8c16g。
1967
- 注意:此字段可能返回 null,表示取不到有效值。
1968
1867
  :rtype: str
1969
1868
  """
1970
1869
  return self._Specification
@@ -1976,7 +1875,6 @@ class CloudNativeAPIGatewayNodeConfig(AbstractModel):
1976
1875
  @property
1977
1876
  def Number(self):
1978
1877
  """节点数量,2-9。
1979
- 注意:此字段可能返回 null,表示取不到有效值。
1980
1878
  :rtype: int
1981
1879
  """
1982
1880
  return self._Number
@@ -2011,30 +1909,24 @@ class CloudNativeAPIGatewayRateLimitDetail(AbstractModel):
2011
1909
  :param _QpsThresholds: qps阈值
2012
1910
  :type QpsThresholds: list of QpsThreshold
2013
1911
  :param _Path: 需要进行流量控制的请求路径
2014
- 注意:此字段可能返回 null,表示取不到有效值。
2015
1912
  :type Path: str
2016
1913
  :param _Header: 需要进行流量控制的请求头Key
2017
- 注意:此字段可能返回 null,表示取不到有效值。
2018
1914
  :type Header: str
2019
1915
  :param _LimitBy: 限流依据
2020
1916
  ip service consumer credential path header
2021
1917
  :type LimitBy: str
2022
1918
  :param _ExternalRedis: 外部redis配置
2023
- 注意:此字段可能返回 null,表示取不到有效值。
2024
1919
  :type ExternalRedis: :class:`tencentcloud.tse.v20201207.models.ExternalRedis`
2025
1920
  :param _Policy: 计数器策略
2026
1921
  local 单机
2027
1922
  redis 默认redis
2028
1923
  external_redis 外部redis
2029
1924
 
2030
- 注意:此字段可能返回 null,表示取不到有效值。
2031
1925
  :type Policy: str
2032
1926
  :param _RateLimitResponse: 响应配置,响应策略为text
2033
1927
 
2034
- 注意:此字段可能返回 null,表示取不到有效值。
2035
1928
  :type RateLimitResponse: :class:`tencentcloud.tse.v20201207.models.RateLimitResponse`
2036
1929
  :param _RateLimitResponseUrl: 请求转发地址
2037
- 注意:此字段可能返回 null,表示取不到有效值。
2038
1930
  :type RateLimitResponseUrl: str
2039
1931
  :param _ResponseType: 响应策略
2040
1932
  url请求转发
@@ -2096,7 +1988,6 @@ default 直接返回
2096
1988
  @property
2097
1989
  def Path(self):
2098
1990
  """需要进行流量控制的请求路径
2099
- 注意:此字段可能返回 null,表示取不到有效值。
2100
1991
  :rtype: str
2101
1992
  """
2102
1993
  return self._Path
@@ -2108,7 +1999,6 @@ default 直接返回
2108
1999
  @property
2109
2000
  def Header(self):
2110
2001
  """需要进行流量控制的请求头Key
2111
- 注意:此字段可能返回 null,表示取不到有效值。
2112
2002
  :rtype: str
2113
2003
  """
2114
2004
  return self._Header
@@ -2132,7 +2022,6 @@ ip service consumer credential path header
2132
2022
  @property
2133
2023
  def ExternalRedis(self):
2134
2024
  """外部redis配置
2135
- 注意:此字段可能返回 null,表示取不到有效值。
2136
2025
  :rtype: :class:`tencentcloud.tse.v20201207.models.ExternalRedis`
2137
2026
  """
2138
2027
  return self._ExternalRedis
@@ -2148,7 +2037,6 @@ local 单机
2148
2037
  redis 默认redis
2149
2038
  external_redis 外部redis
2150
2039
 
2151
- 注意:此字段可能返回 null,表示取不到有效值。
2152
2040
  :rtype: str
2153
2041
  """
2154
2042
  return self._Policy
@@ -2161,7 +2049,6 @@ external_redis 外部redis
2161
2049
  def RateLimitResponse(self):
2162
2050
  """响应配置,响应策略为text
2163
2051
 
2164
- 注意:此字段可能返回 null,表示取不到有效值。
2165
2052
  :rtype: :class:`tencentcloud.tse.v20201207.models.RateLimitResponse`
2166
2053
  """
2167
2054
  return self._RateLimitResponse
@@ -2173,7 +2060,6 @@ external_redis 外部redis
2173
2060
  @property
2174
2061
  def RateLimitResponseUrl(self):
2175
2062
  """请求转发地址
2176
- 注意:此字段可能返回 null,表示取不到有效值。
2177
2063
  :rtype: str
2178
2064
  """
2179
2065
  return self._RateLimitResponseUrl
@@ -2310,25 +2196,18 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2310
2196
  :param _StrategyId: 策略ID
2311
2197
  :type StrategyId: str
2312
2198
  :param _StrategyName: 策略名称
2313
- 注意:此字段可能返回 null,表示取不到有效值。
2314
2199
  :type StrategyName: str
2315
2200
  :param _CreateTime: 创建时间
2316
- 注意:此字段可能返回 null,表示取不到有效值。
2317
2201
  :type CreateTime: str
2318
2202
  :param _ModifyTime: 更新时间
2319
- 注意:此字段可能返回 null,表示取不到有效值。
2320
2203
  :type ModifyTime: str
2321
2204
  :param _Description: 策略描述
2322
- 注意:此字段可能返回 null,表示取不到有效值。
2323
2205
  :type Description: str
2324
2206
  :param _Config: 弹性伸缩配置
2325
- 注意:此字段可能返回 null,表示取不到有效值。
2326
2207
  :type Config: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayStrategyAutoScalerConfig`
2327
2208
  :param _GatewayId: 网关实例ID
2328
- 注意:此字段可能返回 null,表示取不到有效值。
2329
2209
  :type GatewayId: str
2330
2210
  :param _CronConfig: 定时伸缩配置
2331
- 注意:此字段可能返回 null,表示取不到有效值。
2332
2211
  :type CronConfig: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayStrategyCronScalerConfig`
2333
2212
  :param _MaxReplicas: 最大节点数
2334
2213
  注意:此字段可能返回 null,表示取不到有效值。
@@ -2358,7 +2237,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2358
2237
  @property
2359
2238
  def StrategyName(self):
2360
2239
  """策略名称
2361
- 注意:此字段可能返回 null,表示取不到有效值。
2362
2240
  :rtype: str
2363
2241
  """
2364
2242
  return self._StrategyName
@@ -2370,7 +2248,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2370
2248
  @property
2371
2249
  def CreateTime(self):
2372
2250
  """创建时间
2373
- 注意:此字段可能返回 null,表示取不到有效值。
2374
2251
  :rtype: str
2375
2252
  """
2376
2253
  return self._CreateTime
@@ -2382,7 +2259,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2382
2259
  @property
2383
2260
  def ModifyTime(self):
2384
2261
  """更新时间
2385
- 注意:此字段可能返回 null,表示取不到有效值。
2386
2262
  :rtype: str
2387
2263
  """
2388
2264
  return self._ModifyTime
@@ -2394,7 +2270,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2394
2270
  @property
2395
2271
  def Description(self):
2396
2272
  """策略描述
2397
- 注意:此字段可能返回 null,表示取不到有效值。
2398
2273
  :rtype: str
2399
2274
  """
2400
2275
  return self._Description
@@ -2406,7 +2281,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2406
2281
  @property
2407
2282
  def Config(self):
2408
2283
  """弹性伸缩配置
2409
- 注意:此字段可能返回 null,表示取不到有效值。
2410
2284
  :rtype: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayStrategyAutoScalerConfig`
2411
2285
  """
2412
2286
  return self._Config
@@ -2418,7 +2292,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2418
2292
  @property
2419
2293
  def GatewayId(self):
2420
2294
  """网关实例ID
2421
- 注意:此字段可能返回 null,表示取不到有效值。
2422
2295
  :rtype: str
2423
2296
  """
2424
2297
  return self._GatewayId
@@ -2430,7 +2303,6 @@ class CloudNativeAPIGatewayStrategy(AbstractModel):
2430
2303
  @property
2431
2304
  def CronConfig(self):
2432
2305
  """定时伸缩配置
2433
- 注意:此字段可能返回 null,表示取不到有效值。
2434
2306
  :rtype: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayStrategyCronScalerConfig`
2435
2307
  """
2436
2308
  return self._CronConfig
@@ -2757,19 +2629,14 @@ class CloudNativeAPIGatewayStrategyBindingGroupInfo(AbstractModel):
2757
2629
  def __init__(self):
2758
2630
  r"""
2759
2631
  :param _GroupId: 网关分组ID
2760
- 注意:此字段可能返回 null,表示取不到有效值。
2761
2632
  :type GroupId: str
2762
2633
  :param _NodeConfig: 节点配置
2763
- 注意:此字段可能返回 null,表示取不到有效值。
2764
2634
  :type NodeConfig: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayNodeConfig`
2765
2635
  :param _BindTime: 绑定时间
2766
- 注意:此字段可能返回 null,表示取不到有效值。
2767
2636
  :type BindTime: str
2768
2637
  :param _GroupName: 网关分组名称
2769
- 注意:此字段可能返回 null,表示取不到有效值。
2770
2638
  :type GroupName: str
2771
2639
  :param _Status: 绑定状态
2772
- 注意:此字段可能返回 null,表示取不到有效值。
2773
2640
  :type Status: str
2774
2641
  """
2775
2642
  self._GroupId = None
@@ -2781,7 +2648,6 @@ class CloudNativeAPIGatewayStrategyBindingGroupInfo(AbstractModel):
2781
2648
  @property
2782
2649
  def GroupId(self):
2783
2650
  """网关分组ID
2784
- 注意:此字段可能返回 null,表示取不到有效值。
2785
2651
  :rtype: str
2786
2652
  """
2787
2653
  return self._GroupId
@@ -2793,7 +2659,6 @@ class CloudNativeAPIGatewayStrategyBindingGroupInfo(AbstractModel):
2793
2659
  @property
2794
2660
  def NodeConfig(self):
2795
2661
  """节点配置
2796
- 注意:此字段可能返回 null,表示取不到有效值。
2797
2662
  :rtype: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayNodeConfig`
2798
2663
  """
2799
2664
  return self._NodeConfig
@@ -2805,7 +2670,6 @@ class CloudNativeAPIGatewayStrategyBindingGroupInfo(AbstractModel):
2805
2670
  @property
2806
2671
  def BindTime(self):
2807
2672
  """绑定时间
2808
- 注意:此字段可能返回 null,表示取不到有效值。
2809
2673
  :rtype: str
2810
2674
  """
2811
2675
  return self._BindTime
@@ -2817,7 +2681,6 @@ class CloudNativeAPIGatewayStrategyBindingGroupInfo(AbstractModel):
2817
2681
  @property
2818
2682
  def GroupName(self):
2819
2683
  """网关分组名称
2820
- 注意:此字段可能返回 null,表示取不到有效值。
2821
2684
  :rtype: str
2822
2685
  """
2823
2686
  return self._GroupName
@@ -2829,7 +2692,6 @@ class CloudNativeAPIGatewayStrategyBindingGroupInfo(AbstractModel):
2829
2692
  @property
2830
2693
  def Status(self):
2831
2694
  """绑定状态
2832
- 注意:此字段可能返回 null,表示取不到有效值。
2833
2695
  :rtype: str
2834
2696
  """
2835
2697
  return self._Status
@@ -3073,10 +2935,8 @@ class CloudNativeAPIGatewayVpcConfig(AbstractModel):
3073
2935
  def __init__(self):
3074
2936
  r"""
3075
2937
  :param _VpcId: 私有网络ID。
3076
- 注意:此字段可能返回 null,表示取不到有效值。
3077
2938
  :type VpcId: str
3078
2939
  :param _SubnetId: 子网ID。
3079
- 注意:此字段可能返回 null,表示取不到有效值。
3080
2940
  :type SubnetId: str
3081
2941
  """
3082
2942
  self._VpcId = None
@@ -3085,7 +2945,6 @@ class CloudNativeAPIGatewayVpcConfig(AbstractModel):
3085
2945
  @property
3086
2946
  def VpcId(self):
3087
2947
  """私有网络ID。
3088
- 注意:此字段可能返回 null,表示取不到有效值。
3089
2948
  :rtype: str
3090
2949
  """
3091
2950
  return self._VpcId
@@ -3097,7 +2956,6 @@ class CloudNativeAPIGatewayVpcConfig(AbstractModel):
3097
2956
  @property
3098
2957
  def SubnetId(self):
3099
2958
  """子网ID。
3100
- 注意:此字段可能返回 null,表示取不到有效值。
3101
2959
  :rtype: str
3102
2960
  """
3103
2961
  return self._SubnetId
@@ -5856,7 +5714,6 @@ class CreateCloudNativeAPIGatewayResult(AbstractModel):
5856
5714
  :param _Status: 云原生网关状态。
5857
5715
  :type Status: str
5858
5716
  :param _TaskId: 任务ID
5859
- 注意:此字段可能返回 null,表示取不到有效值。
5860
5717
  :type TaskId: str
5861
5718
  """
5862
5719
  self._GatewayId = None
@@ -5888,7 +5745,6 @@ class CreateCloudNativeAPIGatewayResult(AbstractModel):
5888
5745
  @property
5889
5746
  def TaskId(self):
5890
5747
  """任务ID
5891
- 注意:此字段可能返回 null,表示取不到有效值。
5892
5748
  :rtype: str
5893
5749
  """
5894
5750
  return self._TaskId
@@ -6356,10 +6212,8 @@ class CreateCloudNativeAPIGatewayServerGroupResult(AbstractModel):
6356
6212
  :param _GroupId: 分组id
6357
6213
  :type GroupId: str
6358
6214
  :param _Status: 状态
6359
- 注意:此字段可能返回 null,表示取不到有效值。
6360
6215
  :type Status: str
6361
6216
  :param _TaskId: 任务ID
6362
- 注意:此字段可能返回 null,表示取不到有效值。
6363
6217
  :type TaskId: str
6364
6218
  """
6365
6219
  self._GatewayId = None
@@ -6392,7 +6246,6 @@ class CreateCloudNativeAPIGatewayServerGroupResult(AbstractModel):
6392
6246
  @property
6393
6247
  def Status(self):
6394
6248
  """状态
6395
- 注意:此字段可能返回 null,表示取不到有效值。
6396
6249
  :rtype: str
6397
6250
  """
6398
6251
  return self._Status
@@ -6404,7 +6257,6 @@ class CreateCloudNativeAPIGatewayServerGroupResult(AbstractModel):
6404
6257
  @property
6405
6258
  def TaskId(self):
6406
6259
  """任务ID
6407
- 注意:此字段可能返回 null,表示取不到有效值。
6408
6260
  :rtype: str
6409
6261
  """
6410
6262
  return self._TaskId
@@ -6694,7 +6546,6 @@ class CreateCloudNativeAPIGatewayServiceResponse(AbstractModel):
6694
6546
  def __init__(self):
6695
6547
  r"""
6696
6548
  :param _Result: 网关服务创建结果
6697
- 注意:此字段可能返回 null,表示取不到有效值。
6698
6549
  :type Result: :class:`tencentcloud.tse.v20201207.models.CreateGatewayServiceResult`
6699
6550
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
6700
6551
  :type RequestId: str
@@ -6705,7 +6556,6 @@ class CreateCloudNativeAPIGatewayServiceResponse(AbstractModel):
6705
6556
  @property
6706
6557
  def Result(self):
6707
6558
  """网关服务创建结果
6708
- 注意:此字段可能返回 null,表示取不到有效值。
6709
6559
  :rtype: :class:`tencentcloud.tse.v20201207.models.CreateGatewayServiceResult`
6710
6560
  """
6711
6561
  return self._Result
@@ -8081,7 +7931,6 @@ class CreateNativeGatewayServerGroupResponse(AbstractModel):
8081
7931
  def __init__(self):
8082
7932
  r"""
8083
7933
  :param _Result: 网关分组创建信息
8084
- 注意:此字段可能返回 null,表示取不到有效值。
8085
7934
  :type Result: :class:`tencentcloud.tse.v20201207.models.CreateCloudNativeAPIGatewayServerGroupResult`
8086
7935
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
8087
7936
  :type RequestId: str
@@ -8092,7 +7941,6 @@ class CreateNativeGatewayServerGroupResponse(AbstractModel):
8092
7941
  @property
8093
7942
  def Result(self):
8094
7943
  """网关分组创建信息
8095
- 注意:此字段可能返回 null,表示取不到有效值。
8096
7944
  :rtype: :class:`tencentcloud.tse.v20201207.models.CreateCloudNativeAPIGatewayServerGroupResult`
8097
7945
  """
8098
7946
  return self._Result
@@ -10447,7 +10295,6 @@ class DeleteNativeGatewayServerGroupResult(AbstractModel):
10447
10295
  :param _Status: 删除状态
10448
10296
  :type Status: str
10449
10297
  :param _TaskId: 任务ID
10450
- 注意:此字段可能返回 null,表示取不到有效值。
10451
10298
  :type TaskId: str
10452
10299
  """
10453
10300
  self._GatewayId = None
@@ -10491,7 +10338,6 @@ class DeleteNativeGatewayServerGroupResult(AbstractModel):
10491
10338
  @property
10492
10339
  def TaskId(self):
10493
10340
  """任务ID
10494
- 注意:此字段可能返回 null,表示取不到有效值。
10495
10341
  :rtype: str
10496
10342
  """
10497
10343
  return self._TaskId
@@ -11210,7 +11056,6 @@ class DescribeCloudNativeAPIGatewayCertificateDetailsResponse(AbstractModel):
11210
11056
  def __init__(self):
11211
11057
  r"""
11212
11058
  :param _Result: 无
11213
- 注意:此字段可能返回 null,表示取不到有效值。
11214
11059
  :type Result: :class:`tencentcloud.tse.v20201207.models.KongCertificate`
11215
11060
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11216
11061
  :type RequestId: str
@@ -11221,7 +11066,6 @@ class DescribeCloudNativeAPIGatewayCertificateDetailsResponse(AbstractModel):
11221
11066
  @property
11222
11067
  def Result(self):
11223
11068
  """无
11224
- 注意:此字段可能返回 null,表示取不到有效值。
11225
11069
  :rtype: :class:`tencentcloud.tse.v20201207.models.KongCertificate`
11226
11070
  """
11227
11071
  return self._Result
@@ -11488,13 +11332,10 @@ class DescribeCloudNativeAPIGatewayConfigResult(AbstractModel):
11488
11332
  :param _ConfigList: 分组网络配置列表。
11489
11333
  :type ConfigList: list of CloudNativeAPIGatewayConfig
11490
11334
  :param _GroupSubnetId: 分组子网信息
11491
- 注意:此字段可能返回 null,表示取不到有效值。
11492
11335
  :type GroupSubnetId: str
11493
11336
  :param _GroupVpcId: 分组VPC信息
11494
- 注意:此字段可能返回 null,表示取不到有效值。
11495
11337
  :type GroupVpcId: str
11496
11338
  :param _GroupId: 分组ID
11497
- 注意:此字段可能返回 null,表示取不到有效值。
11498
11339
  :type GroupId: str
11499
11340
  """
11500
11341
  self._GatewayId = None
@@ -11528,7 +11369,6 @@ class DescribeCloudNativeAPIGatewayConfigResult(AbstractModel):
11528
11369
  @property
11529
11370
  def GroupSubnetId(self):
11530
11371
  """分组子网信息
11531
- 注意:此字段可能返回 null,表示取不到有效值。
11532
11372
  :rtype: str
11533
11373
  """
11534
11374
  return self._GroupSubnetId
@@ -11540,7 +11380,6 @@ class DescribeCloudNativeAPIGatewayConfigResult(AbstractModel):
11540
11380
  @property
11541
11381
  def GroupVpcId(self):
11542
11382
  """分组VPC信息
11543
- 注意:此字段可能返回 null,表示取不到有效值。
11544
11383
  :rtype: str
11545
11384
  """
11546
11385
  return self._GroupVpcId
@@ -11552,7 +11391,6 @@ class DescribeCloudNativeAPIGatewayConfigResult(AbstractModel):
11552
11391
  @property
11553
11392
  def GroupId(self):
11554
11393
  """分组ID
11555
- 注意:此字段可能返回 null,表示取不到有效值。
11556
11394
  :rtype: str
11557
11395
  """
11558
11396
  return self._GroupId
@@ -11627,7 +11465,6 @@ class DescribeCloudNativeAPIGatewayInfoByIpResponse(AbstractModel):
11627
11465
  def __init__(self):
11628
11466
  r"""
11629
11467
  :param _Result: 出参
11630
- 注意:此字段可能返回 null,表示取不到有效值。
11631
11468
  :type Result: :class:`tencentcloud.tse.v20201207.models.DescribeInstanceInfoByIpResult`
11632
11469
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11633
11470
  :type RequestId: str
@@ -11638,7 +11475,6 @@ class DescribeCloudNativeAPIGatewayInfoByIpResponse(AbstractModel):
11638
11475
  @property
11639
11476
  def Result(self):
11640
11477
  """出参
11641
- 注意:此字段可能返回 null,表示取不到有效值。
11642
11478
  :rtype: :class:`tencentcloud.tse.v20201207.models.DescribeInstanceInfoByIpResult`
11643
11479
  """
11644
11480
  return self._Result
@@ -11892,7 +11728,6 @@ class DescribeCloudNativeAPIGatewayPortsResponse(AbstractModel):
11892
11728
  def __init__(self):
11893
11729
  r"""
11894
11730
  :param _Result: 云原生API网关实例协议端口列表响应结果
11895
- 注意:此字段可能返回 null,表示取不到有效值。
11896
11731
  :type Result: :class:`tencentcloud.tse.v20201207.models.DescribeGatewayInstancePortResult`
11897
11732
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
11898
11733
  :type RequestId: str
@@ -11903,7 +11738,6 @@ class DescribeCloudNativeAPIGatewayPortsResponse(AbstractModel):
11903
11738
  @property
11904
11739
  def Result(self):
11905
11740
  """云原生API网关实例协议端口列表响应结果
11906
- 注意:此字段可能返回 null,表示取不到有效值。
11907
11741
  :rtype: :class:`tencentcloud.tse.v20201207.models.DescribeGatewayInstancePortResult`
11908
11742
  """
11909
11743
  return self._Result
@@ -12040,53 +11874,37 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12040
11874
  :param _CreateTime: 云原生API网关创建时间。
12041
11875
  :type CreateTime: str
12042
11876
  :param _Tags: 实例的标签信息
12043
- 注意:此字段可能返回 null,表示取不到有效值。
12044
11877
  :type Tags: list of InstanceTagInfo
12045
11878
  :param _EnableCls: 是否开启 cls 日志
12046
- 注意:此字段可能返回 null,表示取不到有效值。
12047
11879
  :type EnableCls: bool
12048
11880
  :param _TradeType: 付费模式,0表示后付费,1预付费
12049
- 注意:此字段可能返回 null,表示取不到有效值。
12050
11881
  :type TradeType: int
12051
11882
  :param _FeatureVersion: 实例版本,当前支持开发版、标准版、专业版【TRIAL、STANDARD、PROFESSIONAL】
12052
- 注意:此字段可能返回 null,表示取不到有效值。
12053
11883
  :type FeatureVersion: str
12054
11884
  :param _InternetMaxBandwidthOut: 公网出流量带宽,[1,2048]Mbps
12055
- 注意:此字段可能返回 null,表示取不到有效值。
12056
11885
  :type InternetMaxBandwidthOut: int
12057
11886
  :param _AutoRenewFlag: 自动续费标记,0表示默认状态(用户未设置,即初始状态);
12058
11887
  1表示自动续费,2表示明确不自动续费(用户设置),若业务无续费概念或无需自动续费,需要设置为0
12059
- 注意:此字段可能返回 null,表示取不到有效值。
12060
11888
  :type AutoRenewFlag: int
12061
11889
  :param _CurDeadline: 到期时间,预付费时使用
12062
- 注意:此字段可能返回 null,表示取不到有效值。
12063
11890
  :type CurDeadline: str
12064
11891
  :param _IsolateTime: 隔离时间,实例隔离时使用
12065
- 注意:此字段可能返回 null,表示取不到有效值。
12066
11892
  :type IsolateTime: str
12067
11893
  :param _EnableInternet: 是否开启客户端公网。
12068
- 注意:此字段可能返回 null,表示取不到有效值。
12069
11894
  :type EnableInternet: bool
12070
11895
  :param _EngineRegion: 实例实际的地域信息
12071
- 注意:此字段可能返回 null,表示取不到有效值。
12072
11896
  :type EngineRegion: str
12073
11897
  :param _IngressClassName: Ingress class名称
12074
- 注意:此字段可能返回 null,表示取不到有效值。
12075
11898
  :type IngressClassName: str
12076
11899
  :param _InternetPayMode: 公网计费方式。可选取值 BANDWIDTH | TRAFFIC ,表示按带宽和按流量计费。
12077
- 注意:此字段可能返回 null,表示取不到有效值。
12078
11900
  :type InternetPayMode: str
12079
11901
  :param _GatewayMinorVersion: 云原生API网关小版本号
12080
- 注意:此字段可能返回 null,表示取不到有效值。
12081
11902
  :type GatewayMinorVersion: str
12082
11903
  :param _InstancePort: 实例监听的端口信息
12083
- 注意:此字段可能返回 null,表示取不到有效值。
12084
11904
  :type InstancePort: :class:`tencentcloud.tse.v20201207.models.InstancePort`
12085
11905
  :param _LoadBalancerType: 公网CLB默认类型
12086
- 注意:此字段可能返回 null,表示取不到有效值。
12087
11906
  :type LoadBalancerType: str
12088
11907
  :param _PublicIpAddresses: 公网IP地址列表
12089
- 注意:此字段可能返回 null,表示取不到有效值。
12090
11908
  :type PublicIpAddresses: list of str
12091
11909
  """
12092
11910
  self._GatewayId = None
@@ -12219,7 +12037,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12219
12037
  @property
12220
12038
  def Tags(self):
12221
12039
  """实例的标签信息
12222
- 注意:此字段可能返回 null,表示取不到有效值。
12223
12040
  :rtype: list of InstanceTagInfo
12224
12041
  """
12225
12042
  return self._Tags
@@ -12231,7 +12048,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12231
12048
  @property
12232
12049
  def EnableCls(self):
12233
12050
  """是否开启 cls 日志
12234
- 注意:此字段可能返回 null,表示取不到有效值。
12235
12051
  :rtype: bool
12236
12052
  """
12237
12053
  return self._EnableCls
@@ -12243,7 +12059,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12243
12059
  @property
12244
12060
  def TradeType(self):
12245
12061
  """付费模式,0表示后付费,1预付费
12246
- 注意:此字段可能返回 null,表示取不到有效值。
12247
12062
  :rtype: int
12248
12063
  """
12249
12064
  return self._TradeType
@@ -12255,7 +12070,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12255
12070
  @property
12256
12071
  def FeatureVersion(self):
12257
12072
  """实例版本,当前支持开发版、标准版、专业版【TRIAL、STANDARD、PROFESSIONAL】
12258
- 注意:此字段可能返回 null,表示取不到有效值。
12259
12073
  :rtype: str
12260
12074
  """
12261
12075
  return self._FeatureVersion
@@ -12267,7 +12081,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12267
12081
  @property
12268
12082
  def InternetMaxBandwidthOut(self):
12269
12083
  """公网出流量带宽,[1,2048]Mbps
12270
- 注意:此字段可能返回 null,表示取不到有效值。
12271
12084
  :rtype: int
12272
12085
  """
12273
12086
  return self._InternetMaxBandwidthOut
@@ -12280,7 +12093,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12280
12093
  def AutoRenewFlag(self):
12281
12094
  """自动续费标记,0表示默认状态(用户未设置,即初始状态);
12282
12095
  1表示自动续费,2表示明确不自动续费(用户设置),若业务无续费概念或无需自动续费,需要设置为0
12283
- 注意:此字段可能返回 null,表示取不到有效值。
12284
12096
  :rtype: int
12285
12097
  """
12286
12098
  return self._AutoRenewFlag
@@ -12292,7 +12104,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12292
12104
  @property
12293
12105
  def CurDeadline(self):
12294
12106
  """到期时间,预付费时使用
12295
- 注意:此字段可能返回 null,表示取不到有效值。
12296
12107
  :rtype: str
12297
12108
  """
12298
12109
  return self._CurDeadline
@@ -12304,7 +12115,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12304
12115
  @property
12305
12116
  def IsolateTime(self):
12306
12117
  """隔离时间,实例隔离时使用
12307
- 注意:此字段可能返回 null,表示取不到有效值。
12308
12118
  :rtype: str
12309
12119
  """
12310
12120
  return self._IsolateTime
@@ -12316,7 +12126,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12316
12126
  @property
12317
12127
  def EnableInternet(self):
12318
12128
  """是否开启客户端公网。
12319
- 注意:此字段可能返回 null,表示取不到有效值。
12320
12129
  :rtype: bool
12321
12130
  """
12322
12131
  return self._EnableInternet
@@ -12328,7 +12137,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12328
12137
  @property
12329
12138
  def EngineRegion(self):
12330
12139
  """实例实际的地域信息
12331
- 注意:此字段可能返回 null,表示取不到有效值。
12332
12140
  :rtype: str
12333
12141
  """
12334
12142
  return self._EngineRegion
@@ -12340,7 +12148,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12340
12148
  @property
12341
12149
  def IngressClassName(self):
12342
12150
  """Ingress class名称
12343
- 注意:此字段可能返回 null,表示取不到有效值。
12344
12151
  :rtype: str
12345
12152
  """
12346
12153
  return self._IngressClassName
@@ -12352,7 +12159,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12352
12159
  @property
12353
12160
  def InternetPayMode(self):
12354
12161
  """公网计费方式。可选取值 BANDWIDTH | TRAFFIC ,表示按带宽和按流量计费。
12355
- 注意:此字段可能返回 null,表示取不到有效值。
12356
12162
  :rtype: str
12357
12163
  """
12358
12164
  return self._InternetPayMode
@@ -12364,7 +12170,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12364
12170
  @property
12365
12171
  def GatewayMinorVersion(self):
12366
12172
  """云原生API网关小版本号
12367
- 注意:此字段可能返回 null,表示取不到有效值。
12368
12173
  :rtype: str
12369
12174
  """
12370
12175
  return self._GatewayMinorVersion
@@ -12376,7 +12181,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12376
12181
  @property
12377
12182
  def InstancePort(self):
12378
12183
  """实例监听的端口信息
12379
- 注意:此字段可能返回 null,表示取不到有效值。
12380
12184
  :rtype: :class:`tencentcloud.tse.v20201207.models.InstancePort`
12381
12185
  """
12382
12186
  return self._InstancePort
@@ -12388,7 +12192,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12388
12192
  @property
12389
12193
  def LoadBalancerType(self):
12390
12194
  """公网CLB默认类型
12391
- 注意:此字段可能返回 null,表示取不到有效值。
12392
12195
  :rtype: str
12393
12196
  """
12394
12197
  return self._LoadBalancerType
@@ -12400,7 +12203,6 @@ class DescribeCloudNativeAPIGatewayResult(AbstractModel):
12400
12203
  @property
12401
12204
  def PublicIpAddresses(self):
12402
12205
  """公网IP地址列表
12403
- 注意:此字段可能返回 null,表示取不到有效值。
12404
12206
  :rtype: list of str
12405
12207
  """
12406
12208
  return self._PublicIpAddresses
@@ -12679,7 +12481,6 @@ class DescribeCloudNativeAPIGatewayRoutesResponse(AbstractModel):
12679
12481
  def __init__(self):
12680
12482
  r"""
12681
12483
  :param _Result: 无
12682
- 注意:此字段可能返回 null,表示取不到有效值。
12683
12484
  :type Result: :class:`tencentcloud.tse.v20201207.models.KongServiceRouteList`
12684
12485
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12685
12486
  :type RequestId: str
@@ -12690,7 +12491,6 @@ class DescribeCloudNativeAPIGatewayRoutesResponse(AbstractModel):
12690
12491
  @property
12691
12492
  def Result(self):
12692
12493
  """无
12693
- 注意:此字段可能返回 null,表示取不到有效值。
12694
12494
  :rtype: :class:`tencentcloud.tse.v20201207.models.KongServiceRouteList`
12695
12495
  """
12696
12496
  return self._Result
@@ -12908,7 +12708,6 @@ class DescribeCloudNativeAPIGatewayServicesResponse(AbstractModel):
12908
12708
  def __init__(self):
12909
12709
  r"""
12910
12710
  :param _Result: 无
12911
- 注意:此字段可能返回 null,表示取不到有效值。
12912
12711
  :type Result: :class:`tencentcloud.tse.v20201207.models.KongServices`
12913
12712
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12914
12713
  :type RequestId: str
@@ -12919,7 +12718,6 @@ class DescribeCloudNativeAPIGatewayServicesResponse(AbstractModel):
12919
12718
  @property
12920
12719
  def Result(self):
12921
12720
  """无
12922
- 注意:此字段可能返回 null,表示取不到有效值。
12923
12721
  :rtype: :class:`tencentcloud.tse.v20201207.models.KongServices`
12924
12722
  """
12925
12723
  return self._Result
@@ -14605,10 +14403,8 @@ class DescribeGatewayInstancePortResult(AbstractModel):
14605
14403
  def __init__(self):
14606
14404
  r"""
14607
14405
  :param _GatewayId: 云原生API网关ID
14608
- 注意:此字段可能返回 null,表示取不到有效值。
14609
14406
  :type GatewayId: str
14610
14407
  :param _GatewayInstancePortList: 网关实例协议端口列表
14611
- 注意:此字段可能返回 null,表示取不到有效值。
14612
14408
  :type GatewayInstancePortList: list of GatewayInstanceSchemeAndPorts
14613
14409
  """
14614
14410
  self._GatewayId = None
@@ -14617,7 +14413,6 @@ class DescribeGatewayInstancePortResult(AbstractModel):
14617
14413
  @property
14618
14414
  def GatewayId(self):
14619
14415
  """云原生API网关ID
14620
- 注意:此字段可能返回 null,表示取不到有效值。
14621
14416
  :rtype: str
14622
14417
  """
14623
14418
  return self._GatewayId
@@ -14629,7 +14424,6 @@ class DescribeGatewayInstancePortResult(AbstractModel):
14629
14424
  @property
14630
14425
  def GatewayInstancePortList(self):
14631
14426
  """网关实例协议端口列表
14632
- 注意:此字段可能返回 null,表示取不到有效值。
14633
14427
  :rtype: list of GatewayInstanceSchemeAndPorts
14634
14428
  """
14635
14429
  return self._GatewayInstancePortList
@@ -15918,10 +15712,8 @@ class DescribeInstanceInfoByIpResult(AbstractModel):
15918
15712
  def __init__(self):
15919
15713
  r"""
15920
15714
  :param _GatewayId: 实例id
15921
- 注意:此字段可能返回 null,表示取不到有效值。
15922
15715
  :type GatewayId: str
15923
15716
  :param _GroupId: 分组id
15924
- 注意:此字段可能返回 null,表示取不到有效值。
15925
15717
  :type GroupId: str
15926
15718
  """
15927
15719
  self._GatewayId = None
@@ -15930,7 +15722,6 @@ class DescribeInstanceInfoByIpResult(AbstractModel):
15930
15722
  @property
15931
15723
  def GatewayId(self):
15932
15724
  """实例id
15933
- 注意:此字段可能返回 null,表示取不到有效值。
15934
15725
  :rtype: str
15935
15726
  """
15936
15727
  return self._GatewayId
@@ -15942,7 +15733,6 @@ class DescribeInstanceInfoByIpResult(AbstractModel):
15942
15733
  @property
15943
15734
  def GroupId(self):
15944
15735
  """分组id
15945
- 注意:此字段可能返回 null,表示取不到有效值。
15946
15736
  :rtype: str
15947
15737
  """
15948
15738
  return self._GroupId
@@ -17013,13 +16803,10 @@ class DescribePublicAddressConfigResult(AbstractModel):
17013
16803
  def __init__(self):
17014
16804
  r"""
17015
16805
  :param _GatewayId: 网关实例id
17016
- 注意:此字段可能返回 null,表示取不到有效值。
17017
16806
  :type GatewayId: str
17018
16807
  :param _ConfigList: 公网地址信息
17019
- 注意:此字段可能返回 null,表示取不到有效值。
17020
16808
  :type ConfigList: list of PublicAddressConfig
17021
16809
  :param _TotalCount: 总个数
17022
- 注意:此字段可能返回 null,表示取不到有效值。
17023
16810
  :type TotalCount: int
17024
16811
  """
17025
16812
  self._GatewayId = None
@@ -17029,7 +16816,6 @@ class DescribePublicAddressConfigResult(AbstractModel):
17029
16816
  @property
17030
16817
  def GatewayId(self):
17031
16818
  """网关实例id
17032
- 注意:此字段可能返回 null,表示取不到有效值。
17033
16819
  :rtype: str
17034
16820
  """
17035
16821
  return self._GatewayId
@@ -17041,7 +16827,6 @@ class DescribePublicAddressConfigResult(AbstractModel):
17041
16827
  @property
17042
16828
  def ConfigList(self):
17043
16829
  """公网地址信息
17044
- 注意:此字段可能返回 null,表示取不到有效值。
17045
16830
  :rtype: list of PublicAddressConfig
17046
16831
  """
17047
16832
  return self._ConfigList
@@ -17053,7 +16838,6 @@ class DescribePublicAddressConfigResult(AbstractModel):
17053
16838
  @property
17054
16839
  def TotalCount(self):
17055
16840
  """总个数
17056
- 注意:此字段可能返回 null,表示取不到有效值。
17057
16841
  :rtype: int
17058
16842
  """
17059
16843
  return self._TotalCount
@@ -17156,7 +16940,6 @@ class DescribePublicNetworkResponse(AbstractModel):
17156
16940
  def __init__(self):
17157
16941
  r"""
17158
16942
  :param _Result: 获取云原生API网关公网详情响应结果。
17159
- 注意:此字段可能返回 null,表示取不到有效值。
17160
16943
  :type Result: :class:`tencentcloud.tse.v20201207.models.DescribePublicNetworkResult`
17161
16944
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17162
16945
  :type RequestId: str
@@ -17167,7 +16950,6 @@ class DescribePublicNetworkResponse(AbstractModel):
17167
16950
  @property
17168
16951
  def Result(self):
17169
16952
  """获取云原生API网关公网详情响应结果。
17170
- 注意:此字段可能返回 null,表示取不到有效值。
17171
16953
  :rtype: :class:`tencentcloud.tse.v20201207.models.DescribePublicNetworkResult`
17172
16954
  """
17173
16955
  return self._Result
@@ -17203,13 +16985,10 @@ class DescribePublicNetworkResult(AbstractModel):
17203
16985
  def __init__(self):
17204
16986
  r"""
17205
16987
  :param _GatewayId: 网关实例ID
17206
- 注意:此字段可能返回 null,表示取不到有效值。
17207
16988
  :type GatewayId: str
17208
16989
  :param _GroupId: 网关分组ID
17209
- 注意:此字段可能返回 null,表示取不到有效值。
17210
16990
  :type GroupId: str
17211
16991
  :param _PublicNetwork: 客户端公网信息
17212
- 注意:此字段可能返回 null,表示取不到有效值。
17213
16992
  :type PublicNetwork: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayConfig`
17214
16993
  """
17215
16994
  self._GatewayId = None
@@ -17219,7 +16998,6 @@ class DescribePublicNetworkResult(AbstractModel):
17219
16998
  @property
17220
16999
  def GatewayId(self):
17221
17000
  """网关实例ID
17222
- 注意:此字段可能返回 null,表示取不到有效值。
17223
17001
  :rtype: str
17224
17002
  """
17225
17003
  return self._GatewayId
@@ -17231,7 +17009,6 @@ class DescribePublicNetworkResult(AbstractModel):
17231
17009
  @property
17232
17010
  def GroupId(self):
17233
17011
  """网关分组ID
17234
- 注意:此字段可能返回 null,表示取不到有效值。
17235
17012
  :rtype: str
17236
17013
  """
17237
17014
  return self._GroupId
@@ -17243,7 +17020,6 @@ class DescribePublicNetworkResult(AbstractModel):
17243
17020
  @property
17244
17021
  def PublicNetwork(self):
17245
17022
  """客户端公网信息
17246
- 注意:此字段可能返回 null,表示取不到有效值。
17247
17023
  :rtype: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayConfig`
17248
17024
  """
17249
17025
  return self._PublicNetwork
@@ -17765,7 +17541,6 @@ class DescribeUpstreamHealthCheckConfigResponse(AbstractModel):
17765
17541
  def __init__(self):
17766
17542
  r"""
17767
17543
  :param _Result: 健康检查配置
17768
- 注意:此字段可能返回 null,表示取不到有效值。
17769
17544
  :type Result: :class:`tencentcloud.tse.v20201207.models.UpstreamHealthCheckConfig`
17770
17545
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17771
17546
  :type RequestId: str
@@ -17776,7 +17551,6 @@ class DescribeUpstreamHealthCheckConfigResponse(AbstractModel):
17776
17551
  @property
17777
17552
  def Result(self):
17778
17553
  """健康检查配置
17779
- 注意:此字段可能返回 null,表示取不到有效值。
17780
17554
  :rtype: :class:`tencentcloud.tse.v20201207.models.UpstreamHealthCheckConfig`
17781
17555
  """
17782
17556
  return self._Result
@@ -17848,7 +17622,6 @@ class DescribeWafDomainsResponse(AbstractModel):
17848
17622
  def __init__(self):
17849
17623
  r"""
17850
17624
  :param _Result: 已被 WAF 防护域名
17851
- 注意:此字段可能返回 null,表示取不到有效值。
17852
17625
  :type Result: :class:`tencentcloud.tse.v20201207.models.DescribeWafDomainsResult`
17853
17626
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17854
17627
  :type RequestId: str
@@ -17859,7 +17632,6 @@ class DescribeWafDomainsResponse(AbstractModel):
17859
17632
  @property
17860
17633
  def Result(self):
17861
17634
  """已被 WAF 防护域名
17862
- 注意:此字段可能返回 null,表示取不到有效值。
17863
17635
  :rtype: :class:`tencentcloud.tse.v20201207.models.DescribeWafDomainsResult`
17864
17636
  """
17865
17637
  return self._Result
@@ -18056,16 +17828,12 @@ class DescribeWafProtectionResult(AbstractModel):
18056
17828
  def __init__(self):
18057
17829
  r"""
18058
17830
  :param _GlobalStatus: 全局防护状态
18059
- 注意:此字段可能返回 null,表示取不到有效值。
18060
17831
  :type GlobalStatus: str
18061
17832
  :param _ServicesStatus: 服务防护状态
18062
- 注意:此字段可能返回 null,表示取不到有效值。
18063
17833
  :type ServicesStatus: list of ServiceWafStatus
18064
17834
  :param _RouteStatus: 路由防护状态
18065
- 注意:此字段可能返回 null,表示取不到有效值。
18066
17835
  :type RouteStatus: list of RouteWafStatus
18067
17836
  :param _ObjectStatus: 对象防护状态
18068
- 注意:此字段可能返回 null,表示取不到有效值。
18069
17837
  :type ObjectStatus: str
18070
17838
  """
18071
17839
  self._GlobalStatus = None
@@ -18076,7 +17844,6 @@ class DescribeWafProtectionResult(AbstractModel):
18076
17844
  @property
18077
17845
  def GlobalStatus(self):
18078
17846
  """全局防护状态
18079
- 注意:此字段可能返回 null,表示取不到有效值。
18080
17847
  :rtype: str
18081
17848
  """
18082
17849
  return self._GlobalStatus
@@ -18088,7 +17855,6 @@ class DescribeWafProtectionResult(AbstractModel):
18088
17855
  @property
18089
17856
  def ServicesStatus(self):
18090
17857
  """服务防护状态
18091
- 注意:此字段可能返回 null,表示取不到有效值。
18092
17858
  :rtype: list of ServiceWafStatus
18093
17859
  """
18094
17860
  return self._ServicesStatus
@@ -18100,7 +17866,6 @@ class DescribeWafProtectionResult(AbstractModel):
18100
17866
  @property
18101
17867
  def RouteStatus(self):
18102
17868
  """路由防护状态
18103
- 注意:此字段可能返回 null,表示取不到有效值。
18104
17869
  :rtype: list of RouteWafStatus
18105
17870
  """
18106
17871
  return self._RouteStatus
@@ -18112,7 +17877,6 @@ class DescribeWafProtectionResult(AbstractModel):
18112
17877
  @property
18113
17878
  def ObjectStatus(self):
18114
17879
  """对象防护状态
18115
- 注意:此字段可能返回 null,表示取不到有效值。
18116
17880
  :rtype: str
18117
17881
  """
18118
17882
  return self._ObjectStatus
@@ -18961,16 +18725,12 @@ class ExternalRedis(AbstractModel):
18961
18725
  def __init__(self):
18962
18726
  r"""
18963
18727
  :param _RedisHost: redis ip
18964
- 注意:此字段可能返回 null,表示取不到有效值。
18965
18728
  :type RedisHost: str
18966
18729
  :param _RedisPassword: redis密码
18967
- 注意:此字段可能返回 null,表示取不到有效值。
18968
18730
  :type RedisPassword: str
18969
18731
  :param _RedisPort: redis端口
18970
- 注意:此字段可能返回 null,表示取不到有效值。
18971
18732
  :type RedisPort: int
18972
18733
  :param _RedisTimeout: 超时时间 ms
18973
- 注意:此字段可能返回 null,表示取不到有效值。
18974
18734
  :type RedisTimeout: int
18975
18735
  """
18976
18736
  self._RedisHost = None
@@ -18981,7 +18741,6 @@ class ExternalRedis(AbstractModel):
18981
18741
  @property
18982
18742
  def RedisHost(self):
18983
18743
  """redis ip
18984
- 注意:此字段可能返回 null,表示取不到有效值。
18985
18744
  :rtype: str
18986
18745
  """
18987
18746
  return self._RedisHost
@@ -18993,7 +18752,6 @@ class ExternalRedis(AbstractModel):
18993
18752
  @property
18994
18753
  def RedisPassword(self):
18995
18754
  """redis密码
18996
- 注意:此字段可能返回 null,表示取不到有效值。
18997
18755
  :rtype: str
18998
18756
  """
18999
18757
  return self._RedisPassword
@@ -19005,7 +18763,6 @@ class ExternalRedis(AbstractModel):
19005
18763
  @property
19006
18764
  def RedisPort(self):
19007
18765
  """redis端口
19008
- 注意:此字段可能返回 null,表示取不到有效值。
19009
18766
  :rtype: int
19010
18767
  """
19011
18768
  return self._RedisPort
@@ -19017,7 +18774,6 @@ class ExternalRedis(AbstractModel):
19017
18774
  @property
19018
18775
  def RedisTimeout(self):
19019
18776
  """超时时间 ms
19020
- 注意:此字段可能返回 null,表示取不到有效值。
19021
18777
  :rtype: int
19022
18778
  """
19023
18779
  return self._RedisTimeout
@@ -19101,10 +18857,8 @@ class GatewayInstanceSchemeAndPorts(AbstractModel):
19101
18857
  def __init__(self):
19102
18858
  r"""
19103
18859
  :param _Scheme: 端口协议,可选HTTP、HTTPS、TCP和UDP
19104
- 注意:此字段可能返回 null,表示取不到有效值。
19105
18860
  :type Scheme: str
19106
18861
  :param _PortList: 端口列表
19107
- 注意:此字段可能返回 null,表示取不到有效值。
19108
18862
  :type PortList: list of int non-negative
19109
18863
  """
19110
18864
  self._Scheme = None
@@ -19113,7 +18867,6 @@ class GatewayInstanceSchemeAndPorts(AbstractModel):
19113
18867
  @property
19114
18868
  def Scheme(self):
19115
18869
  """端口协议,可选HTTP、HTTPS、TCP和UDP
19116
- 注意:此字段可能返回 null,表示取不到有效值。
19117
18870
  :rtype: str
19118
18871
  """
19119
18872
  return self._Scheme
@@ -19125,7 +18878,6 @@ class GatewayInstanceSchemeAndPorts(AbstractModel):
19125
18878
  @property
19126
18879
  def PortList(self):
19127
18880
  """端口列表
19128
- 注意:此字段可能返回 null,表示取不到有效值。
19129
18881
  :rtype: list of int non-negative
19130
18882
  """
19131
18883
  return self._PortList
@@ -21338,16 +21090,12 @@ class InstancePort(AbstractModel):
21338
21090
  def __init__(self):
21339
21091
  r"""
21340
21092
  :param _HttpPort: 监听的 http 端口范围。
21341
- 注意:此字段可能返回 null,表示取不到有效值。
21342
21093
  :type HttpPort: str
21343
21094
  :param _HttpsPort: 监听的 https 端口范围。
21344
- 注意:此字段可能返回 null,表示取不到有效值。
21345
21095
  :type HttpsPort: str
21346
21096
  :param _TcpPort: 监听的 tcp 端口范围。
21347
- 注意:此字段可能返回 null,表示取不到有效值。
21348
21097
  :type TcpPort: str
21349
21098
  :param _UdpPort: 监听的 udp 端口范围。
21350
- 注意:此字段可能返回 null,表示取不到有效值。
21351
21099
  :type UdpPort: str
21352
21100
  """
21353
21101
  self._HttpPort = None
@@ -21358,7 +21106,6 @@ class InstancePort(AbstractModel):
21358
21106
  @property
21359
21107
  def HttpPort(self):
21360
21108
  """监听的 http 端口范围。
21361
- 注意:此字段可能返回 null,表示取不到有效值。
21362
21109
  :rtype: str
21363
21110
  """
21364
21111
  return self._HttpPort
@@ -21370,7 +21117,6 @@ class InstancePort(AbstractModel):
21370
21117
  @property
21371
21118
  def HttpsPort(self):
21372
21119
  """监听的 https 端口范围。
21373
- 注意:此字段可能返回 null,表示取不到有效值。
21374
21120
  :rtype: str
21375
21121
  """
21376
21122
  return self._HttpsPort
@@ -21382,7 +21128,6 @@ class InstancePort(AbstractModel):
21382
21128
  @property
21383
21129
  def TcpPort(self):
21384
21130
  """监听的 tcp 端口范围。
21385
- 注意:此字段可能返回 null,表示取不到有效值。
21386
21131
  :rtype: str
21387
21132
  """
21388
21133
  return self._TcpPort
@@ -21394,7 +21139,6 @@ class InstancePort(AbstractModel):
21394
21139
  @property
21395
21140
  def UdpPort(self):
21396
21141
  """监听的 udp 端口范围。
21397
- 注意:此字段可能返回 null,表示取不到有效值。
21398
21142
  :rtype: str
21399
21143
  """
21400
21144
  return self._UdpPort
@@ -21721,10 +21465,8 @@ class KeyValue(AbstractModel):
21721
21465
  def __init__(self):
21722
21466
  r"""
21723
21467
  :param _Key: 条件的Key
21724
- 注意:此字段可能返回 null,表示取不到有效值。
21725
21468
  :type Key: str
21726
21469
  :param _Value: 条件的Value
21727
- 注意:此字段可能返回 null,表示取不到有效值。
21728
21470
  :type Value: str
21729
21471
  """
21730
21472
  self._Key = None
@@ -21733,7 +21475,6 @@ class KeyValue(AbstractModel):
21733
21475
  @property
21734
21476
  def Key(self):
21735
21477
  """条件的Key
21736
- 注意:此字段可能返回 null,表示取不到有效值。
21737
21478
  :rtype: str
21738
21479
  """
21739
21480
  return self._Key
@@ -21745,7 +21486,6 @@ class KeyValue(AbstractModel):
21745
21486
  @property
21746
21487
  def Value(self):
21747
21488
  """条件的Value
21748
- 注意:此字段可能返回 null,表示取不到有效值。
21749
21489
  :rtype: str
21750
21490
  """
21751
21491
  return self._Value
@@ -21776,16 +21516,12 @@ class KongActiveHealthCheck(AbstractModel):
21776
21516
  def __init__(self):
21777
21517
  r"""
21778
21518
  :param _HealthyInterval: 主动健康检查健康探测间隔,单位:秒,0表示不开启
21779
- 注意:此字段可能返回 null,表示取不到有效值。
21780
21519
  :type HealthyInterval: int
21781
21520
  :param _UnHealthyInterval: 主动健康检查异常探测间隔,单位:秒,0表示不开启
21782
- 注意:此字段可能返回 null,表示取不到有效值。
21783
21521
  :type UnHealthyInterval: int
21784
21522
  :param _HttpPath: 在 GET HTTP 请求中使用的路径,以作为主动运行状况检查的探测器运行。默认: ”/”。
21785
- 注意:此字段可能返回 null,表示取不到有效值。
21786
21523
  :type HttpPath: str
21787
21524
  :param _Timeout: GET HTTP 请求的超时时间,单位:秒。默认 60。
21788
- 注意:此字段可能返回 null,表示取不到有效值。
21789
21525
  :type Timeout: float
21790
21526
  """
21791
21527
  self._HealthyInterval = None
@@ -21796,7 +21532,6 @@ class KongActiveHealthCheck(AbstractModel):
21796
21532
  @property
21797
21533
  def HealthyInterval(self):
21798
21534
  """主动健康检查健康探测间隔,单位:秒,0表示不开启
21799
- 注意:此字段可能返回 null,表示取不到有效值。
21800
21535
  :rtype: int
21801
21536
  """
21802
21537
  return self._HealthyInterval
@@ -21808,7 +21543,6 @@ class KongActiveHealthCheck(AbstractModel):
21808
21543
  @property
21809
21544
  def UnHealthyInterval(self):
21810
21545
  """主动健康检查异常探测间隔,单位:秒,0表示不开启
21811
- 注意:此字段可能返回 null,表示取不到有效值。
21812
21546
  :rtype: int
21813
21547
  """
21814
21548
  return self._UnHealthyInterval
@@ -21820,7 +21554,6 @@ class KongActiveHealthCheck(AbstractModel):
21820
21554
  @property
21821
21555
  def HttpPath(self):
21822
21556
  """在 GET HTTP 请求中使用的路径,以作为主动运行状况检查的探测器运行。默认: ”/”。
21823
- 注意:此字段可能返回 null,表示取不到有效值。
21824
21557
  :rtype: str
21825
21558
  """
21826
21559
  return self._HttpPath
@@ -21832,7 +21565,6 @@ class KongActiveHealthCheck(AbstractModel):
21832
21565
  @property
21833
21566
  def Timeout(self):
21834
21567
  """GET HTTP 请求的超时时间,单位:秒。默认 60。
21835
- 注意:此字段可能返回 null,表示取不到有效值。
21836
21568
  :rtype: float
21837
21569
  """
21838
21570
  return self._Timeout
@@ -21865,7 +21597,6 @@ class KongCertificate(AbstractModel):
21865
21597
  def __init__(self):
21866
21598
  r"""
21867
21599
  :param _Cert: 无
21868
- 注意:此字段可能返回 null,表示取不到有效值。
21869
21600
  :type Cert: :class:`tencentcloud.tse.v20201207.models.KongCertificatesPreview`
21870
21601
  """
21871
21602
  self._Cert = None
@@ -21873,7 +21604,6 @@ class KongCertificate(AbstractModel):
21873
21604
  @property
21874
21605
  def Cert(self):
21875
21606
  """无
21876
- 注意:此字段可能返回 null,表示取不到有效值。
21877
21607
  :rtype: :class:`tencentcloud.tse.v20201207.models.KongCertificatesPreview`
21878
21608
  """
21879
21609
  return self._Cert
@@ -21905,7 +21635,6 @@ class KongCertificatesList(AbstractModel):
21905
21635
  def __init__(self):
21906
21636
  r"""
21907
21637
  :param _Total: 证书列表总数
21908
- 注意:此字段可能返回 null,表示取不到有效值。
21909
21638
  :type Total: int
21910
21639
  :param _CertificatesList: 无
21911
21640
  注意:此字段可能返回 null,表示取不到有效值。
@@ -21921,7 +21650,6 @@ class KongCertificatesList(AbstractModel):
21921
21650
  @property
21922
21651
  def Total(self):
21923
21652
  """证书列表总数
21924
- 注意:此字段可能返回 null,表示取不到有效值。
21925
21653
  :rtype: int
21926
21654
  """
21927
21655
  return self._Total
@@ -21986,39 +21714,28 @@ class KongCertificatesPreview(AbstractModel):
21986
21714
  def __init__(self):
21987
21715
  r"""
21988
21716
  :param _Name: 证书名称
21989
- 注意:此字段可能返回 null,表示取不到有效值。
21990
21717
  :type Name: str
21991
21718
  :param _Id: Id
21992
- 注意:此字段可能返回 null,表示取不到有效值。
21993
21719
  :type Id: str
21994
21720
  :param _BindDomains: 绑定的域名
21995
- 注意:此字段可能返回 null,表示取不到有效值。
21996
21721
  :type BindDomains: list of str
21997
21722
  :param _Status: 证书状态:expired(已过期)
21998
21723
  active(生效中)
21999
- 注意:此字段可能返回 null,表示取不到有效值。
22000
21724
  :type Status: str
22001
21725
  :param _Crt: 证书pem格式
22002
- 注意:此字段可能返回 null,表示取不到有效值。
22003
21726
  :type Crt: str
22004
21727
  :param _Key: 证书私钥
22005
- 注意:此字段可能返回 null,表示取不到有效值。
22006
21728
  :type Key: str
22007
21729
  :param _ExpireTime: 证书过期时间
22008
- 注意:此字段可能返回 null,表示取不到有效值。
22009
21730
  :type ExpireTime: str
22010
21731
  :param _CreateTime: 证书上传时间
22011
- 注意:此字段可能返回 null,表示取不到有效值。
22012
21732
  :type CreateTime: str
22013
21733
  :param _IssueTime: 证书签发时间
22014
- 注意:此字段可能返回 null,表示取不到有效值。
22015
21734
  :type IssueTime: str
22016
21735
  :param _CertSource: 证书来源:native(kong自定义证书)
22017
21736
  ssl(ssl平台证书)
22018
- 注意:此字段可能返回 null,表示取不到有效值。
22019
21737
  :type CertSource: str
22020
21738
  :param _CertId: ssl平台证书Id
22021
- 注意:此字段可能返回 null,表示取不到有效值。
22022
21739
  :type CertId: str
22023
21740
  """
22024
21741
  self._Name = None
@@ -22036,7 +21753,6 @@ class KongCertificatesPreview(AbstractModel):
22036
21753
  @property
22037
21754
  def Name(self):
22038
21755
  """证书名称
22039
- 注意:此字段可能返回 null,表示取不到有效值。
22040
21756
  :rtype: str
22041
21757
  """
22042
21758
  return self._Name
@@ -22048,7 +21764,6 @@ class KongCertificatesPreview(AbstractModel):
22048
21764
  @property
22049
21765
  def Id(self):
22050
21766
  """Id
22051
- 注意:此字段可能返回 null,表示取不到有效值。
22052
21767
  :rtype: str
22053
21768
  """
22054
21769
  return self._Id
@@ -22060,7 +21775,6 @@ class KongCertificatesPreview(AbstractModel):
22060
21775
  @property
22061
21776
  def BindDomains(self):
22062
21777
  """绑定的域名
22063
- 注意:此字段可能返回 null,表示取不到有效值。
22064
21778
  :rtype: list of str
22065
21779
  """
22066
21780
  return self._BindDomains
@@ -22073,7 +21787,6 @@ class KongCertificatesPreview(AbstractModel):
22073
21787
  def Status(self):
22074
21788
  """证书状态:expired(已过期)
22075
21789
  active(生效中)
22076
- 注意:此字段可能返回 null,表示取不到有效值。
22077
21790
  :rtype: str
22078
21791
  """
22079
21792
  return self._Status
@@ -22085,7 +21798,6 @@ class KongCertificatesPreview(AbstractModel):
22085
21798
  @property
22086
21799
  def Crt(self):
22087
21800
  """证书pem格式
22088
- 注意:此字段可能返回 null,表示取不到有效值。
22089
21801
  :rtype: str
22090
21802
  """
22091
21803
  return self._Crt
@@ -22097,7 +21809,6 @@ class KongCertificatesPreview(AbstractModel):
22097
21809
  @property
22098
21810
  def Key(self):
22099
21811
  """证书私钥
22100
- 注意:此字段可能返回 null,表示取不到有效值。
22101
21812
  :rtype: str
22102
21813
  """
22103
21814
  return self._Key
@@ -22109,7 +21820,6 @@ class KongCertificatesPreview(AbstractModel):
22109
21820
  @property
22110
21821
  def ExpireTime(self):
22111
21822
  """证书过期时间
22112
- 注意:此字段可能返回 null,表示取不到有效值。
22113
21823
  :rtype: str
22114
21824
  """
22115
21825
  return self._ExpireTime
@@ -22121,7 +21831,6 @@ class KongCertificatesPreview(AbstractModel):
22121
21831
  @property
22122
21832
  def CreateTime(self):
22123
21833
  """证书上传时间
22124
- 注意:此字段可能返回 null,表示取不到有效值。
22125
21834
  :rtype: str
22126
21835
  """
22127
21836
  return self._CreateTime
@@ -22133,7 +21842,6 @@ class KongCertificatesPreview(AbstractModel):
22133
21842
  @property
22134
21843
  def IssueTime(self):
22135
21844
  """证书签发时间
22136
- 注意:此字段可能返回 null,表示取不到有效值。
22137
21845
  :rtype: str
22138
21846
  """
22139
21847
  return self._IssueTime
@@ -22146,7 +21854,6 @@ class KongCertificatesPreview(AbstractModel):
22146
21854
  def CertSource(self):
22147
21855
  """证书来源:native(kong自定义证书)
22148
21856
  ssl(ssl平台证书)
22149
- 注意:此字段可能返回 null,表示取不到有效值。
22150
21857
  :rtype: str
22151
21858
  """
22152
21859
  return self._CertSource
@@ -22158,7 +21865,6 @@ class KongCertificatesPreview(AbstractModel):
22158
21865
  @property
22159
21866
  def CertId(self):
22160
21867
  """ssl平台证书Id
22161
- 注意:此字段可能返回 null,表示取不到有效值。
22162
21868
  :rtype: str
22163
21869
  """
22164
21870
  return self._CertId
@@ -22198,7 +21904,6 @@ class KongPassiveHealthCheck(AbstractModel):
22198
21904
  def __init__(self):
22199
21905
  r"""
22200
21906
  :param _Type: 后端target协议类型,被动健康检查支持http和tcp,主动健康检查支持http
22201
- 注意:此字段可能返回 null,表示取不到有效值。
22202
21907
  :type Type: str
22203
21908
  """
22204
21909
  self._Type = None
@@ -22206,7 +21911,6 @@ class KongPassiveHealthCheck(AbstractModel):
22206
21911
  @property
22207
21912
  def Type(self):
22208
21913
  """后端target协议类型,被动健康检查支持http和tcp,主动健康检查支持http
22209
- 注意:此字段可能返回 null,表示取不到有效值。
22210
21914
  :rtype: str
22211
21915
  """
22212
21916
  return self._Type
@@ -22236,10 +21940,8 @@ class KongRoutePreview(AbstractModel):
22236
21940
  def __init__(self):
22237
21941
  r"""
22238
21942
  :param _ID: 服务ID
22239
- 注意:此字段可能返回 null,表示取不到有效值。
22240
21943
  :type ID: str
22241
21944
  :param _Name: 服务名字
22242
- 注意:此字段可能返回 null,表示取不到有效值。
22243
21945
  :type Name: str
22244
21946
  :param _Methods: 无
22245
21947
  注意:此字段可能返回 null,表示取不到有效值。
@@ -22251,34 +21953,25 @@ class KongRoutePreview(AbstractModel):
22251
21953
  注意:此字段可能返回 null,表示取不到有效值。
22252
21954
  :type Hosts: list of str
22253
21955
  :param _Protocols: 无
22254
- 注意:此字段可能返回 null,表示取不到有效值。
22255
21956
  :type Protocols: list of str
22256
21957
  :param _PreserveHost: 无
22257
- 注意:此字段可能返回 null,表示取不到有效值。
22258
21958
  :type PreserveHost: bool
22259
21959
  :param _HttpsRedirectStatusCode: 无
22260
- 注意:此字段可能返回 null,表示取不到有效值。
22261
21960
  :type HttpsRedirectStatusCode: int
22262
21961
  :param _StripPath: 无
22263
- 注意:此字段可能返回 null,表示取不到有效值。
22264
21962
  :type StripPath: bool
22265
21963
  :param _CreatedTime: 无
22266
- 注意:此字段可能返回 null,表示取不到有效值。
22267
21964
  :type CreatedTime: str
22268
21965
  :param _ForceHttps: 是否开启了强制HTTPS
22269
21966
  注意:此字段可能返回 null,表示取不到有效值。
22270
21967
  :type ForceHttps: bool
22271
21968
  :param _ServiceName: 服务名
22272
- 注意:此字段可能返回 null,表示取不到有效值。
22273
21969
  :type ServiceName: str
22274
21970
  :param _ServiceID: 服务ID
22275
- 注意:此字段可能返回 null,表示取不到有效值。
22276
21971
  :type ServiceID: str
22277
21972
  :param _DestinationPorts: 目的端口
22278
- 注意:此字段可能返回 null,表示取不到有效值。
22279
21973
  :type DestinationPorts: list of int non-negative
22280
21974
  :param _Headers: 路由的Headers
22281
- 注意:此字段可能返回 null,表示取不到有效值。
22282
21975
  :type Headers: list of KVMapping
22283
21976
  :param _RequestBuffering: 是否缓存请求body,默认true
22284
21977
  :type RequestBuffering: bool
@@ -22309,7 +22002,6 @@ class KongRoutePreview(AbstractModel):
22309
22002
  @property
22310
22003
  def ID(self):
22311
22004
  """服务ID
22312
- 注意:此字段可能返回 null,表示取不到有效值。
22313
22005
  :rtype: str
22314
22006
  """
22315
22007
  return self._ID
@@ -22321,7 +22013,6 @@ class KongRoutePreview(AbstractModel):
22321
22013
  @property
22322
22014
  def Name(self):
22323
22015
  """服务名字
22324
- 注意:此字段可能返回 null,表示取不到有效值。
22325
22016
  :rtype: str
22326
22017
  """
22327
22018
  return self._Name
@@ -22369,7 +22060,6 @@ class KongRoutePreview(AbstractModel):
22369
22060
  @property
22370
22061
  def Protocols(self):
22371
22062
  """无
22372
- 注意:此字段可能返回 null,表示取不到有效值。
22373
22063
  :rtype: list of str
22374
22064
  """
22375
22065
  return self._Protocols
@@ -22381,7 +22071,6 @@ class KongRoutePreview(AbstractModel):
22381
22071
  @property
22382
22072
  def PreserveHost(self):
22383
22073
  """无
22384
- 注意:此字段可能返回 null,表示取不到有效值。
22385
22074
  :rtype: bool
22386
22075
  """
22387
22076
  return self._PreserveHost
@@ -22393,7 +22082,6 @@ class KongRoutePreview(AbstractModel):
22393
22082
  @property
22394
22083
  def HttpsRedirectStatusCode(self):
22395
22084
  """无
22396
- 注意:此字段可能返回 null,表示取不到有效值。
22397
22085
  :rtype: int
22398
22086
  """
22399
22087
  return self._HttpsRedirectStatusCode
@@ -22405,7 +22093,6 @@ class KongRoutePreview(AbstractModel):
22405
22093
  @property
22406
22094
  def StripPath(self):
22407
22095
  """无
22408
- 注意:此字段可能返回 null,表示取不到有效值。
22409
22096
  :rtype: bool
22410
22097
  """
22411
22098
  return self._StripPath
@@ -22417,7 +22104,6 @@ class KongRoutePreview(AbstractModel):
22417
22104
  @property
22418
22105
  def CreatedTime(self):
22419
22106
  """无
22420
- 注意:此字段可能返回 null,表示取不到有效值。
22421
22107
  :rtype: str
22422
22108
  """
22423
22109
  return self._CreatedTime
@@ -22445,7 +22131,6 @@ class KongRoutePreview(AbstractModel):
22445
22131
  @property
22446
22132
  def ServiceName(self):
22447
22133
  """服务名
22448
- 注意:此字段可能返回 null,表示取不到有效值。
22449
22134
  :rtype: str
22450
22135
  """
22451
22136
  return self._ServiceName
@@ -22457,7 +22142,6 @@ class KongRoutePreview(AbstractModel):
22457
22142
  @property
22458
22143
  def ServiceID(self):
22459
22144
  """服务ID
22460
- 注意:此字段可能返回 null,表示取不到有效值。
22461
22145
  :rtype: str
22462
22146
  """
22463
22147
  return self._ServiceID
@@ -22469,7 +22153,6 @@ class KongRoutePreview(AbstractModel):
22469
22153
  @property
22470
22154
  def DestinationPorts(self):
22471
22155
  """目的端口
22472
- 注意:此字段可能返回 null,表示取不到有效值。
22473
22156
  :rtype: list of int non-negative
22474
22157
  """
22475
22158
  return self._DestinationPorts
@@ -22481,7 +22164,6 @@ class KongRoutePreview(AbstractModel):
22481
22164
  @property
22482
22165
  def Headers(self):
22483
22166
  """路由的Headers
22484
- 注意:此字段可能返回 null,表示取不到有效值。
22485
22167
  :rtype: list of KVMapping
22486
22168
  """
22487
22169
  return self._Headers
@@ -22566,37 +22248,28 @@ class KongServiceDetail(AbstractModel):
22566
22248
  def __init__(self):
22567
22249
  r"""
22568
22250
  :param _ID: 服务ID
22569
- 注意:此字段可能返回 null,表示取不到有效值。
22570
22251
  :type ID: str
22571
22252
  :param _Name: 服务名字
22572
- 注意:此字段可能返回 null,表示取不到有效值。
22573
22253
  :type Name: str
22574
22254
  :param _Protocol: 后端协议
22575
- 注意:此字段可能返回 null,表示取不到有效值。
22576
22255
  :type Protocol: str
22577
22256
  :param _Path: 后端路径
22578
22257
  注意:此字段可能返回 null,表示取不到有效值。
22579
22258
  :type Path: str
22580
22259
  :param _Timeout: 后端延时,单位ms
22581
- 注意:此字段可能返回 null,表示取不到有效值。
22582
22260
  :type Timeout: int
22583
22261
  :param _Retries: 重试次数
22584
- 注意:此字段可能返回 null,表示取不到有效值。
22585
22262
  :type Retries: int
22586
22263
  :param _Tags: 标签
22587
22264
  注意:此字段可能返回 null,表示取不到有效值。
22588
22265
  :type Tags: list of str
22589
22266
  :param _UpstreamInfo: 后端配置
22590
- 注意:此字段可能返回 null,表示取不到有效值。
22591
22267
  :type UpstreamInfo: :class:`tencentcloud.tse.v20201207.models.KongUpstreamInfo`
22592
22268
  :param _UpstreamType: 后端类型
22593
- 注意:此字段可能返回 null,表示取不到有效值。
22594
22269
  :type UpstreamType: str
22595
22270
  :param _Editable: 是否可编辑
22596
- 注意:此字段可能返回 null,表示取不到有效值。
22597
22271
  :type Editable: bool
22598
22272
  :param _CreatedTime: 创建时间
22599
- 注意:此字段可能返回 null,表示取不到有效值。
22600
22273
  :type CreatedTime: str
22601
22274
  """
22602
22275
  self._ID = None
@@ -22614,7 +22287,6 @@ class KongServiceDetail(AbstractModel):
22614
22287
  @property
22615
22288
  def ID(self):
22616
22289
  """服务ID
22617
- 注意:此字段可能返回 null,表示取不到有效值。
22618
22290
  :rtype: str
22619
22291
  """
22620
22292
  return self._ID
@@ -22626,7 +22298,6 @@ class KongServiceDetail(AbstractModel):
22626
22298
  @property
22627
22299
  def Name(self):
22628
22300
  """服务名字
22629
- 注意:此字段可能返回 null,表示取不到有效值。
22630
22301
  :rtype: str
22631
22302
  """
22632
22303
  return self._Name
@@ -22638,7 +22309,6 @@ class KongServiceDetail(AbstractModel):
22638
22309
  @property
22639
22310
  def Protocol(self):
22640
22311
  """后端协议
22641
- 注意:此字段可能返回 null,表示取不到有效值。
22642
22312
  :rtype: str
22643
22313
  """
22644
22314
  return self._Protocol
@@ -22662,7 +22332,6 @@ class KongServiceDetail(AbstractModel):
22662
22332
  @property
22663
22333
  def Timeout(self):
22664
22334
  """后端延时,单位ms
22665
- 注意:此字段可能返回 null,表示取不到有效值。
22666
22335
  :rtype: int
22667
22336
  """
22668
22337
  return self._Timeout
@@ -22674,7 +22343,6 @@ class KongServiceDetail(AbstractModel):
22674
22343
  @property
22675
22344
  def Retries(self):
22676
22345
  """重试次数
22677
- 注意:此字段可能返回 null,表示取不到有效值。
22678
22346
  :rtype: int
22679
22347
  """
22680
22348
  return self._Retries
@@ -22698,7 +22366,6 @@ class KongServiceDetail(AbstractModel):
22698
22366
  @property
22699
22367
  def UpstreamInfo(self):
22700
22368
  """后端配置
22701
- 注意:此字段可能返回 null,表示取不到有效值。
22702
22369
  :rtype: :class:`tencentcloud.tse.v20201207.models.KongUpstreamInfo`
22703
22370
  """
22704
22371
  return self._UpstreamInfo
@@ -22710,7 +22377,6 @@ class KongServiceDetail(AbstractModel):
22710
22377
  @property
22711
22378
  def UpstreamType(self):
22712
22379
  """后端类型
22713
- 注意:此字段可能返回 null,表示取不到有效值。
22714
22380
  :rtype: str
22715
22381
  """
22716
22382
  return self._UpstreamType
@@ -22722,7 +22388,6 @@ class KongServiceDetail(AbstractModel):
22722
22388
  @property
22723
22389
  def Editable(self):
22724
22390
  """是否可编辑
22725
- 注意:此字段可能返回 null,表示取不到有效值。
22726
22391
  :rtype: bool
22727
22392
  """
22728
22393
  return self._Editable
@@ -22734,7 +22399,6 @@ class KongServiceDetail(AbstractModel):
22734
22399
  @property
22735
22400
  def CreatedTime(self):
22736
22401
  """创建时间
22737
- 注意:此字段可能返回 null,表示取不到有效值。
22738
22402
  :rtype: str
22739
22403
  """
22740
22404
  return self._CreatedTime
@@ -22776,25 +22440,18 @@ class KongServicePreview(AbstractModel):
22776
22440
  def __init__(self):
22777
22441
  r"""
22778
22442
  :param _ID: 服务ID
22779
- 注意:此字段可能返回 null,表示取不到有效值。
22780
22443
  :type ID: str
22781
22444
  :param _Name: 服务名字
22782
- 注意:此字段可能返回 null,表示取不到有效值。
22783
22445
  :type Name: str
22784
22446
  :param _Tags: 标签
22785
- 注意:此字段可能返回 null,表示取不到有效值。
22786
22447
  :type Tags: list of str
22787
22448
  :param _UpstreamInfo: 后端配置
22788
- 注意:此字段可能返回 null,表示取不到有效值。
22789
22449
  :type UpstreamInfo: :class:`tencentcloud.tse.v20201207.models.KongUpstreamInfo`
22790
22450
  :param _UpstreamType: 后端类型
22791
- 注意:此字段可能返回 null,表示取不到有效值。
22792
22451
  :type UpstreamType: str
22793
22452
  :param _CreatedTime: 创建时间
22794
- 注意:此字段可能返回 null,表示取不到有效值。
22795
22453
  :type CreatedTime: str
22796
22454
  :param _Editable: 是否可编辑
22797
- 注意:此字段可能返回 null,表示取不到有效值。
22798
22455
  :type Editable: bool
22799
22456
  :param _Path: 请求路径
22800
22457
  注意:此字段可能返回 null,表示取不到有效值。
@@ -22812,7 +22469,6 @@ class KongServicePreview(AbstractModel):
22812
22469
  @property
22813
22470
  def ID(self):
22814
22471
  """服务ID
22815
- 注意:此字段可能返回 null,表示取不到有效值。
22816
22472
  :rtype: str
22817
22473
  """
22818
22474
  return self._ID
@@ -22824,7 +22480,6 @@ class KongServicePreview(AbstractModel):
22824
22480
  @property
22825
22481
  def Name(self):
22826
22482
  """服务名字
22827
- 注意:此字段可能返回 null,表示取不到有效值。
22828
22483
  :rtype: str
22829
22484
  """
22830
22485
  return self._Name
@@ -22836,7 +22491,6 @@ class KongServicePreview(AbstractModel):
22836
22491
  @property
22837
22492
  def Tags(self):
22838
22493
  """标签
22839
- 注意:此字段可能返回 null,表示取不到有效值。
22840
22494
  :rtype: list of str
22841
22495
  """
22842
22496
  return self._Tags
@@ -22848,7 +22502,6 @@ class KongServicePreview(AbstractModel):
22848
22502
  @property
22849
22503
  def UpstreamInfo(self):
22850
22504
  """后端配置
22851
- 注意:此字段可能返回 null,表示取不到有效值。
22852
22505
  :rtype: :class:`tencentcloud.tse.v20201207.models.KongUpstreamInfo`
22853
22506
  """
22854
22507
  return self._UpstreamInfo
@@ -22860,7 +22513,6 @@ class KongServicePreview(AbstractModel):
22860
22513
  @property
22861
22514
  def UpstreamType(self):
22862
22515
  """后端类型
22863
- 注意:此字段可能返回 null,表示取不到有效值。
22864
22516
  :rtype: str
22865
22517
  """
22866
22518
  return self._UpstreamType
@@ -22872,7 +22524,6 @@ class KongServicePreview(AbstractModel):
22872
22524
  @property
22873
22525
  def CreatedTime(self):
22874
22526
  """创建时间
22875
- 注意:此字段可能返回 null,表示取不到有效值。
22876
22527
  :rtype: str
22877
22528
  """
22878
22529
  return self._CreatedTime
@@ -22884,7 +22535,6 @@ class KongServicePreview(AbstractModel):
22884
22535
  @property
22885
22536
  def Editable(self):
22886
22537
  """是否可编辑
22887
- 注意:此字段可能返回 null,表示取不到有效值。
22888
22538
  :rtype: bool
22889
22539
  """
22890
22540
  return self._Editable
@@ -22935,10 +22585,8 @@ class KongServiceRouteList(AbstractModel):
22935
22585
  def __init__(self):
22936
22586
  r"""
22937
22587
  :param _RouteList: 无
22938
- 注意:此字段可能返回 null,表示取不到有效值。
22939
22588
  :type RouteList: list of KongRoutePreview
22940
22589
  :param _TotalCount: 总数
22941
- 注意:此字段可能返回 null,表示取不到有效值。
22942
22590
  :type TotalCount: int
22943
22591
  """
22944
22592
  self._RouteList = None
@@ -22947,7 +22595,6 @@ class KongServiceRouteList(AbstractModel):
22947
22595
  @property
22948
22596
  def RouteList(self):
22949
22597
  """无
22950
- 注意:此字段可能返回 null,表示取不到有效值。
22951
22598
  :rtype: list of KongRoutePreview
22952
22599
  """
22953
22600
  return self._RouteList
@@ -22959,7 +22606,6 @@ class KongServiceRouteList(AbstractModel):
22959
22606
  @property
22960
22607
  def TotalCount(self):
22961
22608
  """总数
22962
- 注意:此字段可能返回 null,表示取不到有效值。
22963
22609
  :rtype: int
22964
22610
  """
22965
22611
  return self._TotalCount
@@ -22995,10 +22641,8 @@ class KongServices(AbstractModel):
22995
22641
  def __init__(self):
22996
22642
  r"""
22997
22643
  :param _ServiceList: kong实例的服务列表
22998
- 注意:此字段可能返回 null,表示取不到有效值。
22999
22644
  :type ServiceList: list of KongServicePreview
23000
22645
  :param _TotalCount: 列表总数
23001
- 注意:此字段可能返回 null,表示取不到有效值。
23002
22646
  :type TotalCount: int
23003
22647
  """
23004
22648
  self._ServiceList = None
@@ -23007,7 +22651,6 @@ class KongServices(AbstractModel):
23007
22651
  @property
23008
22652
  def ServiceList(self):
23009
22653
  """kong实例的服务列表
23010
- 注意:此字段可能返回 null,表示取不到有效值。
23011
22654
  :rtype: list of KongServicePreview
23012
22655
  """
23013
22656
  return self._ServiceList
@@ -23019,7 +22662,6 @@ class KongServices(AbstractModel):
23019
22662
  @property
23020
22663
  def TotalCount(self):
23021
22664
  """列表总数
23022
- 注意:此字段可能返回 null,表示取不到有效值。
23023
22665
  :rtype: int
23024
22666
  """
23025
22667
  return self._TotalCount
@@ -23584,7 +23226,6 @@ class KongUpstreamList(AbstractModel):
23584
23226
  def __init__(self):
23585
23227
  r"""
23586
23228
  :param _UpstreamList: 无
23587
- 注意:此字段可能返回 null,表示取不到有效值。
23588
23229
  :type UpstreamList: list of KongUpstreamPreview
23589
23230
  """
23590
23231
  self._UpstreamList = None
@@ -23592,7 +23233,6 @@ class KongUpstreamList(AbstractModel):
23592
23233
  @property
23593
23234
  def UpstreamList(self):
23594
23235
  """无
23595
- 注意:此字段可能返回 null,表示取不到有效值。
23596
23236
  :rtype: list of KongUpstreamPreview
23597
23237
  """
23598
23238
  return self._UpstreamList
@@ -23627,13 +23267,10 @@ class KongUpstreamPreview(AbstractModel):
23627
23267
  def __init__(self):
23628
23268
  r"""
23629
23269
  :param _ID: 服务ID
23630
- 注意:此字段可能返回 null,表示取不到有效值。
23631
23270
  :type ID: str
23632
23271
  :param _Name: 服务名字
23633
- 注意:此字段可能返回 null,表示取不到有效值。
23634
23272
  :type Name: str
23635
23273
  :param _Target: 后端配置
23636
- 注意:此字段可能返回 null,表示取不到有效值。
23637
23274
  :type Target: list of KongTarget
23638
23275
  """
23639
23276
  self._ID = None
@@ -23643,7 +23280,6 @@ class KongUpstreamPreview(AbstractModel):
23643
23280
  @property
23644
23281
  def ID(self):
23645
23282
  """服务ID
23646
- 注意:此字段可能返回 null,表示取不到有效值。
23647
23283
  :rtype: str
23648
23284
  """
23649
23285
  return self._ID
@@ -23655,7 +23291,6 @@ class KongUpstreamPreview(AbstractModel):
23655
23291
  @property
23656
23292
  def Name(self):
23657
23293
  """服务名字
23658
- 注意:此字段可能返回 null,表示取不到有效值。
23659
23294
  :rtype: str
23660
23295
  """
23661
23296
  return self._Name
@@ -23667,7 +23302,6 @@ class KongUpstreamPreview(AbstractModel):
23667
23302
  @property
23668
23303
  def Target(self):
23669
23304
  """后端配置
23670
- 注意:此字段可能返回 null,表示取不到有效值。
23671
23305
  :rtype: list of KongTarget
23672
23306
  """
23673
23307
  return self._Target
@@ -23704,16 +23338,12 @@ class LimitRule(AbstractModel):
23704
23338
  def __init__(self):
23705
23339
  r"""
23706
23340
  :param _Filters: 请求匹配条件
23707
- 注意:此字段可能返回 null,表示取不到有效值。
23708
23341
  :type Filters: list of RuleFilter
23709
23342
  :param _LimitBy: 参数限流依据组合
23710
- 注意:此字段可能返回 null,表示取不到有效值。
23711
23343
  :type LimitBy: list of KeyValue
23712
23344
  :param _QpsThresholds: 限流阈值
23713
- 注意:此字段可能返回 null,表示取不到有效值。
23714
23345
  :type QpsThresholds: list of QpsThreshold
23715
23346
  :param _AccurateQpsThresholds: 精确限流阈值
23716
- 注意:此字段可能返回 null,表示取不到有效值。
23717
23347
  :type AccurateQpsThresholds: list of AccurateQpsThreshold
23718
23348
  """
23719
23349
  self._Filters = None
@@ -23724,7 +23354,6 @@ class LimitRule(AbstractModel):
23724
23354
  @property
23725
23355
  def Filters(self):
23726
23356
  """请求匹配条件
23727
- 注意:此字段可能返回 null,表示取不到有效值。
23728
23357
  :rtype: list of RuleFilter
23729
23358
  """
23730
23359
  return self._Filters
@@ -23736,7 +23365,6 @@ class LimitRule(AbstractModel):
23736
23365
  @property
23737
23366
  def LimitBy(self):
23738
23367
  """参数限流依据组合
23739
- 注意:此字段可能返回 null,表示取不到有效值。
23740
23368
  :rtype: list of KeyValue
23741
23369
  """
23742
23370
  return self._LimitBy
@@ -23748,7 +23376,6 @@ class LimitRule(AbstractModel):
23748
23376
  @property
23749
23377
  def QpsThresholds(self):
23750
23378
  """限流阈值
23751
- 注意:此字段可能返回 null,表示取不到有效值。
23752
23379
  :rtype: list of QpsThreshold
23753
23380
  """
23754
23381
  return self._QpsThresholds
@@ -23760,7 +23387,6 @@ class LimitRule(AbstractModel):
23760
23387
  @property
23761
23388
  def AccurateQpsThresholds(self):
23762
23389
  """精确限流阈值
23763
- 注意:此字段可能返回 null,表示取不到有效值。
23764
23390
  :rtype: list of AccurateQpsThreshold
23765
23391
  """
23766
23392
  return self._AccurateQpsThresholds
@@ -27108,25 +26734,18 @@ class NativeGatewayServerGroup(AbstractModel):
27108
26734
  1:是。
27109
26735
  :type IsFirstGroup: int
27110
26736
  :param _BindingStrategy: 关联策略信息
27111
- 注意:此字段可能返回 null,表示取不到有效值。
27112
26737
  :type BindingStrategy: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayStrategy`
27113
26738
  :param _GatewayId: 网关实例 id
27114
- 注意:此字段可能返回 null,表示取不到有效值。
27115
26739
  :type GatewayId: str
27116
26740
  :param _InternetMaxBandwidthOut: 带宽
27117
- 注意:此字段可能返回 null,表示取不到有效值。
27118
26741
  :type InternetMaxBandwidthOut: int
27119
26742
  :param _ModifyTime: 修改时间
27120
- 注意:此字段可能返回 null,表示取不到有效值。
27121
26743
  :type ModifyTime: str
27122
26744
  :param _SubnetIds: 子网id
27123
- 注意:此字段可能返回 null,表示取不到有效值。
27124
26745
  :type SubnetIds: str
27125
26746
  :param _DefaultWeight: 分组默认权重
27126
- 注意:此字段可能返回 null,表示取不到有效值。
27127
26747
  :type DefaultWeight: int
27128
26748
  :param _ElasticNumber: 弹性节点
27129
- 注意:此字段可能返回 null,表示取不到有效值。
27130
26749
  :type ElasticNumber: int
27131
26750
  """
27132
26751
  self._GroupId = None
@@ -27226,7 +26845,6 @@ class NativeGatewayServerGroup(AbstractModel):
27226
26845
  @property
27227
26846
  def BindingStrategy(self):
27228
26847
  """关联策略信息
27229
- 注意:此字段可能返回 null,表示取不到有效值。
27230
26848
  :rtype: :class:`tencentcloud.tse.v20201207.models.CloudNativeAPIGatewayStrategy`
27231
26849
  """
27232
26850
  return self._BindingStrategy
@@ -27238,7 +26856,6 @@ class NativeGatewayServerGroup(AbstractModel):
27238
26856
  @property
27239
26857
  def GatewayId(self):
27240
26858
  """网关实例 id
27241
- 注意:此字段可能返回 null,表示取不到有效值。
27242
26859
  :rtype: str
27243
26860
  """
27244
26861
  return self._GatewayId
@@ -27250,7 +26867,6 @@ class NativeGatewayServerGroup(AbstractModel):
27250
26867
  @property
27251
26868
  def InternetMaxBandwidthOut(self):
27252
26869
  """带宽
27253
- 注意:此字段可能返回 null,表示取不到有效值。
27254
26870
  :rtype: int
27255
26871
  """
27256
26872
  return self._InternetMaxBandwidthOut
@@ -27262,7 +26878,6 @@ class NativeGatewayServerGroup(AbstractModel):
27262
26878
  @property
27263
26879
  def ModifyTime(self):
27264
26880
  """修改时间
27265
- 注意:此字段可能返回 null,表示取不到有效值。
27266
26881
  :rtype: str
27267
26882
  """
27268
26883
  return self._ModifyTime
@@ -27274,7 +26889,6 @@ class NativeGatewayServerGroup(AbstractModel):
27274
26889
  @property
27275
26890
  def SubnetIds(self):
27276
26891
  """子网id
27277
- 注意:此字段可能返回 null,表示取不到有效值。
27278
26892
  :rtype: str
27279
26893
  """
27280
26894
  return self._SubnetIds
@@ -27286,7 +26900,6 @@ class NativeGatewayServerGroup(AbstractModel):
27286
26900
  @property
27287
26901
  def DefaultWeight(self):
27288
26902
  """分组默认权重
27289
- 注意:此字段可能返回 null,表示取不到有效值。
27290
26903
  :rtype: int
27291
26904
  """
27292
26905
  return self._DefaultWeight
@@ -27298,7 +26911,6 @@ class NativeGatewayServerGroup(AbstractModel):
27298
26911
  @property
27299
26912
  def ElasticNumber(self):
27300
26913
  """弹性节点
27301
- 注意:此字段可能返回 null,表示取不到有效值。
27302
26914
  :rtype: int
27303
26915
  """
27304
26916
  return self._ElasticNumber
@@ -27814,22 +27426,16 @@ class PublicAddressConfig(AbstractModel):
27814
27426
  def __init__(self):
27815
27427
  r"""
27816
27428
  :param _Vip: 公网 ip
27817
- 注意:此字段可能返回 null,表示取不到有效值。
27818
27429
  :type Vip: str
27819
27430
  :param _InternetMaxBandwidthOut: 公网最大带宽
27820
- 注意:此字段可能返回 null,表示取不到有效值。
27821
27431
  :type InternetMaxBandwidthOut: int
27822
27432
  :param _GroupId: 公网所属分组 id
27823
- 注意:此字段可能返回 null,表示取不到有效值。
27824
27433
  :type GroupId: str
27825
27434
  :param _GroupName: 公网所属分组名
27826
- 注意:此字段可能返回 null,表示取不到有效值。
27827
27435
  :type GroupName: str
27828
27436
  :param _NetworkId: 公网负载均衡 id
27829
- 注意:此字段可能返回 null,表示取不到有效值。
27830
27437
  :type NetworkId: str
27831
27438
  :param _Description: 公网负载均衡描述
27832
- 注意:此字段可能返回 null,表示取不到有效值。
27833
27439
  :type Description: str
27834
27440
  """
27835
27441
  self._Vip = None
@@ -27842,7 +27448,6 @@ class PublicAddressConfig(AbstractModel):
27842
27448
  @property
27843
27449
  def Vip(self):
27844
27450
  """公网 ip
27845
- 注意:此字段可能返回 null,表示取不到有效值。
27846
27451
  :rtype: str
27847
27452
  """
27848
27453
  return self._Vip
@@ -27854,7 +27459,6 @@ class PublicAddressConfig(AbstractModel):
27854
27459
  @property
27855
27460
  def InternetMaxBandwidthOut(self):
27856
27461
  """公网最大带宽
27857
- 注意:此字段可能返回 null,表示取不到有效值。
27858
27462
  :rtype: int
27859
27463
  """
27860
27464
  return self._InternetMaxBandwidthOut
@@ -27866,7 +27470,6 @@ class PublicAddressConfig(AbstractModel):
27866
27470
  @property
27867
27471
  def GroupId(self):
27868
27472
  """公网所属分组 id
27869
- 注意:此字段可能返回 null,表示取不到有效值。
27870
27473
  :rtype: str
27871
27474
  """
27872
27475
  return self._GroupId
@@ -27878,7 +27481,6 @@ class PublicAddressConfig(AbstractModel):
27878
27481
  @property
27879
27482
  def GroupName(self):
27880
27483
  """公网所属分组名
27881
- 注意:此字段可能返回 null,表示取不到有效值。
27882
27484
  :rtype: str
27883
27485
  """
27884
27486
  return self._GroupName
@@ -27890,7 +27492,6 @@ class PublicAddressConfig(AbstractModel):
27890
27492
  @property
27891
27493
  def NetworkId(self):
27892
27494
  """公网负载均衡 id
27893
- 注意:此字段可能返回 null,表示取不到有效值。
27894
27495
  :rtype: str
27895
27496
  """
27896
27497
  return self._NetworkId
@@ -27902,7 +27503,6 @@ class PublicAddressConfig(AbstractModel):
27902
27503
  @property
27903
27504
  def Description(self):
27904
27505
  """公网负载均衡描述
27905
- 注意:此字段可能返回 null,表示取不到有效值。
27906
27506
  :rtype: str
27907
27507
  """
27908
27508
  return self._Description
@@ -28114,13 +27714,10 @@ class RateLimitResponse(AbstractModel):
28114
27714
  def __init__(self):
28115
27715
  r"""
28116
27716
  :param _Body: 自定义响应体
28117
- 注意:此字段可能返回 null,表示取不到有效值。
28118
27717
  :type Body: str
28119
27718
  :param _Headers: Headers
28120
- 注意:此字段可能返回 null,表示取不到有效值。
28121
27719
  :type Headers: list of KVMapping
28122
27720
  :param _HttpStatus: http状态码
28123
- 注意:此字段可能返回 null,表示取不到有效值。
28124
27721
  :type HttpStatus: int
28125
27722
  """
28126
27723
  self._Body = None
@@ -28130,7 +27727,6 @@ class RateLimitResponse(AbstractModel):
28130
27727
  @property
28131
27728
  def Body(self):
28132
27729
  """自定义响应体
28133
- 注意:此字段可能返回 null,表示取不到有效值。
28134
27730
  :rtype: str
28135
27731
  """
28136
27732
  return self._Body
@@ -28142,7 +27738,6 @@ class RateLimitResponse(AbstractModel):
28142
27738
  @property
28143
27739
  def Headers(self):
28144
27740
  """Headers
28145
- 注意:此字段可能返回 null,表示取不到有效值。
28146
27741
  :rtype: list of KVMapping
28147
27742
  """
28148
27743
  return self._Headers
@@ -28154,7 +27749,6 @@ class RateLimitResponse(AbstractModel):
28154
27749
  @property
28155
27750
  def HttpStatus(self):
28156
27751
  """http状态码
28157
- 注意:此字段可能返回 null,表示取不到有效值。
28158
27752
  :rtype: int
28159
27753
  """
28160
27754
  return self._HttpStatus
@@ -28510,28 +28104,20 @@ class RouteWafStatus(AbstractModel):
28510
28104
  def __init__(self):
28511
28105
  r"""
28512
28106
  :param _Name: 路由的名字
28513
- 注意:此字段可能返回 null,表示取不到有效值。
28514
28107
  :type Name: str
28515
28108
  :param _Id: 路由的 ID
28516
- 注意:此字段可能返回 null,表示取不到有效值。
28517
28109
  :type Id: str
28518
28110
  :param _Status: 路由是否开启 WAF 防护
28519
- 注意:此字段可能返回 null,表示取不到有效值。
28520
28111
  :type Status: str
28521
28112
  :param _Methods: 方法
28522
- 注意:此字段可能返回 null,表示取不到有效值。
28523
28113
  :type Methods: list of str
28524
28114
  :param _Paths: 路径
28525
- 注意:此字段可能返回 null,表示取不到有效值。
28526
28115
  :type Paths: list of str
28527
28116
  :param _Hosts: 域名
28528
- 注意:此字段可能返回 null,表示取不到有效值。
28529
28117
  :type Hosts: list of str
28530
28118
  :param _ServiceName: 路由对应服务的名字
28531
- 注意:此字段可能返回 null,表示取不到有效值。
28532
28119
  :type ServiceName: str
28533
28120
  :param _ServiceId: 路由对应服务的ID
28534
- 注意:此字段可能返回 null,表示取不到有效值。
28535
28121
  :type ServiceId: str
28536
28122
  """
28537
28123
  self._Name = None
@@ -28546,7 +28132,6 @@ class RouteWafStatus(AbstractModel):
28546
28132
  @property
28547
28133
  def Name(self):
28548
28134
  """路由的名字
28549
- 注意:此字段可能返回 null,表示取不到有效值。
28550
28135
  :rtype: str
28551
28136
  """
28552
28137
  return self._Name
@@ -28558,7 +28143,6 @@ class RouteWafStatus(AbstractModel):
28558
28143
  @property
28559
28144
  def Id(self):
28560
28145
  """路由的 ID
28561
- 注意:此字段可能返回 null,表示取不到有效值。
28562
28146
  :rtype: str
28563
28147
  """
28564
28148
  return self._Id
@@ -28570,7 +28154,6 @@ class RouteWafStatus(AbstractModel):
28570
28154
  @property
28571
28155
  def Status(self):
28572
28156
  """ 路由是否开启 WAF 防护
28573
- 注意:此字段可能返回 null,表示取不到有效值。
28574
28157
  :rtype: str
28575
28158
  """
28576
28159
  return self._Status
@@ -28582,7 +28165,6 @@ class RouteWafStatus(AbstractModel):
28582
28165
  @property
28583
28166
  def Methods(self):
28584
28167
  """方法
28585
- 注意:此字段可能返回 null,表示取不到有效值。
28586
28168
  :rtype: list of str
28587
28169
  """
28588
28170
  return self._Methods
@@ -28594,7 +28176,6 @@ class RouteWafStatus(AbstractModel):
28594
28176
  @property
28595
28177
  def Paths(self):
28596
28178
  """路径
28597
- 注意:此字段可能返回 null,表示取不到有效值。
28598
28179
  :rtype: list of str
28599
28180
  """
28600
28181
  return self._Paths
@@ -28606,7 +28187,6 @@ class RouteWafStatus(AbstractModel):
28606
28187
  @property
28607
28188
  def Hosts(self):
28608
28189
  """域名
28609
- 注意:此字段可能返回 null,表示取不到有效值。
28610
28190
  :rtype: list of str
28611
28191
  """
28612
28192
  return self._Hosts
@@ -28618,7 +28198,6 @@ class RouteWafStatus(AbstractModel):
28618
28198
  @property
28619
28199
  def ServiceName(self):
28620
28200
  """路由对应服务的名字
28621
- 注意:此字段可能返回 null,表示取不到有效值。
28622
28201
  :rtype: str
28623
28202
  """
28624
28203
  return self._ServiceName
@@ -28630,7 +28209,6 @@ class RouteWafStatus(AbstractModel):
28630
28209
  @property
28631
28210
  def ServiceId(self):
28632
28211
  """路由对应服务的ID
28633
- 注意:此字段可能返回 null,表示取不到有效值。
28634
28212
  :rtype: str
28635
28213
  """
28636
28214
  return self._ServiceId
@@ -28667,16 +28245,12 @@ class RuleFilter(AbstractModel):
28667
28245
  def __init__(self):
28668
28246
  r"""
28669
28247
  :param _Key: 限流条件的Key
28670
- 注意:此字段可能返回 null,表示取不到有效值。
28671
28248
  :type Key: str
28672
28249
  :param _Values: 限流条件的Values
28673
- 注意:此字段可能返回 null,表示取不到有效值。
28674
28250
  :type Values: list of str
28675
28251
  :param _Operator: 操作符
28676
- 注意:此字段可能返回 null,表示取不到有效值。
28677
28252
  :type Operator: str
28678
28253
  :param _Name: header或query对应的name
28679
- 注意:此字段可能返回 null,表示取不到有效值。
28680
28254
  :type Name: str
28681
28255
  """
28682
28256
  self._Key = None
@@ -28687,7 +28261,6 @@ class RuleFilter(AbstractModel):
28687
28261
  @property
28688
28262
  def Key(self):
28689
28263
  """限流条件的Key
28690
- 注意:此字段可能返回 null,表示取不到有效值。
28691
28264
  :rtype: str
28692
28265
  """
28693
28266
  return self._Key
@@ -28699,7 +28272,6 @@ class RuleFilter(AbstractModel):
28699
28272
  @property
28700
28273
  def Values(self):
28701
28274
  """限流条件的Values
28702
- 注意:此字段可能返回 null,表示取不到有效值。
28703
28275
  :rtype: list of str
28704
28276
  """
28705
28277
  return self._Values
@@ -28711,7 +28283,6 @@ class RuleFilter(AbstractModel):
28711
28283
  @property
28712
28284
  def Operator(self):
28713
28285
  """操作符
28714
- 注意:此字段可能返回 null,表示取不到有效值。
28715
28286
  :rtype: str
28716
28287
  """
28717
28288
  return self._Operator
@@ -28723,7 +28294,6 @@ class RuleFilter(AbstractModel):
28723
28294
  @property
28724
28295
  def Name(self):
28725
28296
  """header或query对应的name
28726
- 注意:此字段可能返回 null,表示取不到有效值。
28727
28297
  :rtype: str
28728
28298
  """
28729
28299
  return self._Name
@@ -29530,16 +29100,12 @@ class ServiceWafStatus(AbstractModel):
29530
29100
  def __init__(self):
29531
29101
  r"""
29532
29102
  :param _Name: 服务的名字
29533
- 注意:此字段可能返回 null,表示取不到有效值。
29534
29103
  :type Name: str
29535
29104
  :param _Id: 服务的 ID
29536
- 注意:此字段可能返回 null,表示取不到有效值。
29537
29105
  :type Id: str
29538
29106
  :param _Type: 服务的类型
29539
- 注意:此字段可能返回 null,表示取不到有效值。
29540
29107
  :type Type: str
29541
29108
  :param _Status: 服务是否开启 WAF 防护
29542
- 注意:此字段可能返回 null,表示取不到有效值。
29543
29109
  :type Status: str
29544
29110
  """
29545
29111
  self._Name = None
@@ -29550,7 +29116,6 @@ class ServiceWafStatus(AbstractModel):
29550
29116
  @property
29551
29117
  def Name(self):
29552
29118
  """ 服务的名字
29553
- 注意:此字段可能返回 null,表示取不到有效值。
29554
29119
  :rtype: str
29555
29120
  """
29556
29121
  return self._Name
@@ -29562,7 +29127,6 @@ class ServiceWafStatus(AbstractModel):
29562
29127
  @property
29563
29128
  def Id(self):
29564
29129
  """服务的 ID
29565
- 注意:此字段可能返回 null,表示取不到有效值。
29566
29130
  :rtype: str
29567
29131
  """
29568
29132
  return self._Id
@@ -29574,7 +29138,6 @@ class ServiceWafStatus(AbstractModel):
29574
29138
  @property
29575
29139
  def Type(self):
29576
29140
  """服务的类型
29577
- 注意:此字段可能返回 null,表示取不到有效值。
29578
29141
  :rtype: str
29579
29142
  """
29580
29143
  return self._Type
@@ -29586,7 +29149,6 @@ class ServiceWafStatus(AbstractModel):
29586
29149
  @property
29587
29150
  def Status(self):
29588
29151
  """ 服务是否开启 WAF 防护
29589
- 注意:此字段可能返回 null,表示取不到有效值。
29590
29152
  :rtype: str
29591
29153
  """
29592
29154
  return self._Status
@@ -29621,10 +29183,8 @@ class SourceInfo(AbstractModel):
29621
29183
  :param _Addresses: 微服务引擎接入IP地址信息
29622
29184
  :type Addresses: list of str
29623
29185
  :param _VpcInfo: 微服务引擎VPC信息
29624
- 注意:此字段可能返回 null,表示取不到有效值。
29625
29186
  :type VpcInfo: :class:`tencentcloud.tse.v20201207.models.SourceInstanceVpcInfo`
29626
29187
  :param _Auth: 微服务引擎鉴权信息
29627
- 注意:此字段可能返回 null,表示取不到有效值。
29628
29188
  :type Auth: :class:`tencentcloud.tse.v20201207.models.SourceInstanceAuth`
29629
29189
  """
29630
29190
  self._Addresses = None
@@ -29645,7 +29205,6 @@ class SourceInfo(AbstractModel):
29645
29205
  @property
29646
29206
  def VpcInfo(self):
29647
29207
  """微服务引擎VPC信息
29648
- 注意:此字段可能返回 null,表示取不到有效值。
29649
29208
  :rtype: :class:`tencentcloud.tse.v20201207.models.SourceInstanceVpcInfo`
29650
29209
  """
29651
29210
  return self._VpcInfo
@@ -29657,7 +29216,6 @@ class SourceInfo(AbstractModel):
29657
29216
  @property
29658
29217
  def Auth(self):
29659
29218
  """微服务引擎鉴权信息
29660
- 注意:此字段可能返回 null,表示取不到有效值。
29661
29219
  :rtype: :class:`tencentcloud.tse.v20201207.models.SourceInstanceAuth`
29662
29220
  """
29663
29221
  return self._Auth
@@ -29693,13 +29251,10 @@ class SourceInstanceAuth(AbstractModel):
29693
29251
  def __init__(self):
29694
29252
  r"""
29695
29253
  :param _Username: 用户名
29696
- 注意:此字段可能返回 null,表示取不到有效值。
29697
29254
  :type Username: str
29698
29255
  :param _Password: 账户密码
29699
- 注意:此字段可能返回 null,表示取不到有效值。
29700
29256
  :type Password: str
29701
29257
  :param _AccessToken: 访问凭据 token
29702
- 注意:此字段可能返回 null,表示取不到有效值。
29703
29258
  :type AccessToken: str
29704
29259
  """
29705
29260
  self._Username = None
@@ -29709,7 +29264,6 @@ class SourceInstanceAuth(AbstractModel):
29709
29264
  @property
29710
29265
  def Username(self):
29711
29266
  """用户名
29712
- 注意:此字段可能返回 null,表示取不到有效值。
29713
29267
  :rtype: str
29714
29268
  """
29715
29269
  return self._Username
@@ -29721,7 +29275,6 @@ class SourceInstanceAuth(AbstractModel):
29721
29275
  @property
29722
29276
  def Password(self):
29723
29277
  """账户密码
29724
- 注意:此字段可能返回 null,表示取不到有效值。
29725
29278
  :rtype: str
29726
29279
  """
29727
29280
  return self._Password
@@ -29733,7 +29286,6 @@ class SourceInstanceAuth(AbstractModel):
29733
29286
  @property
29734
29287
  def AccessToken(self):
29735
29288
  """访问凭据 token
29736
- 注意:此字段可能返回 null,表示取不到有效值。
29737
29289
  :rtype: str
29738
29290
  """
29739
29291
  return self._AccessToken
@@ -29765,10 +29317,8 @@ class SourceInstanceVpcInfo(AbstractModel):
29765
29317
  def __init__(self):
29766
29318
  r"""
29767
29319
  :param _VpcID: 微服务引擎VPC信息
29768
- 注意:此字段可能返回 null,表示取不到有效值。
29769
29320
  :type VpcID: str
29770
29321
  :param _SubnetID: 微服务引擎子网信息
29771
- 注意:此字段可能返回 null,表示取不到有效值。
29772
29322
  :type SubnetID: str
29773
29323
  """
29774
29324
  self._VpcID = None
@@ -29777,7 +29327,6 @@ class SourceInstanceVpcInfo(AbstractModel):
29777
29327
  @property
29778
29328
  def VpcID(self):
29779
29329
  """微服务引擎VPC信息
29780
- 注意:此字段可能返回 null,表示取不到有效值。
29781
29330
  :rtype: str
29782
29331
  """
29783
29332
  return self._VpcID
@@ -29789,7 +29338,6 @@ class SourceInstanceVpcInfo(AbstractModel):
29789
29338
  @property
29790
29339
  def SubnetID(self):
29791
29340
  """微服务引擎子网信息
29792
- 注意:此字段可能返回 null,表示取不到有效值。
29793
29341
  :rtype: str
29794
29342
  """
29795
29343
  return self._SubnetID
@@ -30108,7 +29656,6 @@ class UpdateCloudNativeAPIGatewayResult(AbstractModel):
30108
29656
  :param _Status: 云原生网关状态。
30109
29657
  :type Status: str
30110
29658
  :param _TaskId: 任务ID
30111
- 注意:此字段可能返回 null,表示取不到有效值。
30112
29659
  :type TaskId: str
30113
29660
  """
30114
29661
  self._GatewayId = None
@@ -30140,7 +29687,6 @@ class UpdateCloudNativeAPIGatewayResult(AbstractModel):
30140
29687
  @property
30141
29688
  def TaskId(self):
30142
29689
  """任务ID
30143
- 注意:此字段可能返回 null,表示取不到有效值。
30144
29690
  :rtype: str
30145
29691
  """
30146
29692
  return self._TaskId
@@ -30449,7 +29995,6 @@ class UpdateUpstreamHealthCheckConfigResponse(AbstractModel):
30449
29995
  def __init__(self):
30450
29996
  r"""
30451
29997
  :param _Result: 是否成功
30452
- 注意:此字段可能返回 null,表示取不到有效值。
30453
29998
  :type Result: bool
30454
29999
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
30455
30000
  :type RequestId: str
@@ -30460,7 +30005,6 @@ class UpdateUpstreamHealthCheckConfigResponse(AbstractModel):
30460
30005
  @property
30461
30006
  def Result(self):
30462
30007
  """是否成功
30463
- 注意:此字段可能返回 null,表示取不到有效值。
30464
30008
  :rtype: bool
30465
30009
  """
30466
30010
  return self._Result
@@ -30565,7 +30109,6 @@ class UpdateUpstreamTargetsResponse(AbstractModel):
30565
30109
  def __init__(self):
30566
30110
  r"""
30567
30111
  :param _Result: 是否更新成功
30568
- 注意:此字段可能返回 null,表示取不到有效值。
30569
30112
  :type Result: bool
30570
30113
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
30571
30114
  :type RequestId: str
@@ -30576,7 +30119,6 @@ class UpdateUpstreamTargetsResponse(AbstractModel):
30576
30119
  @property
30577
30120
  def Result(self):
30578
30121
  """是否更新成功
30579
- 注意:此字段可能返回 null,表示取不到有效值。
30580
30122
  :rtype: bool
30581
30123
  """
30582
30124
  return self._Result
@@ -30610,37 +30152,27 @@ class UpstreamHealthCheckConfig(AbstractModel):
30610
30152
  def __init__(self):
30611
30153
  r"""
30612
30154
  :param _EnableActiveHealthCheck: 开启主动健康检查
30613
- 注意:此字段可能返回 null,表示取不到有效值。
30614
30155
  :type EnableActiveHealthCheck: bool
30615
30156
  :param _ActiveHealthCheck: 主动健康检查配置
30616
- 注意:此字段可能返回 null,表示取不到有效值。
30617
30157
  :type ActiveHealthCheck: :class:`tencentcloud.tse.v20201207.models.KongActiveHealthCheck`
30618
30158
  :param _EnablePassiveHealthCheck: 开启被动健康检查
30619
- 注意:此字段可能返回 null,表示取不到有效值。
30620
30159
  :type EnablePassiveHealthCheck: bool
30621
30160
  :param _PassiveHealthCheck: 被动健康检查配置
30622
- 注意:此字段可能返回 null,表示取不到有效值。
30623
30161
  :type PassiveHealthCheck: :class:`tencentcloud.tse.v20201207.models.KongPassiveHealthCheck`
30624
30162
  :param _Successes: 连续健康阈值,单位:次
30625
- 注意:此字段可能返回 null,表示取不到有效值。
30626
30163
  :type Successes: int
30627
30164
  :param _Failures: 连续异常阈值,单位:次
30628
- 注意:此字段可能返回 null,表示取不到有效值。
30629
30165
  :type Failures: int
30630
30166
  :param _Timeouts: 超时阈值,单位:次
30631
- 注意:此字段可能返回 null,表示取不到有效值。
30632
30167
  :type Timeouts: int
30633
30168
  :param _HealthyHttpStatuses: 健康HTTP状态码
30634
- 注意:此字段可能返回 null,表示取不到有效值。
30635
30169
  :type HealthyHttpStatuses: list of int non-negative
30636
30170
  :param _UnhealthyHttpStatuses: 异常HTTP状态码
30637
- 注意:此字段可能返回 null,表示取不到有效值。
30638
30171
  :type UnhealthyHttpStatuses: list of int non-negative
30639
30172
  :param _IgnoreZeroWeightNodes: 健康检查监控上报的数据屏蔽权重为0的节点
30640
30173
  注意:此字段可能返回 null,表示取不到有效值。
30641
30174
  :type IgnoreZeroWeightNodes: bool
30642
30175
  :param _ZeroWeightHeathCheck: 健康检查支持权重为0节点
30643
- 注意:此字段可能返回 null,表示取不到有效值。
30644
30176
  :type ZeroWeightHeathCheck: bool
30645
30177
  """
30646
30178
  self._EnableActiveHealthCheck = None
@@ -30658,7 +30190,6 @@ class UpstreamHealthCheckConfig(AbstractModel):
30658
30190
  @property
30659
30191
  def EnableActiveHealthCheck(self):
30660
30192
  """开启主动健康检查
30661
- 注意:此字段可能返回 null,表示取不到有效值。
30662
30193
  :rtype: bool
30663
30194
  """
30664
30195
  return self._EnableActiveHealthCheck
@@ -30670,7 +30201,6 @@ class UpstreamHealthCheckConfig(AbstractModel):
30670
30201
  @property
30671
30202
  def ActiveHealthCheck(self):
30672
30203
  """主动健康检查配置
30673
- 注意:此字段可能返回 null,表示取不到有效值。
30674
30204
  :rtype: :class:`tencentcloud.tse.v20201207.models.KongActiveHealthCheck`
30675
30205
  """
30676
30206
  return self._ActiveHealthCheck
@@ -30682,7 +30212,6 @@ class UpstreamHealthCheckConfig(AbstractModel):
30682
30212
  @property
30683
30213
  def EnablePassiveHealthCheck(self):
30684
30214
  """开启被动健康检查
30685
- 注意:此字段可能返回 null,表示取不到有效值。
30686
30215
  :rtype: bool
30687
30216
  """
30688
30217
  return self._EnablePassiveHealthCheck
@@ -30694,7 +30223,6 @@ class UpstreamHealthCheckConfig(AbstractModel):
30694
30223
  @property
30695
30224
  def PassiveHealthCheck(self):
30696
30225
  """被动健康检查配置
30697
- 注意:此字段可能返回 null,表示取不到有效值。
30698
30226
  :rtype: :class:`tencentcloud.tse.v20201207.models.KongPassiveHealthCheck`
30699
30227
  """
30700
30228
  return self._PassiveHealthCheck
@@ -30706,7 +30234,6 @@ class UpstreamHealthCheckConfig(AbstractModel):
30706
30234
  @property
30707
30235
  def Successes(self):
30708
30236
  """连续健康阈值,单位:次
30709
- 注意:此字段可能返回 null,表示取不到有效值。
30710
30237
  :rtype: int
30711
30238
  """
30712
30239
  return self._Successes
@@ -30718,7 +30245,6 @@ class UpstreamHealthCheckConfig(AbstractModel):
30718
30245
  @property
30719
30246
  def Failures(self):
30720
30247
  """连续异常阈值,单位:次
30721
- 注意:此字段可能返回 null,表示取不到有效值。
30722
30248
  :rtype: int
30723
30249
  """
30724
30250
  return self._Failures
@@ -30730,7 +30256,6 @@ class UpstreamHealthCheckConfig(AbstractModel):
30730
30256
  @property
30731
30257
  def Timeouts(self):
30732
30258
  """超时阈值,单位:次
30733
- 注意:此字段可能返回 null,表示取不到有效值。
30734
30259
  :rtype: int
30735
30260
  """
30736
30261
  return self._Timeouts
@@ -30742,7 +30267,6 @@ class UpstreamHealthCheckConfig(AbstractModel):
30742
30267
  @property
30743
30268
  def HealthyHttpStatuses(self):
30744
30269
  """健康HTTP状态码
30745
- 注意:此字段可能返回 null,表示取不到有效值。
30746
30270
  :rtype: list of int non-negative
30747
30271
  """
30748
30272
  return self._HealthyHttpStatuses
@@ -30754,7 +30278,6 @@ class UpstreamHealthCheckConfig(AbstractModel):
30754
30278
  @property
30755
30279
  def UnhealthyHttpStatuses(self):
30756
30280
  """异常HTTP状态码
30757
- 注意:此字段可能返回 null,表示取不到有效值。
30758
30281
  :rtype: list of int non-negative
30759
30282
  """
30760
30283
  return self._UnhealthyHttpStatuses
@@ -30782,7 +30305,6 @@ class UpstreamHealthCheckConfig(AbstractModel):
30782
30305
  @property
30783
30306
  def ZeroWeightHeathCheck(self):
30784
30307
  """健康检查支持权重为0节点
30785
- 注意:此字段可能返回 null,表示取不到有效值。
30786
30308
  :rtype: bool
30787
30309
  """
30788
30310
  return self._ZeroWeightHeathCheck