tencentcloud-sdk-python 3.0.1424__py2.py3-none-any.whl → 3.0.1426__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.

Potentially problematic release.


This version of tencentcloud-sdk-python might be problematic. Click here for more details.

Files changed (41) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/aiart/v20221229/aiart_client.py +0 -27
  3. tencentcloud/aiart/v20221229/models.py +2 -205
  4. tencentcloud/batch/v20170312/errorcodes.py +3 -0
  5. tencentcloud/cbs/v20170312/errorcodes.py +3 -0
  6. tencentcloud/ccc/v20200210/models.py +15 -0
  7. tencentcloud/cdb/v20170320/cdb_client.py +1 -1
  8. tencentcloud/cdb/v20170320/models.py +98 -12
  9. tencentcloud/cfg/v20210820/models.py +15 -0
  10. tencentcloud/cfs/v20190719/models.py +90 -0
  11. tencentcloud/csip/v20221121/models.py +32 -2
  12. tencentcloud/dbbrain/v20210527/models.py +60 -0
  13. tencentcloud/dlc/v20210125/dlc_client.py +23 -0
  14. tencentcloud/dlc/v20210125/models.py +64 -0
  15. tencentcloud/eb/v20210416/models.py +8 -8
  16. tencentcloud/ess/v20201111/models.py +2 -2
  17. tencentcloud/gs/v20191118/models.py +49 -8
  18. tencentcloud/iai/v20180301/iai_client.py +0 -1
  19. tencentcloud/iai/v20180301/models.py +168 -126
  20. tencentcloud/igtm/v20231024/models.py +12 -238
  21. tencentcloud/ims/v20201229/errorcodes.py +3 -0
  22. tencentcloud/lighthouse/v20200324/models.py +15 -0
  23. tencentcloud/lke/v20231130/models.py +4 -4
  24. tencentcloud/lkeap/v20240522/models.py +6 -58
  25. tencentcloud/scf/v20180416/errorcodes.py +93 -0
  26. tencentcloud/tcbr/v20220217/models.py +15 -0
  27. tencentcloud/tke/v20180525/models.py +95 -0
  28. tencentcloud/trtc/v20190722/models.py +2583 -725
  29. tencentcloud/trtc/v20190722/trtc_client.py +194 -0
  30. tencentcloud/tsf/v20180326/errorcodes.py +2 -2
  31. tencentcloud/tts/v20190823/tts_client.py +1 -1
  32. tencentcloud/vod/v20180717/errorcodes.py +3 -0
  33. tencentcloud/vod/v20180717/models.py +19 -4
  34. tencentcloud/wedata/v20210820/errorcodes.py +12 -0
  35. tencentcloud/wedata/v20210820/models.py +865 -2
  36. tencentcloud/wedata/v20210820/wedata_client.py +161 -0
  37. {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/METADATA +1 -1
  38. {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/RECORD +41 -41
  39. {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/LICENSE +0 -0
  40. {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/WHEEL +0 -0
  41. {tencentcloud_sdk_python-3.0.1424.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/top_level.txt +0 -0
@@ -27,28 +27,21 @@ class Address(AbstractModel):
27
27
  r"""
28
28
  :param _Addr: 地址值:只支持ipv4、ipv6和域名格式;
29
29
  不支持回环地址、保留地址、内网地址与腾讯保留网段
30
- 注意:此字段可能返回 null,表示取不到有效值。
31
30
  :type Addr: str
32
31
  :param _IsEnable: 是否启用:DISABLED不启用;ENABLED启用
33
- 注意:此字段可能返回 null,表示取不到有效值。
34
32
  :type IsEnable: str
35
33
  :param _AddressId: 地址id
36
- 注意:此字段可能返回 null,表示取不到有效值。
37
34
  :type AddressId: int
38
35
  :param _Location: 地址名称
39
- 注意:此字段可能返回 null,表示取不到有效值。
40
36
  :type Location: str
41
37
  :param _Status: OK正常,DOWN故障,WARN风险,UNKNOWN探测中,UNMONITORED未知
42
- 注意:此字段可能返回 null,表示取不到有效值。
43
38
  :type Status: str
44
39
  :param _Weight: 权重,流量策略为WEIGHT时,必填;范围1-100
45
40
  注意:此字段可能返回 null,表示取不到有效值。
46
41
  :type Weight: int
47
42
  :param _CreatedOn: 创建时间
48
- 注意:此字段可能返回 null,表示取不到有效值。
49
43
  :type CreatedOn: str
50
44
  :param _UpdatedOn: 修改时间
51
- 注意:此字段可能返回 null,表示取不到有效值。
52
45
  :type UpdatedOn: str
53
46
  """
54
47
  self._Addr = None
@@ -64,7 +57,6 @@ class Address(AbstractModel):
64
57
  def Addr(self):
65
58
  """地址值:只支持ipv4、ipv6和域名格式;
66
59
  不支持回环地址、保留地址、内网地址与腾讯保留网段
67
- 注意:此字段可能返回 null,表示取不到有效值。
68
60
  :rtype: str
69
61
  """
70
62
  return self._Addr
@@ -76,7 +68,6 @@ class Address(AbstractModel):
76
68
  @property
77
69
  def IsEnable(self):
78
70
  """是否启用:DISABLED不启用;ENABLED启用
79
- 注意:此字段可能返回 null,表示取不到有效值。
80
71
  :rtype: str
81
72
  """
82
73
  return self._IsEnable
@@ -88,7 +79,6 @@ class Address(AbstractModel):
88
79
  @property
89
80
  def AddressId(self):
90
81
  """地址id
91
- 注意:此字段可能返回 null,表示取不到有效值。
92
82
  :rtype: int
93
83
  """
94
84
  return self._AddressId
@@ -100,7 +90,6 @@ class Address(AbstractModel):
100
90
  @property
101
91
  def Location(self):
102
92
  """地址名称
103
- 注意:此字段可能返回 null,表示取不到有效值。
104
93
  :rtype: str
105
94
  """
106
95
  return self._Location
@@ -112,7 +101,6 @@ class Address(AbstractModel):
112
101
  @property
113
102
  def Status(self):
114
103
  """OK正常,DOWN故障,WARN风险,UNKNOWN探测中,UNMONITORED未知
115
- 注意:此字段可能返回 null,表示取不到有效值。
116
104
  :rtype: str
117
105
  """
118
106
  return self._Status
@@ -136,7 +124,6 @@ class Address(AbstractModel):
136
124
  @property
137
125
  def CreatedOn(self):
138
126
  """创建时间
139
- 注意:此字段可能返回 null,表示取不到有效值。
140
127
  :rtype: str
141
128
  """
142
129
  return self._CreatedOn
@@ -148,7 +135,6 @@ class Address(AbstractModel):
148
135
  @property
149
136
  def UpdatedOn(self):
150
137
  """修改时间
151
- 注意:此字段可能返回 null,表示取不到有效值。
152
138
  :rtype: str
153
139
  """
154
140
  return self._UpdatedOn
@@ -185,10 +171,8 @@ class AddressLocation(AbstractModel):
185
171
  def __init__(self):
186
172
  r"""
187
173
  :param _Addr: ip地址
188
- 注意:此字段可能返回 null,表示取不到有效值。
189
174
  :type Addr: str
190
175
  :param _Location: 所属地域
191
- 注意:此字段可能返回 null,表示取不到有效值。
192
176
  :type Location: str
193
177
  """
194
178
  self._Addr = None
@@ -197,7 +181,6 @@ class AddressLocation(AbstractModel):
197
181
  @property
198
182
  def Addr(self):
199
183
  """ip地址
200
- 注意:此字段可能返回 null,表示取不到有效值。
201
184
  :rtype: str
202
185
  """
203
186
  return self._Addr
@@ -209,7 +192,6 @@ class AddressLocation(AbstractModel):
209
192
  @property
210
193
  def Location(self):
211
194
  """所属地域
212
- 注意:此字段可能返回 null,表示取不到有效值。
213
195
  :rtype: str
214
196
  """
215
197
  return self._Location
@@ -240,31 +222,23 @@ class AddressPool(AbstractModel):
240
222
  def __init__(self):
241
223
  r"""
242
224
  :param _PoolId: 地址池 id
243
- 注意:此字段可能返回 null,表示取不到有效值。
244
225
  :type PoolId: int
245
226
  :param _PoolName: 地址池名
246
- 注意:此字段可能返回 null,表示取不到有效值。
247
227
  :type PoolName: str
248
228
  :param _AddrType: 地址池地址类型:IPV4、IPV6、DOMAIN
249
- 注意:此字段可能返回 null,表示取不到有效值。
250
229
  :type AddrType: str
251
230
  :param _TrafficStrategy: 流量策略: WEIGHT负载均衡,ALL解析全部
252
- 注意:此字段可能返回 null,表示取不到有效值。
253
231
  :type TrafficStrategy: str
254
232
  :param _MonitorId: 监控器id
255
233
  注意:此字段可能返回 null,表示取不到有效值。
256
234
  :type MonitorId: int
257
235
  :param _Status: OK正常,DOWN故障,WARN风险,UNKNOWN未知
258
- 注意:此字段可能返回 null,表示取不到有效值。
259
236
  :type Status: str
260
237
  :param _AddressNum: 地址数
261
- 注意:此字段可能返回 null,表示取不到有效值。
262
238
  :type AddressNum: int
263
239
  :param _MonitorGroupNum: 探点数
264
- 注意:此字段可能返回 null,表示取不到有效值。
265
240
  :type MonitorGroupNum: int
266
241
  :param _MonitorTaskNum: 探测任务数
267
- 注意:此字段可能返回 null,表示取不到有效值。
268
242
  :type MonitorTaskNum: int
269
243
  :param _InstanceInfo: 实例相关信息
270
244
  注意:此字段可能返回 null,表示取不到有效值。
@@ -273,10 +247,8 @@ class AddressPool(AbstractModel):
273
247
  注意:此字段可能返回 null,表示取不到有效值。
274
248
  :type AddressSet: list of Address
275
249
  :param _CreatedOn: 创建时间
276
- 注意:此字段可能返回 null,表示取不到有效值。
277
250
  :type CreatedOn: str
278
251
  :param _UpdatedOn: 更新时间
279
- 注意:此字段可能返回 null,表示取不到有效值。
280
252
  :type UpdatedOn: str
281
253
  """
282
254
  self._PoolId = None
@@ -296,7 +268,6 @@ class AddressPool(AbstractModel):
296
268
  @property
297
269
  def PoolId(self):
298
270
  """地址池 id
299
- 注意:此字段可能返回 null,表示取不到有效值。
300
271
  :rtype: int
301
272
  """
302
273
  return self._PoolId
@@ -308,7 +279,6 @@ class AddressPool(AbstractModel):
308
279
  @property
309
280
  def PoolName(self):
310
281
  """地址池名
311
- 注意:此字段可能返回 null,表示取不到有效值。
312
282
  :rtype: str
313
283
  """
314
284
  return self._PoolName
@@ -320,7 +290,6 @@ class AddressPool(AbstractModel):
320
290
  @property
321
291
  def AddrType(self):
322
292
  """地址池地址类型:IPV4、IPV6、DOMAIN
323
- 注意:此字段可能返回 null,表示取不到有效值。
324
293
  :rtype: str
325
294
  """
326
295
  return self._AddrType
@@ -332,7 +301,6 @@ class AddressPool(AbstractModel):
332
301
  @property
333
302
  def TrafficStrategy(self):
334
303
  """流量策略: WEIGHT负载均衡,ALL解析全部
335
- 注意:此字段可能返回 null,表示取不到有效值。
336
304
  :rtype: str
337
305
  """
338
306
  return self._TrafficStrategy
@@ -356,7 +324,6 @@ class AddressPool(AbstractModel):
356
324
  @property
357
325
  def Status(self):
358
326
  """OK正常,DOWN故障,WARN风险,UNKNOWN未知
359
- 注意:此字段可能返回 null,表示取不到有效值。
360
327
  :rtype: str
361
328
  """
362
329
  return self._Status
@@ -368,7 +335,6 @@ class AddressPool(AbstractModel):
368
335
  @property
369
336
  def AddressNum(self):
370
337
  """地址数
371
- 注意:此字段可能返回 null,表示取不到有效值。
372
338
  :rtype: int
373
339
  """
374
340
  return self._AddressNum
@@ -380,7 +346,6 @@ class AddressPool(AbstractModel):
380
346
  @property
381
347
  def MonitorGroupNum(self):
382
348
  """探点数
383
- 注意:此字段可能返回 null,表示取不到有效值。
384
349
  :rtype: int
385
350
  """
386
351
  return self._MonitorGroupNum
@@ -392,7 +357,6 @@ class AddressPool(AbstractModel):
392
357
  @property
393
358
  def MonitorTaskNum(self):
394
359
  """探测任务数
395
- 注意:此字段可能返回 null,表示取不到有效值。
396
360
  :rtype: int
397
361
  """
398
362
  return self._MonitorTaskNum
@@ -428,7 +392,6 @@ class AddressPool(AbstractModel):
428
392
  @property
429
393
  def CreatedOn(self):
430
394
  """创建时间
431
- 注意:此字段可能返回 null,表示取不到有效值。
432
395
  :rtype: str
433
396
  """
434
397
  return self._CreatedOn
@@ -440,7 +403,6 @@ class AddressPool(AbstractModel):
440
403
  @property
441
404
  def UpdatedOn(self):
442
405
  """更新时间
443
- 注意:此字段可能返回 null,表示取不到有效值。
444
406
  :rtype: str
445
407
  """
446
408
  return self._UpdatedOn
@@ -492,25 +454,19 @@ class AddressPoolDetail(AbstractModel):
492
454
  def __init__(self):
493
455
  r"""
494
456
  :param _PoolId: 地址池 id
495
- 注意:此字段可能返回 null,表示取不到有效值。
496
457
  :type PoolId: int
497
458
  :param _PoolName: 地址池名
498
- 注意:此字段可能返回 null,表示取不到有效值。
499
459
  :type PoolName: str
500
460
  :param _AddrType: 地址池地址类型:IPV4、IPV6、DOMAIN
501
- 注意:此字段可能返回 null,表示取不到有效值。
502
461
  :type AddrType: str
503
462
  :param _TrafficStrategy: 流量策略: WEIGHT负载均衡,ALL解析全部
504
- 注意:此字段可能返回 null,表示取不到有效值。
505
463
  :type TrafficStrategy: str
506
464
  :param _MonitorId: 监控器id
507
465
  注意:此字段可能返回 null,表示取不到有效值。
508
466
  :type MonitorId: int
509
467
  :param _CreatedOn: 创建时间
510
- 注意:此字段可能返回 null,表示取不到有效值。
511
468
  :type CreatedOn: str
512
469
  :param _UpdatedOn: 更新时间
513
- 注意:此字段可能返回 null,表示取不到有效值。
514
470
  :type UpdatedOn: str
515
471
  """
516
472
  self._PoolId = None
@@ -524,7 +480,6 @@ class AddressPoolDetail(AbstractModel):
524
480
  @property
525
481
  def PoolId(self):
526
482
  """地址池 id
527
- 注意:此字段可能返回 null,表示取不到有效值。
528
483
  :rtype: int
529
484
  """
530
485
  return self._PoolId
@@ -536,7 +491,6 @@ class AddressPoolDetail(AbstractModel):
536
491
  @property
537
492
  def PoolName(self):
538
493
  """地址池名
539
- 注意:此字段可能返回 null,表示取不到有效值。
540
494
  :rtype: str
541
495
  """
542
496
  return self._PoolName
@@ -548,7 +502,6 @@ class AddressPoolDetail(AbstractModel):
548
502
  @property
549
503
  def AddrType(self):
550
504
  """地址池地址类型:IPV4、IPV6、DOMAIN
551
- 注意:此字段可能返回 null,表示取不到有效值。
552
505
  :rtype: str
553
506
  """
554
507
  return self._AddrType
@@ -560,7 +513,6 @@ class AddressPoolDetail(AbstractModel):
560
513
  @property
561
514
  def TrafficStrategy(self):
562
515
  """流量策略: WEIGHT负载均衡,ALL解析全部
563
- 注意:此字段可能返回 null,表示取不到有效值。
564
516
  :rtype: str
565
517
  """
566
518
  return self._TrafficStrategy
@@ -584,7 +536,6 @@ class AddressPoolDetail(AbstractModel):
584
536
  @property
585
537
  def CreatedOn(self):
586
538
  """创建时间
587
- 注意:此字段可能返回 null,表示取不到有效值。
588
539
  :rtype: str
589
540
  """
590
541
  return self._CreatedOn
@@ -596,7 +547,6 @@ class AddressPoolDetail(AbstractModel):
596
547
  @property
597
548
  def UpdatedOn(self):
598
549
  """更新时间
599
- 注意:此字段可能返回 null,表示取不到有效值。
600
550
  :rtype: str
601
551
  """
602
552
  return self._UpdatedOn
@@ -2147,7 +2097,7 @@ class DescribeDetectPackageDetailResponse(AbstractModel):
2147
2097
  :type IsExpire: int
2148
2098
  :param _Status: 状态 ENABLED: 正常 ISOLATED: 隔离 DESTROYED:销毁 REFUNDED:已退款
2149
2099
  :type Status: str
2150
- :param _AutoRenewFlag: 是否自动续费01是
2100
+ :param _AutoRenewFlag: 是否自动续费:01是
2151
2101
  :type AutoRenewFlag: int
2152
2102
  :param _Remark: 备注
2153
2103
  :type Remark: str
@@ -2250,7 +2200,7 @@ class DescribeDetectPackageDetailResponse(AbstractModel):
2250
2200
 
2251
2201
  @property
2252
2202
  def AutoRenewFlag(self):
2253
- """是否自动续费01是
2203
+ """是否自动续费:01是
2254
2204
  :rtype: int
2255
2205
  """
2256
2206
  return self._AutoRenewFlag
@@ -2965,7 +2915,6 @@ class DescribeMonitorDetailResponse(AbstractModel):
2965
2915
  def __init__(self):
2966
2916
  r"""
2967
2917
  :param _MonitorDetail: 探测规则
2968
- 注意:此字段可能返回 null,表示取不到有效值。
2969
2918
  :type MonitorDetail: :class:`tencentcloud.igtm.v20231024.models.MonitorDetail`
2970
2919
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2971
2920
  :type RequestId: str
@@ -2976,7 +2925,6 @@ class DescribeMonitorDetailResponse(AbstractModel):
2976
2925
  @property
2977
2926
  def MonitorDetail(self):
2978
2927
  """探测规则
2979
- 注意:此字段可能返回 null,表示取不到有效值。
2980
2928
  :rtype: :class:`tencentcloud.igtm.v20231024.models.MonitorDetail`
2981
2929
  """
2982
2930
  return self._MonitorDetail
@@ -3179,7 +3127,6 @@ class DescribeQuotasResponse(AbstractModel):
3179
3127
  def __init__(self):
3180
3128
  r"""
3181
3129
  :param _Quotas: 配额id
3182
- 注意:此字段可能返回 null,表示取不到有效值。
3183
3130
  :type Quotas: :class:`tencentcloud.igtm.v20231024.models.Quota`
3184
3131
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3185
3132
  :type RequestId: str
@@ -3190,7 +3137,6 @@ class DescribeQuotasResponse(AbstractModel):
3190
3137
  @property
3191
3138
  def Quotas(self):
3192
3139
  """配额id
3193
- 注意:此字段可能返回 null,表示取不到有效值。
3194
3140
  :rtype: :class:`tencentcloud.igtm.v20231024.models.Quota`
3195
3141
  """
3196
3142
  return self._Quotas
@@ -3776,28 +3722,20 @@ class GroupLine(AbstractModel):
3776
3722
  def __init__(self):
3777
3723
  r"""
3778
3724
  :param _DnsLineId: 分组线路id
3779
- 注意:此字段可能返回 null,表示取不到有效值。
3780
3725
  :type DnsLineId: int
3781
3726
  :param _Parent: 父节点 0为根节点
3782
- 注意:此字段可能返回 null,表示取不到有效值。
3783
3727
  :type Parent: int
3784
3728
  :param _LineName: 线路名
3785
- 注意:此字段可能返回 null,表示取不到有效值。
3786
3729
  :type LineName: str
3787
3730
  :param _LineId: 10=9 DNSPod 线路 id
3788
- 注意:此字段可能返回 null,表示取不到有效值。
3789
3731
  :type LineId: str
3790
3732
  :param _Useful: 是否已使用过
3791
- 注意:此字段可能返回 null,表示取不到有效值。
3792
3733
  :type Useful: bool
3793
3734
  :param _SubGroup: 0为未使用
3794
- 注意:此字段可能返回 null,表示取不到有效值。
3795
3735
  :type SubGroup: int
3796
3736
  :param _LinePackage: 权限标识
3797
- 注意:此字段可能返回 null,表示取不到有效值。
3798
3737
  :type LinePackage: int
3799
3738
  :param _Weight: 1
3800
- 注意:此字段可能返回 null,表示取不到有效值。
3801
3739
  :type Weight: int
3802
3740
  """
3803
3741
  self._DnsLineId = None
@@ -3812,7 +3750,6 @@ class GroupLine(AbstractModel):
3812
3750
  @property
3813
3751
  def DnsLineId(self):
3814
3752
  """分组线路id
3815
- 注意:此字段可能返回 null,表示取不到有效值。
3816
3753
  :rtype: int
3817
3754
  """
3818
3755
  return self._DnsLineId
@@ -3824,7 +3761,6 @@ class GroupLine(AbstractModel):
3824
3761
  @property
3825
3762
  def Parent(self):
3826
3763
  """父节点 0为根节点
3827
- 注意:此字段可能返回 null,表示取不到有效值。
3828
3764
  :rtype: int
3829
3765
  """
3830
3766
  return self._Parent
@@ -3836,7 +3772,6 @@ class GroupLine(AbstractModel):
3836
3772
  @property
3837
3773
  def LineName(self):
3838
3774
  """线路名
3839
- 注意:此字段可能返回 null,表示取不到有效值。
3840
3775
  :rtype: str
3841
3776
  """
3842
3777
  return self._LineName
@@ -3848,7 +3783,6 @@ class GroupLine(AbstractModel):
3848
3783
  @property
3849
3784
  def LineId(self):
3850
3785
  """10=9 DNSPod 线路 id
3851
- 注意:此字段可能返回 null,表示取不到有效值。
3852
3786
  :rtype: str
3853
3787
  """
3854
3788
  return self._LineId
@@ -3860,7 +3794,6 @@ class GroupLine(AbstractModel):
3860
3794
  @property
3861
3795
  def Useful(self):
3862
3796
  """是否已使用过
3863
- 注意:此字段可能返回 null,表示取不到有效值。
3864
3797
  :rtype: bool
3865
3798
  """
3866
3799
  return self._Useful
@@ -3872,7 +3805,6 @@ class GroupLine(AbstractModel):
3872
3805
  @property
3873
3806
  def SubGroup(self):
3874
3807
  """0为未使用
3875
- 注意:此字段可能返回 null,表示取不到有效值。
3876
3808
  :rtype: int
3877
3809
  """
3878
3810
  return self._SubGroup
@@ -3884,7 +3816,6 @@ class GroupLine(AbstractModel):
3884
3816
  @property
3885
3817
  def LinePackage(self):
3886
3818
  """权限标识
3887
- 注意:此字段可能返回 null,表示取不到有效值。
3888
3819
  :rtype: int
3889
3820
  """
3890
3821
  return self._LinePackage
@@ -3896,7 +3827,6 @@ class GroupLine(AbstractModel):
3896
3827
  @property
3897
3828
  def Weight(self):
3898
3829
  """1
3899
- 注意:此字段可能返回 null,表示取不到有效值。
3900
3830
  :rtype: int
3901
3831
  """
3902
3832
  return self._Weight
@@ -3937,7 +3867,6 @@ class Instance(AbstractModel):
3937
3867
  :param _InstanceName: 实例名
3938
3868
  :type InstanceName: str
3939
3869
  :param _ResourceId: 资源 id
3940
- 注意:此字段可能返回 null,表示取不到有效值。
3941
3870
  :type ResourceId: str
3942
3871
  :param _Domain: 业务域名
3943
3872
  :type Domain: str
@@ -3955,39 +3884,28 @@ SYSTEM: 系统接入域名
3955
3884
  FREE: 免费版
3956
3885
  STANDARD:标准版
3957
3886
  ULTIMATE:旗舰版
3958
- 注意:此字段可能返回 null,表示取不到有效值。
3959
3887
  :type PackageType: str
3960
3888
  :param _WorkingStatus: 实例运行状态
3961
3889
  NORMAL: 健康
3962
3890
  FAULTY: 有风险
3963
3891
  DOWN: 宕机
3964
3892
  UNKNOWN: 未知
3965
- 注意:此字段可能返回 null,表示取不到有效值。
3966
3893
  :type WorkingStatus: str
3967
- :param _Status: 实例状态
3968
- ENABLED: 正常
3969
- DISABLED: 禁用
3894
+ :param _Status: 实例状态,ENABLED: 正常,DISABLED: 禁用
3970
3895
  :type Status: str
3971
3896
  :param _IsCnameConfigured: 是否cname接入:true已接入;false未接入
3972
- 注意:此字段可能返回 null,表示取不到有效值。
3973
3897
  :type IsCnameConfigured: bool
3974
3898
  :param _Remark: 备注
3975
- 注意:此字段可能返回 null,表示取不到有效值。
3976
3899
  :type Remark: str
3977
3900
  :param _StrategyNum: 策略数量
3978
- 注意:此字段可能返回 null,表示取不到有效值。
3979
3901
  :type StrategyNum: int
3980
3902
  :param _AddressPoolNum: 绑定地址池个数
3981
- 注意:此字段可能返回 null,表示取不到有效值。
3982
3903
  :type AddressPoolNum: int
3983
3904
  :param _MonitorNum: 绑定监控器数量
3984
- 注意:此字段可能返回 null,表示取不到有效值。
3985
3905
  :type MonitorNum: int
3986
3906
  :param _PoolId: 地址池id
3987
- 注意:此字段可能返回 null,表示取不到有效值。
3988
3907
  :type PoolId: int
3989
3908
  :param _PoolName: 地址池名称
3990
- 注意:此字段可能返回 null,表示取不到有效值。
3991
3909
  :type PoolName: str
3992
3910
  :param _CreatedOn: 实例创建时间
3993
3911
  :type CreatedOn: str
@@ -4040,7 +3958,6 @@ DISABLED: 禁用
4040
3958
  @property
4041
3959
  def ResourceId(self):
4042
3960
  """资源 id
4043
- 注意:此字段可能返回 null,表示取不到有效值。
4044
3961
  :rtype: str
4045
3962
  """
4046
3963
  return self._ResourceId
@@ -4112,7 +4029,6 @@ SYSTEM: 系统接入域名
4112
4029
  FREE: 免费版
4113
4030
  STANDARD:标准版
4114
4031
  ULTIMATE:旗舰版
4115
- 注意:此字段可能返回 null,表示取不到有效值。
4116
4032
  :rtype: str
4117
4033
  """
4118
4034
  return self._PackageType
@@ -4128,7 +4044,6 @@ NORMAL: 健康
4128
4044
  FAULTY: 有风险
4129
4045
  DOWN: 宕机
4130
4046
  UNKNOWN: 未知
4131
- 注意:此字段可能返回 null,表示取不到有效值。
4132
4047
  :rtype: str
4133
4048
  """
4134
4049
  return self._WorkingStatus
@@ -4139,9 +4054,7 @@ UNKNOWN: 未知
4139
4054
 
4140
4055
  @property
4141
4056
  def Status(self):
4142
- """实例状态
4143
- ENABLED: 正常
4144
- DISABLED: 禁用
4057
+ """实例状态,ENABLED: 正常,DISABLED: 禁用
4145
4058
  :rtype: str
4146
4059
  """
4147
4060
  return self._Status
@@ -4153,7 +4066,6 @@ DISABLED: 禁用
4153
4066
  @property
4154
4067
  def IsCnameConfigured(self):
4155
4068
  """是否cname接入:true已接入;false未接入
4156
- 注意:此字段可能返回 null,表示取不到有效值。
4157
4069
  :rtype: bool
4158
4070
  """
4159
4071
  return self._IsCnameConfigured
@@ -4165,7 +4077,6 @@ DISABLED: 禁用
4165
4077
  @property
4166
4078
  def Remark(self):
4167
4079
  """备注
4168
- 注意:此字段可能返回 null,表示取不到有效值。
4169
4080
  :rtype: str
4170
4081
  """
4171
4082
  return self._Remark
@@ -4177,7 +4088,6 @@ DISABLED: 禁用
4177
4088
  @property
4178
4089
  def StrategyNum(self):
4179
4090
  """策略数量
4180
- 注意:此字段可能返回 null,表示取不到有效值。
4181
4091
  :rtype: int
4182
4092
  """
4183
4093
  return self._StrategyNum
@@ -4189,7 +4099,6 @@ DISABLED: 禁用
4189
4099
  @property
4190
4100
  def AddressPoolNum(self):
4191
4101
  """绑定地址池个数
4192
- 注意:此字段可能返回 null,表示取不到有效值。
4193
4102
  :rtype: int
4194
4103
  """
4195
4104
  return self._AddressPoolNum
@@ -4201,7 +4110,6 @@ DISABLED: 禁用
4201
4110
  @property
4202
4111
  def MonitorNum(self):
4203
4112
  """绑定监控器数量
4204
- 注意:此字段可能返回 null,表示取不到有效值。
4205
4113
  :rtype: int
4206
4114
  """
4207
4115
  return self._MonitorNum
@@ -4213,7 +4121,6 @@ DISABLED: 禁用
4213
4121
  @property
4214
4122
  def PoolId(self):
4215
4123
  """地址池id
4216
- 注意:此字段可能返回 null,表示取不到有效值。
4217
4124
  :rtype: int
4218
4125
  """
4219
4126
  return self._PoolId
@@ -4225,7 +4132,6 @@ DISABLED: 禁用
4225
4132
  @property
4226
4133
  def PoolName(self):
4227
4134
  """地址池名称
4228
- 注意:此字段可能返回 null,表示取不到有效值。
4229
4135
  :rtype: str
4230
4136
  """
4231
4137
  return self._PoolName
@@ -4299,17 +4205,15 @@ class InstanceConfig(AbstractModel):
4299
4205
  :type InstanceName: str
4300
4206
  :param _Domain: 业务域名
4301
4207
  :type Domain: str
4302
- :param _AccessType: CUSTOM: 自定义接入域名
4303
- SYSTEM: 系统接入域名
4208
+ :param _AccessType: CUSTOM: 自定义接入域名,SYSTEM: 系统接入域名
4304
4209
  :type AccessType: str
4305
4210
  :param _Remark: 备注
4306
4211
  :type Remark: str
4307
4212
  :param _GlobalTtl: 全局记录过期时间
4308
4213
  :type GlobalTtl: int
4309
- :param _AccessDomain: 接入主域名,自定义接入域名时必填
4310
-
4214
+ :param _AccessDomain: 接入主域名
4311
4215
  :type AccessDomain: str
4312
- :param _AccessSubDomain: 接入子域名,自定义接入域名时必填
4216
+ :param _AccessSubDomain: 接入子域名
4313
4217
  :type AccessSubDomain: str
4314
4218
  """
4315
4219
  self._InstanceName = None
@@ -4344,8 +4248,7 @@ SYSTEM: 系统接入域名
4344
4248
 
4345
4249
  @property
4346
4250
  def AccessType(self):
4347
- """CUSTOM: 自定义接入域名
4348
- SYSTEM: 系统接入域名
4251
+ """CUSTOM: 自定义接入域名,SYSTEM: 系统接入域名
4349
4252
  :rtype: str
4350
4253
  """
4351
4254
  return self._AccessType
@@ -4378,8 +4281,7 @@ SYSTEM: 系统接入域名
4378
4281
 
4379
4282
  @property
4380
4283
  def AccessDomain(self):
4381
- """接入主域名,自定义接入域名时必填
4382
-
4284
+ """接入主域名
4383
4285
  :rtype: str
4384
4286
  """
4385
4287
  return self._AccessDomain
@@ -4390,7 +4292,7 @@ SYSTEM: 系统接入域名
4390
4292
 
4391
4293
  @property
4392
4294
  def AccessSubDomain(self):
4393
- """接入子域名,自定义接入域名时必填
4295
+ """接入子域名
4394
4296
  :rtype: str
4395
4297
  """
4396
4298
  return self._AccessSubDomain
@@ -4445,7 +4347,6 @@ SYSTEM: 系统接入域名
4445
4347
  FREE: 免费版
4446
4348
  STANDARD:标准版
4447
4349
  ULTIMATE:旗舰版
4448
- 注意:此字段可能返回 null,表示取不到有效值。
4449
4350
  :type PackageType: str
4450
4351
  :param _WorkingStatus: 实例运行状态
4451
4352
  NORMAL: 健康
@@ -4453,15 +4354,11 @@ FAULTY: 有风险
4453
4354
  DOWN: 宕机
4454
4355
  UNKNOWN: 未知
4455
4356
  :type WorkingStatus: str
4456
- :param _Status: 实例状态
4457
- ENABLED: 正常
4458
- DISABLED: 禁用
4357
+ :param _Status: 实例状态,ENABLED: 正常;DISABLED: 禁用
4459
4358
  :type Status: str
4460
4359
  :param _IsCnameConfigured: cname是否接入:true已接入;false未接入
4461
- 注意:此字段可能返回 null,表示取不到有效值。
4462
4360
  :type IsCnameConfigured: bool
4463
4361
  :param _Remark: 备注
4464
- 注意:此字段可能返回 null,表示取不到有效值。
4465
4362
  :type Remark: str
4466
4363
  :param _StrategyNum: 策略数量
4467
4364
  :type StrategyNum: int
@@ -4470,7 +4367,6 @@ DISABLED: 禁用
4470
4367
  :param _MonitorNum: 绑定监控器数量
4471
4368
  :type MonitorNum: int
4472
4369
  :param _ResourceId: 实例绑定套餐资源id
4473
- 注意:此字段可能返回 null,表示取不到有效值。
4474
4370
  :type ResourceId: str
4475
4371
  :param _NotifyEventSet: 订阅事件列表
4476
4372
  :type NotifyEventSet: list of str
@@ -4584,7 +4480,6 @@ SYSTEM: 系统接入域名
4584
4480
  FREE: 免费版
4585
4481
  STANDARD:标准版
4586
4482
  ULTIMATE:旗舰版
4587
- 注意:此字段可能返回 null,表示取不到有效值。
4588
4483
  :rtype: str
4589
4484
  """
4590
4485
  return self._PackageType
@@ -4610,9 +4505,7 @@ UNKNOWN: 未知
4610
4505
 
4611
4506
  @property
4612
4507
  def Status(self):
4613
- """实例状态
4614
- ENABLED: 正常
4615
- DISABLED: 禁用
4508
+ """实例状态,ENABLED: 正常;DISABLED: 禁用
4616
4509
  :rtype: str
4617
4510
  """
4618
4511
  return self._Status
@@ -4624,7 +4517,6 @@ DISABLED: 禁用
4624
4517
  @property
4625
4518
  def IsCnameConfigured(self):
4626
4519
  """cname是否接入:true已接入;false未接入
4627
- 注意:此字段可能返回 null,表示取不到有效值。
4628
4520
  :rtype: bool
4629
4521
  """
4630
4522
  return self._IsCnameConfigured
@@ -4636,7 +4528,6 @@ DISABLED: 禁用
4636
4528
  @property
4637
4529
  def Remark(self):
4638
4530
  """备注
4639
- 注意:此字段可能返回 null,表示取不到有效值。
4640
4531
  :rtype: str
4641
4532
  """
4642
4533
  return self._Remark
@@ -4681,7 +4572,6 @@ DISABLED: 禁用
4681
4572
  @property
4682
4573
  def ResourceId(self):
4683
4574
  """实例绑定套餐资源id
4684
- 注意:此字段可能返回 null,表示取不到有效值。
4685
4575
  :rtype: str
4686
4576
  """
4687
4577
  return self._ResourceId
@@ -4762,10 +4652,8 @@ class InstanceInfo(AbstractModel):
4762
4652
  def __init__(self):
4763
4653
  r"""
4764
4654
  :param _InstanceId: 实例id
4765
- 注意:此字段可能返回 null,表示取不到有效值。
4766
4655
  :type InstanceId: str
4767
4656
  :param _InstanceName: 实例名称
4768
- 注意:此字段可能返回 null,表示取不到有效值。
4769
4657
  :type InstanceName: str
4770
4658
  """
4771
4659
  self._InstanceId = None
@@ -4774,7 +4662,6 @@ class InstanceInfo(AbstractModel):
4774
4662
  @property
4775
4663
  def InstanceId(self):
4776
4664
  """实例id
4777
- 注意:此字段可能返回 null,表示取不到有效值。
4778
4665
  :rtype: str
4779
4666
  """
4780
4667
  return self._InstanceId
@@ -4786,7 +4673,6 @@ class InstanceInfo(AbstractModel):
4786
4673
  @property
4787
4674
  def InstanceName(self):
4788
4675
  """实例名称
4789
- 注意:此字段可能返回 null,表示取不到有效值。
4790
4676
  :rtype: str
4791
4677
  """
4792
4678
  return self._InstanceName
@@ -5083,13 +4969,10 @@ class MainAddressPool(AbstractModel):
5083
4969
  注意:此字段可能返回 null,表示取不到有效值。
5084
4970
  :type AddressPools: list of MainPoolWeight
5085
4971
  :param _MainAddressPoolId: 地址池集合id
5086
- 注意:此字段可能返回 null,表示取不到有效值。
5087
4972
  :type MainAddressPoolId: int
5088
4973
  :param _MinSurviveNum: 切换阀值,不能大于主力集合内地址总数
5089
- 注意:此字段可能返回 null,表示取不到有效值。
5090
4974
  :type MinSurviveNum: int
5091
4975
  :param _TrafficStrategy: 切换策略:ALL解析所有地址;WEIGHT:负载均衡。当为ALL时,解析地址的权重值为1;当为WEIGHT时;权重为地址池权重*地址权重
5092
- 注意:此字段可能返回 null,表示取不到有效值。
5093
4976
  :type TrafficStrategy: str
5094
4977
  """
5095
4978
  self._AddressPools = None
@@ -5112,7 +4995,6 @@ class MainAddressPool(AbstractModel):
5112
4995
  @property
5113
4996
  def MainAddressPoolId(self):
5114
4997
  """地址池集合id
5115
- 注意:此字段可能返回 null,表示取不到有效值。
5116
4998
  :rtype: int
5117
4999
  """
5118
5000
  return self._MainAddressPoolId
@@ -5124,7 +5006,6 @@ class MainAddressPool(AbstractModel):
5124
5006
  @property
5125
5007
  def MinSurviveNum(self):
5126
5008
  """切换阀值,不能大于主力集合内地址总数
5127
- 注意:此字段可能返回 null,表示取不到有效值。
5128
5009
  :rtype: int
5129
5010
  """
5130
5011
  return self._MinSurviveNum
@@ -5136,7 +5017,6 @@ class MainAddressPool(AbstractModel):
5136
5017
  @property
5137
5018
  def TrafficStrategy(self):
5138
5019
  """切换策略:ALL解析所有地址;WEIGHT:负载均衡。当为ALL时,解析地址的权重值为1;当为WEIGHT时;权重为地址池权重*地址权重
5139
- 注意:此字段可能返回 null,表示取不到有效值。
5140
5020
  :rtype: str
5141
5021
  """
5142
5022
  return self._TrafficStrategy
@@ -5174,7 +5054,6 @@ class MainPoolWeight(AbstractModel):
5174
5054
  def __init__(self):
5175
5055
  r"""
5176
5056
  :param _PoolId: 地址池id
5177
- 注意:此字段可能返回 null,表示取不到有效值。
5178
5057
  :type PoolId: int
5179
5058
  :param _Weight: 权重
5180
5059
  注意:此字段可能返回 null,表示取不到有效值。
@@ -5186,7 +5065,6 @@ class MainPoolWeight(AbstractModel):
5186
5065
  @property
5187
5066
  def PoolId(self):
5188
5067
  """地址池id
5189
- 注意:此字段可能返回 null,表示取不到有效值。
5190
5068
  :rtype: int
5191
5069
  """
5192
5070
  return self._PoolId
@@ -6012,69 +5890,48 @@ class MonitorDetail(AbstractModel):
6012
5890
  :param _MonitorId: 探测规则id
6013
5891
  :type MonitorId: int
6014
5892
  :param _MonitorName: 监控器名称
6015
- 注意:此字段可能返回 null,表示取不到有效值。
6016
5893
  :type MonitorName: str
6017
5894
  :param _Uin: 所属用户
6018
- 注意:此字段可能返回 null,表示取不到有效值。
6019
5895
  :type Uin: str
6020
5896
  :param _DetectorGroupIds: 监控节点id组
6021
- 注意:此字段可能返回 null,表示取不到有效值。
6022
5897
  :type DetectorGroupIds: list of int non-negative
6023
5898
  :param _CheckProtocol: 探测协议 PING TCP HTTP HTTPS
6024
- 注意:此字段可能返回 null,表示取不到有效值。
6025
5899
  :type CheckProtocol: str
6026
5900
  :param _CheckInterval: 探测周期
6027
- 注意:此字段可能返回 null,表示取不到有效值。
6028
5901
  :type CheckInterval: int
6029
5902
  :param _PingNum: 发包数量
6030
- 注意:此字段可能返回 null,表示取不到有效值。
6031
5903
  :type PingNum: int
6032
5904
  :param _TcpPort: tcp端口
6033
- 注意:此字段可能返回 null,表示取不到有效值。
6034
5905
  :type TcpPort: int
6035
5906
  :param _Host: 探测 host
6036
- 注意:此字段可能返回 null,表示取不到有效值。
6037
5907
  :type Host: str
6038
5908
  :param _Path: 探测路径
6039
- 注意:此字段可能返回 null,表示取不到有效值。
6040
5909
  :type Path: str
6041
5910
  :param _ReturnCodeThreshold: 返回值阈值
6042
- 注意:此字段可能返回 null,表示取不到有效值。
6043
5911
  :type ReturnCodeThreshold: int
6044
5912
  :param _EnableRedirect: 是否开启3xx重定向跟随 ENABLED DISABLED
6045
- 注意:此字段可能返回 null,表示取不到有效值。
6046
5913
  :type EnableRedirect: str
6047
5914
  :param _EnableSni: 是否启用 sni
6048
5915
  ENABLED DISABLED
6049
- 注意:此字段可能返回 null,表示取不到有效值。
6050
5916
  :type EnableSni: str
6051
5917
  :param _PacketLossRate: 丢包率上限
6052
- 注意:此字段可能返回 null,表示取不到有效值。
6053
5918
  :type PacketLossRate: int
6054
5919
  :param _Timeout: 探测超时
6055
- 注意:此字段可能返回 null,表示取不到有效值。
6056
5920
  :type Timeout: int
6057
5921
  :param _FailTimes: 失败次数
6058
- 注意:此字段可能返回 null,表示取不到有效值。
6059
5922
  :type FailTimes: int
6060
5923
  :param _FailRate: 失败率上限100
6061
- 注意:此字段可能返回 null,表示取不到有效值。
6062
5924
  :type FailRate: int
6063
5925
  :param _CreatedOn: 创建时间
6064
- 注意:此字段可能返回 null,表示取不到有效值。
6065
5926
  :type CreatedOn: str
6066
5927
  :param _UpdatedOn: 更新时间
6067
- 注意:此字段可能返回 null,表示取不到有效值。
6068
5928
  :type UpdatedOn: str
6069
5929
  :param _DetectorStyle: 监控节点类型
6070
5930
  AUTO INTERNAL OVERSEAS IPV6 ALL
6071
- 注意:此字段可能返回 null,表示取不到有效值。
6072
5931
  :type DetectorStyle: str
6073
5932
  :param _DetectNum: 探测次数
6074
- 注意:此字段可能返回 null,表示取不到有效值。
6075
5933
  :type DetectNum: int
6076
5934
  :param _ContinuePeriod: 持续周期数
6077
- 注意:此字段可能返回 null,表示取不到有效值。
6078
5935
  :type ContinuePeriod: int
6079
5936
  """
6080
5937
  self._MonitorId = None
@@ -6114,7 +5971,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6114
5971
  @property
6115
5972
  def MonitorName(self):
6116
5973
  """监控器名称
6117
- 注意:此字段可能返回 null,表示取不到有效值。
6118
5974
  :rtype: str
6119
5975
  """
6120
5976
  return self._MonitorName
@@ -6126,7 +5982,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6126
5982
  @property
6127
5983
  def Uin(self):
6128
5984
  """所属用户
6129
- 注意:此字段可能返回 null,表示取不到有效值。
6130
5985
  :rtype: str
6131
5986
  """
6132
5987
  return self._Uin
@@ -6138,7 +5993,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6138
5993
  @property
6139
5994
  def DetectorGroupIds(self):
6140
5995
  """监控节点id组
6141
- 注意:此字段可能返回 null,表示取不到有效值。
6142
5996
  :rtype: list of int non-negative
6143
5997
  """
6144
5998
  return self._DetectorGroupIds
@@ -6150,7 +6004,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6150
6004
  @property
6151
6005
  def CheckProtocol(self):
6152
6006
  """探测协议 PING TCP HTTP HTTPS
6153
- 注意:此字段可能返回 null,表示取不到有效值。
6154
6007
  :rtype: str
6155
6008
  """
6156
6009
  return self._CheckProtocol
@@ -6162,7 +6015,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6162
6015
  @property
6163
6016
  def CheckInterval(self):
6164
6017
  """探测周期
6165
- 注意:此字段可能返回 null,表示取不到有效值。
6166
6018
  :rtype: int
6167
6019
  """
6168
6020
  return self._CheckInterval
@@ -6174,7 +6026,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6174
6026
  @property
6175
6027
  def PingNum(self):
6176
6028
  """发包数量
6177
- 注意:此字段可能返回 null,表示取不到有效值。
6178
6029
  :rtype: int
6179
6030
  """
6180
6031
  return self._PingNum
@@ -6186,7 +6037,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6186
6037
  @property
6187
6038
  def TcpPort(self):
6188
6039
  """tcp端口
6189
- 注意:此字段可能返回 null,表示取不到有效值。
6190
6040
  :rtype: int
6191
6041
  """
6192
6042
  return self._TcpPort
@@ -6198,7 +6048,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6198
6048
  @property
6199
6049
  def Host(self):
6200
6050
  """探测 host
6201
- 注意:此字段可能返回 null,表示取不到有效值。
6202
6051
  :rtype: str
6203
6052
  """
6204
6053
  return self._Host
@@ -6210,7 +6059,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6210
6059
  @property
6211
6060
  def Path(self):
6212
6061
  """探测路径
6213
- 注意:此字段可能返回 null,表示取不到有效值。
6214
6062
  :rtype: str
6215
6063
  """
6216
6064
  return self._Path
@@ -6222,7 +6070,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6222
6070
  @property
6223
6071
  def ReturnCodeThreshold(self):
6224
6072
  """返回值阈值
6225
- 注意:此字段可能返回 null,表示取不到有效值。
6226
6073
  :rtype: int
6227
6074
  """
6228
6075
  return self._ReturnCodeThreshold
@@ -6234,7 +6081,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6234
6081
  @property
6235
6082
  def EnableRedirect(self):
6236
6083
  """是否开启3xx重定向跟随 ENABLED DISABLED
6237
- 注意:此字段可能返回 null,表示取不到有效值。
6238
6084
  :rtype: str
6239
6085
  """
6240
6086
  return self._EnableRedirect
@@ -6247,7 +6093,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6247
6093
  def EnableSni(self):
6248
6094
  """是否启用 sni
6249
6095
  ENABLED DISABLED
6250
- 注意:此字段可能返回 null,表示取不到有效值。
6251
6096
  :rtype: str
6252
6097
  """
6253
6098
  return self._EnableSni
@@ -6259,7 +6104,6 @@ ENABLED DISABLED
6259
6104
  @property
6260
6105
  def PacketLossRate(self):
6261
6106
  """丢包率上限
6262
- 注意:此字段可能返回 null,表示取不到有效值。
6263
6107
  :rtype: int
6264
6108
  """
6265
6109
  return self._PacketLossRate
@@ -6271,7 +6115,6 @@ ENABLED DISABLED
6271
6115
  @property
6272
6116
  def Timeout(self):
6273
6117
  """探测超时
6274
- 注意:此字段可能返回 null,表示取不到有效值。
6275
6118
  :rtype: int
6276
6119
  """
6277
6120
  return self._Timeout
@@ -6283,7 +6126,6 @@ ENABLED DISABLED
6283
6126
  @property
6284
6127
  def FailTimes(self):
6285
6128
  """失败次数
6286
- 注意:此字段可能返回 null,表示取不到有效值。
6287
6129
  :rtype: int
6288
6130
  """
6289
6131
  return self._FailTimes
@@ -6295,7 +6137,6 @@ ENABLED DISABLED
6295
6137
  @property
6296
6138
  def FailRate(self):
6297
6139
  """失败率上限100
6298
- 注意:此字段可能返回 null,表示取不到有效值。
6299
6140
  :rtype: int
6300
6141
  """
6301
6142
  return self._FailRate
@@ -6307,7 +6148,6 @@ ENABLED DISABLED
6307
6148
  @property
6308
6149
  def CreatedOn(self):
6309
6150
  """创建时间
6310
- 注意:此字段可能返回 null,表示取不到有效值。
6311
6151
  :rtype: str
6312
6152
  """
6313
6153
  return self._CreatedOn
@@ -6319,7 +6159,6 @@ ENABLED DISABLED
6319
6159
  @property
6320
6160
  def UpdatedOn(self):
6321
6161
  """更新时间
6322
- 注意:此字段可能返回 null,表示取不到有效值。
6323
6162
  :rtype: str
6324
6163
  """
6325
6164
  return self._UpdatedOn
@@ -6332,7 +6171,6 @@ ENABLED DISABLED
6332
6171
  def DetectorStyle(self):
6333
6172
  """监控节点类型
6334
6173
  AUTO INTERNAL OVERSEAS IPV6 ALL
6335
- 注意:此字段可能返回 null,表示取不到有效值。
6336
6174
  :rtype: str
6337
6175
  """
6338
6176
  return self._DetectorStyle
@@ -6344,7 +6182,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6344
6182
  @property
6345
6183
  def DetectNum(self):
6346
6184
  """探测次数
6347
- 注意:此字段可能返回 null,表示取不到有效值。
6348
6185
  :rtype: int
6349
6186
  """
6350
6187
  return self._DetectNum
@@ -6356,7 +6193,6 @@ AUTO INTERNAL OVERSEAS IPV6 ALL
6356
6193
  @property
6357
6194
  def ContinuePeriod(self):
6358
6195
  """持续周期数
6359
- 注意:此字段可能返回 null,表示取不到有效值。
6360
6196
  :rtype: int
6361
6197
  """
6362
6198
  return self._ContinuePeriod
@@ -6407,37 +6243,26 @@ class Quota(AbstractModel):
6407
6243
  def __init__(self):
6408
6244
  r"""
6409
6245
  :param _TaskQuota: 探测任务配额
6410
- 注意:此字段可能返回 null,表示取不到有效值。
6411
6246
  :type TaskQuota: int
6412
6247
  :param _PoolQuota: 地址池配额
6413
- 注意:此字段可能返回 null,表示取不到有效值。
6414
6248
  :type PoolQuota: int
6415
6249
  :param _AddressQuota: 地址配额
6416
- 注意:此字段可能返回 null,表示取不到有效值。
6417
6250
  :type AddressQuota: int
6418
6251
  :param _MonitorQuota: 探点资源数
6419
- 注意:此字段可能返回 null,表示取不到有效值。
6420
6252
  :type MonitorQuota: int
6421
6253
  :param _MessageQuota: 消息资源数
6422
- 注意:此字段可能返回 null,表示取不到有效值。
6423
6254
  :type MessageQuota: int
6424
6255
  :param _UsedTaskQuota: 已使用探测任务数
6425
- 注意:此字段可能返回 null,表示取不到有效值。
6426
6256
  :type UsedTaskQuota: int
6427
6257
  :param _UsedFreeInstanceNum: 已使用体验实例数
6428
- 注意:此字段可能返回 null,表示取不到有效值。
6429
6258
  :type UsedFreeInstanceNum: int
6430
6259
  :param _UsedBillInstanceNum: 已使用付费实例
6431
- 注意:此字段可能返回 null,表示取不到有效值。
6432
6260
  :type UsedBillInstanceNum: int
6433
6261
  :param _FreePackageNum: 体验套餐总数
6434
- 注意:此字段可能返回 null,表示取不到有效值。
6435
6262
  :type FreePackageNum: int
6436
6263
  :param _UsedBillPackageNum: 已使用付费套餐数
6437
- 注意:此字段可能返回 null,表示取不到有效值。
6438
6264
  :type UsedBillPackageNum: int
6439
6265
  :param _BillPackageNum: 付费套餐总数
6440
- 注意:此字段可能返回 null,表示取不到有效值。
6441
6266
  :type BillPackageNum: int
6442
6267
  """
6443
6268
  self._TaskQuota = None
@@ -6455,7 +6280,6 @@ class Quota(AbstractModel):
6455
6280
  @property
6456
6281
  def TaskQuota(self):
6457
6282
  """探测任务配额
6458
- 注意:此字段可能返回 null,表示取不到有效值。
6459
6283
  :rtype: int
6460
6284
  """
6461
6285
  return self._TaskQuota
@@ -6467,7 +6291,6 @@ class Quota(AbstractModel):
6467
6291
  @property
6468
6292
  def PoolQuota(self):
6469
6293
  """地址池配额
6470
- 注意:此字段可能返回 null,表示取不到有效值。
6471
6294
  :rtype: int
6472
6295
  """
6473
6296
  return self._PoolQuota
@@ -6479,7 +6302,6 @@ class Quota(AbstractModel):
6479
6302
  @property
6480
6303
  def AddressQuota(self):
6481
6304
  """地址配额
6482
- 注意:此字段可能返回 null,表示取不到有效值。
6483
6305
  :rtype: int
6484
6306
  """
6485
6307
  return self._AddressQuota
@@ -6491,7 +6313,6 @@ class Quota(AbstractModel):
6491
6313
  @property
6492
6314
  def MonitorQuota(self):
6493
6315
  """探点资源数
6494
- 注意:此字段可能返回 null,表示取不到有效值。
6495
6316
  :rtype: int
6496
6317
  """
6497
6318
  return self._MonitorQuota
@@ -6503,7 +6324,6 @@ class Quota(AbstractModel):
6503
6324
  @property
6504
6325
  def MessageQuota(self):
6505
6326
  """消息资源数
6506
- 注意:此字段可能返回 null,表示取不到有效值。
6507
6327
  :rtype: int
6508
6328
  """
6509
6329
  return self._MessageQuota
@@ -6515,7 +6335,6 @@ class Quota(AbstractModel):
6515
6335
  @property
6516
6336
  def UsedTaskQuota(self):
6517
6337
  """已使用探测任务数
6518
- 注意:此字段可能返回 null,表示取不到有效值。
6519
6338
  :rtype: int
6520
6339
  """
6521
6340
  return self._UsedTaskQuota
@@ -6527,7 +6346,6 @@ class Quota(AbstractModel):
6527
6346
  @property
6528
6347
  def UsedFreeInstanceNum(self):
6529
6348
  """已使用体验实例数
6530
- 注意:此字段可能返回 null,表示取不到有效值。
6531
6349
  :rtype: int
6532
6350
  """
6533
6351
  return self._UsedFreeInstanceNum
@@ -6539,7 +6357,6 @@ class Quota(AbstractModel):
6539
6357
  @property
6540
6358
  def UsedBillInstanceNum(self):
6541
6359
  """已使用付费实例
6542
- 注意:此字段可能返回 null,表示取不到有效值。
6543
6360
  :rtype: int
6544
6361
  """
6545
6362
  return self._UsedBillInstanceNum
@@ -6551,7 +6368,6 @@ class Quota(AbstractModel):
6551
6368
  @property
6552
6369
  def FreePackageNum(self):
6553
6370
  """体验套餐总数
6554
- 注意:此字段可能返回 null,表示取不到有效值。
6555
6371
  :rtype: int
6556
6372
  """
6557
6373
  return self._FreePackageNum
@@ -6563,7 +6379,6 @@ class Quota(AbstractModel):
6563
6379
  @property
6564
6380
  def UsedBillPackageNum(self):
6565
6381
  """已使用付费套餐数
6566
- 注意:此字段可能返回 null,表示取不到有效值。
6567
6382
  :rtype: int
6568
6383
  """
6569
6384
  return self._UsedBillPackageNum
@@ -6575,7 +6390,6 @@ class Quota(AbstractModel):
6575
6390
  @property
6576
6391
  def BillPackageNum(self):
6577
6392
  """付费套餐总数
6578
- 注意:此字段可能返回 null,表示取不到有效值。
6579
6393
  :rtype: int
6580
6394
  """
6581
6395
  return self._BillPackageNum
@@ -6691,7 +6505,6 @@ class Source(AbstractModel):
6691
6505
  :param _DnsLineId: 解析请求来源线路id
6692
6506
  :type DnsLineId: int
6693
6507
  :param _Name: 解析请求来源线路名
6694
- 注意:此字段可能返回 null,表示取不到有效值。
6695
6508
  :type Name: str
6696
6509
  """
6697
6510
  self._DnsLineId = None
@@ -6711,7 +6524,6 @@ class Source(AbstractModel):
6711
6524
  @property
6712
6525
  def Name(self):
6713
6526
  """解析请求来源线路名
6714
- 注意:此字段可能返回 null,表示取不到有效值。
6715
6527
  :rtype: str
6716
6528
  """
6717
6529
  return self._Name
@@ -6742,19 +6554,15 @@ class Strategy(AbstractModel):
6742
6554
  def __init__(self):
6743
6555
  r"""
6744
6556
  :param _InstanceId: 实例id
6745
- 注意:此字段可能返回 null,表示取不到有效值。
6746
6557
  :type InstanceId: str
6747
6558
  :param _Name: 策略名
6748
- 注意:此字段可能返回 null,表示取不到有效值。
6749
6559
  :type Name: str
6750
6560
  :param _Source: 地址来源
6751
6561
  注意:此字段可能返回 null,表示取不到有效值。
6752
6562
  :type Source: list of Source
6753
6563
  :param _StrategyId: 策略id
6754
- 注意:此字段可能返回 null,表示取不到有效值。
6755
6564
  :type StrategyId: int
6756
6565
  :param _Status: 健康状态:ok健康、warn风险、down故障
6757
- 注意:此字段可能返回 null,表示取不到有效值。
6758
6566
  :type Status: str
6759
6567
  :param _ActivateMainPoolId: 生效的主力池id,null则为未知
6760
6568
  注意:此字段可能返回 null,表示取不到有效值。
@@ -6763,28 +6571,20 @@ class Strategy(AbstractModel):
6763
6571
  注意:此字段可能返回 null,表示取不到有效值。
6764
6572
  :type ActivateLevel: int
6765
6573
  :param _ActivePoolType: 当前生效地址池集合类型:main主力;fallback兜底
6766
- 注意:此字段可能返回 null,表示取不到有效值。
6767
6574
  :type ActivePoolType: str
6768
6575
  :param _ActiveTrafficStrategy: 当前生效地址池流量策略:all解析所有;weight负载均衡
6769
- 注意:此字段可能返回 null,表示取不到有效值。
6770
6576
  :type ActiveTrafficStrategy: str
6771
6577
  :param _MonitorNum: 监控器数量
6772
- 注意:此字段可能返回 null,表示取不到有效值。
6773
6578
  :type MonitorNum: int
6774
6579
  :param _IsEnabled: 是否开启:ENABLED开启;DISABLED关闭
6775
- 注意:此字段可能返回 null,表示取不到有效值。
6776
6580
  :type IsEnabled: str
6777
6581
  :param _KeepDomainRecords: 是否保留线路:enabled保留,disabled不保留,只保留默认线路
6778
- 注意:此字段可能返回 null,表示取不到有效值。
6779
6582
  :type KeepDomainRecords: str
6780
6583
  :param _SwitchPoolType: 调度模式:AUTO默认;PAUSE仅暂停不切换
6781
- 注意:此字段可能返回 null,表示取不到有效值。
6782
6584
  :type SwitchPoolType: str
6783
6585
  :param _CreatedOn: 创建时间
6784
- 注意:此字段可能返回 null,表示取不到有效值。
6785
6586
  :type CreatedOn: str
6786
6587
  :param _UpdatedOn: 更新时间
6787
- 注意:此字段可能返回 null,表示取不到有效值。
6788
6588
  :type UpdatedOn: str
6789
6589
  """
6790
6590
  self._InstanceId = None
@@ -6806,7 +6606,6 @@ class Strategy(AbstractModel):
6806
6606
  @property
6807
6607
  def InstanceId(self):
6808
6608
  """实例id
6809
- 注意:此字段可能返回 null,表示取不到有效值。
6810
6609
  :rtype: str
6811
6610
  """
6812
6611
  return self._InstanceId
@@ -6818,7 +6617,6 @@ class Strategy(AbstractModel):
6818
6617
  @property
6819
6618
  def Name(self):
6820
6619
  """策略名
6821
- 注意:此字段可能返回 null,表示取不到有效值。
6822
6620
  :rtype: str
6823
6621
  """
6824
6622
  return self._Name
@@ -6842,7 +6640,6 @@ class Strategy(AbstractModel):
6842
6640
  @property
6843
6641
  def StrategyId(self):
6844
6642
  """策略id
6845
- 注意:此字段可能返回 null,表示取不到有效值。
6846
6643
  :rtype: int
6847
6644
  """
6848
6645
  return self._StrategyId
@@ -6854,7 +6651,6 @@ class Strategy(AbstractModel):
6854
6651
  @property
6855
6652
  def Status(self):
6856
6653
  """健康状态:ok健康、warn风险、down故障
6857
- 注意:此字段可能返回 null,表示取不到有效值。
6858
6654
  :rtype: str
6859
6655
  """
6860
6656
  return self._Status
@@ -6890,7 +6686,6 @@ class Strategy(AbstractModel):
6890
6686
  @property
6891
6687
  def ActivePoolType(self):
6892
6688
  """当前生效地址池集合类型:main主力;fallback兜底
6893
- 注意:此字段可能返回 null,表示取不到有效值。
6894
6689
  :rtype: str
6895
6690
  """
6896
6691
  return self._ActivePoolType
@@ -6902,7 +6697,6 @@ class Strategy(AbstractModel):
6902
6697
  @property
6903
6698
  def ActiveTrafficStrategy(self):
6904
6699
  """当前生效地址池流量策略:all解析所有;weight负载均衡
6905
- 注意:此字段可能返回 null,表示取不到有效值。
6906
6700
  :rtype: str
6907
6701
  """
6908
6702
  return self._ActiveTrafficStrategy
@@ -6914,7 +6708,6 @@ class Strategy(AbstractModel):
6914
6708
  @property
6915
6709
  def MonitorNum(self):
6916
6710
  """监控器数量
6917
- 注意:此字段可能返回 null,表示取不到有效值。
6918
6711
  :rtype: int
6919
6712
  """
6920
6713
  return self._MonitorNum
@@ -6926,7 +6719,6 @@ class Strategy(AbstractModel):
6926
6719
  @property
6927
6720
  def IsEnabled(self):
6928
6721
  """是否开启:ENABLED开启;DISABLED关闭
6929
- 注意:此字段可能返回 null,表示取不到有效值。
6930
6722
  :rtype: str
6931
6723
  """
6932
6724
  return self._IsEnabled
@@ -6938,7 +6730,6 @@ class Strategy(AbstractModel):
6938
6730
  @property
6939
6731
  def KeepDomainRecords(self):
6940
6732
  """是否保留线路:enabled保留,disabled不保留,只保留默认线路
6941
- 注意:此字段可能返回 null,表示取不到有效值。
6942
6733
  :rtype: str
6943
6734
  """
6944
6735
  return self._KeepDomainRecords
@@ -6950,7 +6741,6 @@ class Strategy(AbstractModel):
6950
6741
  @property
6951
6742
  def SwitchPoolType(self):
6952
6743
  """调度模式:AUTO默认;PAUSE仅暂停不切换
6953
- 注意:此字段可能返回 null,表示取不到有效值。
6954
6744
  :rtype: str
6955
6745
  """
6956
6746
  return self._SwitchPoolType
@@ -6962,7 +6752,6 @@ class Strategy(AbstractModel):
6962
6752
  @property
6963
6753
  def CreatedOn(self):
6964
6754
  """创建时间
6965
- 注意:此字段可能返回 null,表示取不到有效值。
6966
6755
  :rtype: str
6967
6756
  """
6968
6757
  return self._CreatedOn
@@ -6974,7 +6763,6 @@ class Strategy(AbstractModel):
6974
6763
  @property
6975
6764
  def UpdatedOn(self):
6976
6765
  """更新时间
6977
- 注意:此字段可能返回 null,表示取不到有效值。
6978
6766
  :rtype: str
6979
6767
  """
6980
6768
  return self._UpdatedOn
@@ -7023,13 +6811,10 @@ class StrategyDetail(AbstractModel):
7023
6811
  def __init__(self):
7024
6812
  r"""
7025
6813
  :param _InstanceId: 实例id
7026
- 注意:此字段可能返回 null,表示取不到有效值。
7027
6814
  :type InstanceId: str
7028
6815
  :param _StrategyId: 策略id
7029
- 注意:此字段可能返回 null,表示取不到有效值。
7030
6816
  :type StrategyId: int
7031
6817
  :param _Name: 策略名
7032
- 注意:此字段可能返回 null,表示取不到有效值。
7033
6818
  :type Name: str
7034
6819
  :param _Source: 线路
7035
6820
  注意:此字段可能返回 null,表示取不到有效值。
@@ -7041,19 +6826,15 @@ class StrategyDetail(AbstractModel):
7041
6826
  注意:此字段可能返回 null,表示取不到有效值。
7042
6827
  :type FallbackAddressPoolSet: list of MainAddressPool
7043
6828
  :param _KeepDomainRecords: 是否保留线路:enabled保留,disabled不保留,只保留默认线路
7044
- 注意:此字段可能返回 null,表示取不到有效值。
7045
6829
  :type KeepDomainRecords: str
7046
6830
  :param _ActivateMainPoolId: 生效主力地址池id
7047
6831
  注意:此字段可能返回 null,表示取不到有效值。
7048
6832
  :type ActivateMainPoolId: int
7049
6833
  :param _CreatedOn: 创建时间
7050
- 注意:此字段可能返回 null,表示取不到有效值。
7051
6834
  :type CreatedOn: str
7052
6835
  :param _UpdatedOn: 更新时间
7053
- 注意:此字段可能返回 null,表示取不到有效值。
7054
6836
  :type UpdatedOn: str
7055
6837
  :param _SwitchPoolType: 调度模式:AUTO默认;PAUSE仅暂停不切换
7056
- 注意:此字段可能返回 null,表示取不到有效值。
7057
6838
  :type SwitchPoolType: str
7058
6839
  """
7059
6840
  self._InstanceId = None
@@ -7071,7 +6852,6 @@ class StrategyDetail(AbstractModel):
7071
6852
  @property
7072
6853
  def InstanceId(self):
7073
6854
  """实例id
7074
- 注意:此字段可能返回 null,表示取不到有效值。
7075
6855
  :rtype: str
7076
6856
  """
7077
6857
  return self._InstanceId
@@ -7083,7 +6863,6 @@ class StrategyDetail(AbstractModel):
7083
6863
  @property
7084
6864
  def StrategyId(self):
7085
6865
  """策略id
7086
- 注意:此字段可能返回 null,表示取不到有效值。
7087
6866
  :rtype: int
7088
6867
  """
7089
6868
  return self._StrategyId
@@ -7095,7 +6874,6 @@ class StrategyDetail(AbstractModel):
7095
6874
  @property
7096
6875
  def Name(self):
7097
6876
  """策略名
7098
- 注意:此字段可能返回 null,表示取不到有效值。
7099
6877
  :rtype: str
7100
6878
  """
7101
6879
  return self._Name
@@ -7143,7 +6921,6 @@ class StrategyDetail(AbstractModel):
7143
6921
  @property
7144
6922
  def KeepDomainRecords(self):
7145
6923
  """是否保留线路:enabled保留,disabled不保留,只保留默认线路
7146
- 注意:此字段可能返回 null,表示取不到有效值。
7147
6924
  :rtype: str
7148
6925
  """
7149
6926
  return self._KeepDomainRecords
@@ -7167,7 +6944,6 @@ class StrategyDetail(AbstractModel):
7167
6944
  @property
7168
6945
  def CreatedOn(self):
7169
6946
  """创建时间
7170
- 注意:此字段可能返回 null,表示取不到有效值。
7171
6947
  :rtype: str
7172
6948
  """
7173
6949
  return self._CreatedOn
@@ -7179,7 +6955,6 @@ class StrategyDetail(AbstractModel):
7179
6955
  @property
7180
6956
  def UpdatedOn(self):
7181
6957
  """更新时间
7182
- 注意:此字段可能返回 null,表示取不到有效值。
7183
6958
  :rtype: str
7184
6959
  """
7185
6960
  return self._UpdatedOn
@@ -7191,7 +6966,6 @@ class StrategyDetail(AbstractModel):
7191
6966
  @property
7192
6967
  def SwitchPoolType(self):
7193
6968
  """调度模式:AUTO默认;PAUSE仅暂停不切换
7194
- 注意:此字段可能返回 null,表示取不到有效值。
7195
6969
  :rtype: str
7196
6970
  """
7197
6971
  return self._SwitchPoolType