tencentcloud-sdk-python 3.0.1425__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/aiart/v20221229/aiart_client.py +0 -27
- tencentcloud/aiart/v20221229/models.py +0 -203
- tencentcloud/ccc/v20200210/models.py +15 -0
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +98 -12
- tencentcloud/dbbrain/v20210527/models.py +60 -0
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +64 -0
- tencentcloud/gs/v20191118/models.py +49 -8
- tencentcloud/igtm/v20231024/models.py +2 -94
- tencentcloud/tsf/v20180326/errorcodes.py +1 -1
- tencentcloud/vod/v20180717/models.py +19 -4
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/RECORD +18 -18
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1425.dist-info → tencentcloud_sdk_python-3.0.1426.dist-info}/top_level.txt +0 -0
|
@@ -222,31 +222,23 @@ class AddressPool(AbstractModel):
|
|
|
222
222
|
def __init__(self):
|
|
223
223
|
r"""
|
|
224
224
|
:param _PoolId: 地址池 id
|
|
225
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
226
225
|
:type PoolId: int
|
|
227
226
|
:param _PoolName: 地址池名
|
|
228
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
229
227
|
:type PoolName: str
|
|
230
228
|
:param _AddrType: 地址池地址类型:IPV4、IPV6、DOMAIN
|
|
231
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
232
229
|
:type AddrType: str
|
|
233
230
|
:param _TrafficStrategy: 流量策略: WEIGHT负载均衡,ALL解析全部
|
|
234
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
235
231
|
:type TrafficStrategy: str
|
|
236
232
|
:param _MonitorId: 监控器id
|
|
237
233
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
238
234
|
:type MonitorId: int
|
|
239
235
|
:param _Status: OK正常,DOWN故障,WARN风险,UNKNOWN未知
|
|
240
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
241
236
|
:type Status: str
|
|
242
237
|
:param _AddressNum: 地址数
|
|
243
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
244
238
|
:type AddressNum: int
|
|
245
239
|
:param _MonitorGroupNum: 探点数
|
|
246
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
247
240
|
:type MonitorGroupNum: int
|
|
248
241
|
:param _MonitorTaskNum: 探测任务数
|
|
249
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
250
242
|
:type MonitorTaskNum: int
|
|
251
243
|
:param _InstanceInfo: 实例相关信息
|
|
252
244
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -255,10 +247,8 @@ class AddressPool(AbstractModel):
|
|
|
255
247
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
256
248
|
:type AddressSet: list of Address
|
|
257
249
|
:param _CreatedOn: 创建时间
|
|
258
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
259
250
|
:type CreatedOn: str
|
|
260
251
|
:param _UpdatedOn: 更新时间
|
|
261
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
262
252
|
:type UpdatedOn: str
|
|
263
253
|
"""
|
|
264
254
|
self._PoolId = None
|
|
@@ -278,7 +268,6 @@ class AddressPool(AbstractModel):
|
|
|
278
268
|
@property
|
|
279
269
|
def PoolId(self):
|
|
280
270
|
"""地址池 id
|
|
281
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
282
271
|
:rtype: int
|
|
283
272
|
"""
|
|
284
273
|
return self._PoolId
|
|
@@ -290,7 +279,6 @@ class AddressPool(AbstractModel):
|
|
|
290
279
|
@property
|
|
291
280
|
def PoolName(self):
|
|
292
281
|
"""地址池名
|
|
293
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
294
282
|
:rtype: str
|
|
295
283
|
"""
|
|
296
284
|
return self._PoolName
|
|
@@ -302,7 +290,6 @@ class AddressPool(AbstractModel):
|
|
|
302
290
|
@property
|
|
303
291
|
def AddrType(self):
|
|
304
292
|
"""地址池地址类型:IPV4、IPV6、DOMAIN
|
|
305
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
306
293
|
:rtype: str
|
|
307
294
|
"""
|
|
308
295
|
return self._AddrType
|
|
@@ -314,7 +301,6 @@ class AddressPool(AbstractModel):
|
|
|
314
301
|
@property
|
|
315
302
|
def TrafficStrategy(self):
|
|
316
303
|
"""流量策略: WEIGHT负载均衡,ALL解析全部
|
|
317
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
318
304
|
:rtype: str
|
|
319
305
|
"""
|
|
320
306
|
return self._TrafficStrategy
|
|
@@ -338,7 +324,6 @@ class AddressPool(AbstractModel):
|
|
|
338
324
|
@property
|
|
339
325
|
def Status(self):
|
|
340
326
|
"""OK正常,DOWN故障,WARN风险,UNKNOWN未知
|
|
341
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
342
327
|
:rtype: str
|
|
343
328
|
"""
|
|
344
329
|
return self._Status
|
|
@@ -350,7 +335,6 @@ class AddressPool(AbstractModel):
|
|
|
350
335
|
@property
|
|
351
336
|
def AddressNum(self):
|
|
352
337
|
"""地址数
|
|
353
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
354
338
|
:rtype: int
|
|
355
339
|
"""
|
|
356
340
|
return self._AddressNum
|
|
@@ -362,7 +346,6 @@ class AddressPool(AbstractModel):
|
|
|
362
346
|
@property
|
|
363
347
|
def MonitorGroupNum(self):
|
|
364
348
|
"""探点数
|
|
365
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
366
349
|
:rtype: int
|
|
367
350
|
"""
|
|
368
351
|
return self._MonitorGroupNum
|
|
@@ -374,7 +357,6 @@ class AddressPool(AbstractModel):
|
|
|
374
357
|
@property
|
|
375
358
|
def MonitorTaskNum(self):
|
|
376
359
|
"""探测任务数
|
|
377
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
378
360
|
:rtype: int
|
|
379
361
|
"""
|
|
380
362
|
return self._MonitorTaskNum
|
|
@@ -410,7 +392,6 @@ class AddressPool(AbstractModel):
|
|
|
410
392
|
@property
|
|
411
393
|
def CreatedOn(self):
|
|
412
394
|
"""创建时间
|
|
413
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
414
395
|
:rtype: str
|
|
415
396
|
"""
|
|
416
397
|
return self._CreatedOn
|
|
@@ -422,7 +403,6 @@ class AddressPool(AbstractModel):
|
|
|
422
403
|
@property
|
|
423
404
|
def UpdatedOn(self):
|
|
424
405
|
"""更新时间
|
|
425
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
426
406
|
:rtype: str
|
|
427
407
|
"""
|
|
428
408
|
return self._UpdatedOn
|
|
@@ -2117,7 +2097,7 @@ class DescribeDetectPackageDetailResponse(AbstractModel):
|
|
|
2117
2097
|
:type IsExpire: int
|
|
2118
2098
|
:param _Status: 状态 ENABLED: 正常 ISOLATED: 隔离 DESTROYED:销毁 REFUNDED:已退款
|
|
2119
2099
|
:type Status: str
|
|
2120
|
-
:param _AutoRenewFlag:
|
|
2100
|
+
:param _AutoRenewFlag: 是否自动续费:0否1是
|
|
2121
2101
|
:type AutoRenewFlag: int
|
|
2122
2102
|
:param _Remark: 备注
|
|
2123
2103
|
:type Remark: str
|
|
@@ -2220,7 +2200,7 @@ class DescribeDetectPackageDetailResponse(AbstractModel):
|
|
|
2220
2200
|
|
|
2221
2201
|
@property
|
|
2222
2202
|
def AutoRenewFlag(self):
|
|
2223
|
-
"""
|
|
2203
|
+
"""是否自动续费:0否1是
|
|
2224
2204
|
:rtype: int
|
|
2225
2205
|
"""
|
|
2226
2206
|
return self._AutoRenewFlag
|
|
@@ -2935,7 +2915,6 @@ class DescribeMonitorDetailResponse(AbstractModel):
|
|
|
2935
2915
|
def __init__(self):
|
|
2936
2916
|
r"""
|
|
2937
2917
|
:param _MonitorDetail: 探测规则
|
|
2938
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2939
2918
|
:type MonitorDetail: :class:`tencentcloud.igtm.v20231024.models.MonitorDetail`
|
|
2940
2919
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2941
2920
|
:type RequestId: str
|
|
@@ -2946,7 +2925,6 @@ class DescribeMonitorDetailResponse(AbstractModel):
|
|
|
2946
2925
|
@property
|
|
2947
2926
|
def MonitorDetail(self):
|
|
2948
2927
|
"""探测规则
|
|
2949
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2950
2928
|
:rtype: :class:`tencentcloud.igtm.v20231024.models.MonitorDetail`
|
|
2951
2929
|
"""
|
|
2952
2930
|
return self._MonitorDetail
|
|
@@ -3149,7 +3127,6 @@ class DescribeQuotasResponse(AbstractModel):
|
|
|
3149
3127
|
def __init__(self):
|
|
3150
3128
|
r"""
|
|
3151
3129
|
:param _Quotas: 配额id
|
|
3152
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3153
3130
|
:type Quotas: :class:`tencentcloud.igtm.v20231024.models.Quota`
|
|
3154
3131
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3155
3132
|
:type RequestId: str
|
|
@@ -3160,7 +3137,6 @@ class DescribeQuotasResponse(AbstractModel):
|
|
|
3160
3137
|
@property
|
|
3161
3138
|
def Quotas(self):
|
|
3162
3139
|
"""配额id
|
|
3163
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3164
3140
|
:rtype: :class:`tencentcloud.igtm.v20231024.models.Quota`
|
|
3165
3141
|
"""
|
|
3166
3142
|
return self._Quotas
|
|
@@ -4993,13 +4969,10 @@ class MainAddressPool(AbstractModel):
|
|
|
4993
4969
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4994
4970
|
:type AddressPools: list of MainPoolWeight
|
|
4995
4971
|
:param _MainAddressPoolId: 地址池集合id
|
|
4996
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
4997
4972
|
:type MainAddressPoolId: int
|
|
4998
4973
|
:param _MinSurviveNum: 切换阀值,不能大于主力集合内地址总数
|
|
4999
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5000
4974
|
:type MinSurviveNum: int
|
|
5001
4975
|
:param _TrafficStrategy: 切换策略:ALL解析所有地址;WEIGHT:负载均衡。当为ALL时,解析地址的权重值为1;当为WEIGHT时;权重为地址池权重*地址权重
|
|
5002
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5003
4976
|
:type TrafficStrategy: str
|
|
5004
4977
|
"""
|
|
5005
4978
|
self._AddressPools = None
|
|
@@ -5022,7 +4995,6 @@ class MainAddressPool(AbstractModel):
|
|
|
5022
4995
|
@property
|
|
5023
4996
|
def MainAddressPoolId(self):
|
|
5024
4997
|
"""地址池集合id
|
|
5025
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5026
4998
|
:rtype: int
|
|
5027
4999
|
"""
|
|
5028
5000
|
return self._MainAddressPoolId
|
|
@@ -5034,7 +5006,6 @@ class MainAddressPool(AbstractModel):
|
|
|
5034
5006
|
@property
|
|
5035
5007
|
def MinSurviveNum(self):
|
|
5036
5008
|
"""切换阀值,不能大于主力集合内地址总数
|
|
5037
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5038
5009
|
:rtype: int
|
|
5039
5010
|
"""
|
|
5040
5011
|
return self._MinSurviveNum
|
|
@@ -5046,7 +5017,6 @@ class MainAddressPool(AbstractModel):
|
|
|
5046
5017
|
@property
|
|
5047
5018
|
def TrafficStrategy(self):
|
|
5048
5019
|
"""切换策略:ALL解析所有地址;WEIGHT:负载均衡。当为ALL时,解析地址的权重值为1;当为WEIGHT时;权重为地址池权重*地址权重
|
|
5049
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
5050
5020
|
:rtype: str
|
|
5051
5021
|
"""
|
|
5052
5022
|
return self._TrafficStrategy
|
|
@@ -6273,37 +6243,26 @@ class Quota(AbstractModel):
|
|
|
6273
6243
|
def __init__(self):
|
|
6274
6244
|
r"""
|
|
6275
6245
|
:param _TaskQuota: 探测任务配额
|
|
6276
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6277
6246
|
:type TaskQuota: int
|
|
6278
6247
|
:param _PoolQuota: 地址池配额
|
|
6279
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6280
6248
|
:type PoolQuota: int
|
|
6281
6249
|
:param _AddressQuota: 地址配额
|
|
6282
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6283
6250
|
:type AddressQuota: int
|
|
6284
6251
|
:param _MonitorQuota: 探点资源数
|
|
6285
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6286
6252
|
:type MonitorQuota: int
|
|
6287
6253
|
:param _MessageQuota: 消息资源数
|
|
6288
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6289
6254
|
:type MessageQuota: int
|
|
6290
6255
|
:param _UsedTaskQuota: 已使用探测任务数
|
|
6291
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6292
6256
|
:type UsedTaskQuota: int
|
|
6293
6257
|
:param _UsedFreeInstanceNum: 已使用体验实例数
|
|
6294
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6295
6258
|
:type UsedFreeInstanceNum: int
|
|
6296
6259
|
:param _UsedBillInstanceNum: 已使用付费实例
|
|
6297
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6298
6260
|
:type UsedBillInstanceNum: int
|
|
6299
6261
|
:param _FreePackageNum: 体验套餐总数
|
|
6300
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6301
6262
|
:type FreePackageNum: int
|
|
6302
6263
|
:param _UsedBillPackageNum: 已使用付费套餐数
|
|
6303
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6304
6264
|
:type UsedBillPackageNum: int
|
|
6305
6265
|
:param _BillPackageNum: 付费套餐总数
|
|
6306
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6307
6266
|
:type BillPackageNum: int
|
|
6308
6267
|
"""
|
|
6309
6268
|
self._TaskQuota = None
|
|
@@ -6321,7 +6280,6 @@ class Quota(AbstractModel):
|
|
|
6321
6280
|
@property
|
|
6322
6281
|
def TaskQuota(self):
|
|
6323
6282
|
"""探测任务配额
|
|
6324
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6325
6283
|
:rtype: int
|
|
6326
6284
|
"""
|
|
6327
6285
|
return self._TaskQuota
|
|
@@ -6333,7 +6291,6 @@ class Quota(AbstractModel):
|
|
|
6333
6291
|
@property
|
|
6334
6292
|
def PoolQuota(self):
|
|
6335
6293
|
"""地址池配额
|
|
6336
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6337
6294
|
:rtype: int
|
|
6338
6295
|
"""
|
|
6339
6296
|
return self._PoolQuota
|
|
@@ -6345,7 +6302,6 @@ class Quota(AbstractModel):
|
|
|
6345
6302
|
@property
|
|
6346
6303
|
def AddressQuota(self):
|
|
6347
6304
|
"""地址配额
|
|
6348
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6349
6305
|
:rtype: int
|
|
6350
6306
|
"""
|
|
6351
6307
|
return self._AddressQuota
|
|
@@ -6357,7 +6313,6 @@ class Quota(AbstractModel):
|
|
|
6357
6313
|
@property
|
|
6358
6314
|
def MonitorQuota(self):
|
|
6359
6315
|
"""探点资源数
|
|
6360
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6361
6316
|
:rtype: int
|
|
6362
6317
|
"""
|
|
6363
6318
|
return self._MonitorQuota
|
|
@@ -6369,7 +6324,6 @@ class Quota(AbstractModel):
|
|
|
6369
6324
|
@property
|
|
6370
6325
|
def MessageQuota(self):
|
|
6371
6326
|
"""消息资源数
|
|
6372
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6373
6327
|
:rtype: int
|
|
6374
6328
|
"""
|
|
6375
6329
|
return self._MessageQuota
|
|
@@ -6381,7 +6335,6 @@ class Quota(AbstractModel):
|
|
|
6381
6335
|
@property
|
|
6382
6336
|
def UsedTaskQuota(self):
|
|
6383
6337
|
"""已使用探测任务数
|
|
6384
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6385
6338
|
:rtype: int
|
|
6386
6339
|
"""
|
|
6387
6340
|
return self._UsedTaskQuota
|
|
@@ -6393,7 +6346,6 @@ class Quota(AbstractModel):
|
|
|
6393
6346
|
@property
|
|
6394
6347
|
def UsedFreeInstanceNum(self):
|
|
6395
6348
|
"""已使用体验实例数
|
|
6396
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6397
6349
|
:rtype: int
|
|
6398
6350
|
"""
|
|
6399
6351
|
return self._UsedFreeInstanceNum
|
|
@@ -6405,7 +6357,6 @@ class Quota(AbstractModel):
|
|
|
6405
6357
|
@property
|
|
6406
6358
|
def UsedBillInstanceNum(self):
|
|
6407
6359
|
"""已使用付费实例
|
|
6408
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6409
6360
|
:rtype: int
|
|
6410
6361
|
"""
|
|
6411
6362
|
return self._UsedBillInstanceNum
|
|
@@ -6417,7 +6368,6 @@ class Quota(AbstractModel):
|
|
|
6417
6368
|
@property
|
|
6418
6369
|
def FreePackageNum(self):
|
|
6419
6370
|
"""体验套餐总数
|
|
6420
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6421
6371
|
:rtype: int
|
|
6422
6372
|
"""
|
|
6423
6373
|
return self._FreePackageNum
|
|
@@ -6429,7 +6379,6 @@ class Quota(AbstractModel):
|
|
|
6429
6379
|
@property
|
|
6430
6380
|
def UsedBillPackageNum(self):
|
|
6431
6381
|
"""已使用付费套餐数
|
|
6432
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6433
6382
|
:rtype: int
|
|
6434
6383
|
"""
|
|
6435
6384
|
return self._UsedBillPackageNum
|
|
@@ -6441,7 +6390,6 @@ class Quota(AbstractModel):
|
|
|
6441
6390
|
@property
|
|
6442
6391
|
def BillPackageNum(self):
|
|
6443
6392
|
"""付费套餐总数
|
|
6444
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6445
6393
|
:rtype: int
|
|
6446
6394
|
"""
|
|
6447
6395
|
return self._BillPackageNum
|
|
@@ -6557,7 +6505,6 @@ class Source(AbstractModel):
|
|
|
6557
6505
|
:param _DnsLineId: 解析请求来源线路id
|
|
6558
6506
|
:type DnsLineId: int
|
|
6559
6507
|
:param _Name: 解析请求来源线路名
|
|
6560
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6561
6508
|
:type Name: str
|
|
6562
6509
|
"""
|
|
6563
6510
|
self._DnsLineId = None
|
|
@@ -6577,7 +6524,6 @@ class Source(AbstractModel):
|
|
|
6577
6524
|
@property
|
|
6578
6525
|
def Name(self):
|
|
6579
6526
|
"""解析请求来源线路名
|
|
6580
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6581
6527
|
:rtype: str
|
|
6582
6528
|
"""
|
|
6583
6529
|
return self._Name
|
|
@@ -6608,19 +6554,15 @@ class Strategy(AbstractModel):
|
|
|
6608
6554
|
def __init__(self):
|
|
6609
6555
|
r"""
|
|
6610
6556
|
:param _InstanceId: 实例id
|
|
6611
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6612
6557
|
:type InstanceId: str
|
|
6613
6558
|
:param _Name: 策略名
|
|
6614
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6615
6559
|
:type Name: str
|
|
6616
6560
|
:param _Source: 地址来源
|
|
6617
6561
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6618
6562
|
:type Source: list of Source
|
|
6619
6563
|
:param _StrategyId: 策略id
|
|
6620
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6621
6564
|
:type StrategyId: int
|
|
6622
6565
|
:param _Status: 健康状态:ok健康、warn风险、down故障
|
|
6623
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6624
6566
|
:type Status: str
|
|
6625
6567
|
:param _ActivateMainPoolId: 生效的主力池id,null则为未知
|
|
6626
6568
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -6629,28 +6571,20 @@ class Strategy(AbstractModel):
|
|
|
6629
6571
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6630
6572
|
:type ActivateLevel: int
|
|
6631
6573
|
:param _ActivePoolType: 当前生效地址池集合类型:main主力;fallback兜底
|
|
6632
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6633
6574
|
:type ActivePoolType: str
|
|
6634
6575
|
:param _ActiveTrafficStrategy: 当前生效地址池流量策略:all解析所有;weight负载均衡
|
|
6635
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6636
6576
|
:type ActiveTrafficStrategy: str
|
|
6637
6577
|
:param _MonitorNum: 监控器数量
|
|
6638
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6639
6578
|
:type MonitorNum: int
|
|
6640
6579
|
:param _IsEnabled: 是否开启:ENABLED开启;DISABLED关闭
|
|
6641
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6642
6580
|
:type IsEnabled: str
|
|
6643
6581
|
:param _KeepDomainRecords: 是否保留线路:enabled保留,disabled不保留,只保留默认线路
|
|
6644
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6645
6582
|
:type KeepDomainRecords: str
|
|
6646
6583
|
:param _SwitchPoolType: 调度模式:AUTO默认;PAUSE仅暂停不切换
|
|
6647
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6648
6584
|
:type SwitchPoolType: str
|
|
6649
6585
|
:param _CreatedOn: 创建时间
|
|
6650
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6651
6586
|
:type CreatedOn: str
|
|
6652
6587
|
:param _UpdatedOn: 更新时间
|
|
6653
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6654
6588
|
:type UpdatedOn: str
|
|
6655
6589
|
"""
|
|
6656
6590
|
self._InstanceId = None
|
|
@@ -6672,7 +6606,6 @@ class Strategy(AbstractModel):
|
|
|
6672
6606
|
@property
|
|
6673
6607
|
def InstanceId(self):
|
|
6674
6608
|
"""实例id
|
|
6675
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6676
6609
|
:rtype: str
|
|
6677
6610
|
"""
|
|
6678
6611
|
return self._InstanceId
|
|
@@ -6684,7 +6617,6 @@ class Strategy(AbstractModel):
|
|
|
6684
6617
|
@property
|
|
6685
6618
|
def Name(self):
|
|
6686
6619
|
"""策略名
|
|
6687
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6688
6620
|
:rtype: str
|
|
6689
6621
|
"""
|
|
6690
6622
|
return self._Name
|
|
@@ -6708,7 +6640,6 @@ class Strategy(AbstractModel):
|
|
|
6708
6640
|
@property
|
|
6709
6641
|
def StrategyId(self):
|
|
6710
6642
|
"""策略id
|
|
6711
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6712
6643
|
:rtype: int
|
|
6713
6644
|
"""
|
|
6714
6645
|
return self._StrategyId
|
|
@@ -6720,7 +6651,6 @@ class Strategy(AbstractModel):
|
|
|
6720
6651
|
@property
|
|
6721
6652
|
def Status(self):
|
|
6722
6653
|
"""健康状态:ok健康、warn风险、down故障
|
|
6723
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6724
6654
|
:rtype: str
|
|
6725
6655
|
"""
|
|
6726
6656
|
return self._Status
|
|
@@ -6756,7 +6686,6 @@ class Strategy(AbstractModel):
|
|
|
6756
6686
|
@property
|
|
6757
6687
|
def ActivePoolType(self):
|
|
6758
6688
|
"""当前生效地址池集合类型:main主力;fallback兜底
|
|
6759
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6760
6689
|
:rtype: str
|
|
6761
6690
|
"""
|
|
6762
6691
|
return self._ActivePoolType
|
|
@@ -6768,7 +6697,6 @@ class Strategy(AbstractModel):
|
|
|
6768
6697
|
@property
|
|
6769
6698
|
def ActiveTrafficStrategy(self):
|
|
6770
6699
|
"""当前生效地址池流量策略:all解析所有;weight负载均衡
|
|
6771
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6772
6700
|
:rtype: str
|
|
6773
6701
|
"""
|
|
6774
6702
|
return self._ActiveTrafficStrategy
|
|
@@ -6780,7 +6708,6 @@ class Strategy(AbstractModel):
|
|
|
6780
6708
|
@property
|
|
6781
6709
|
def MonitorNum(self):
|
|
6782
6710
|
"""监控器数量
|
|
6783
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6784
6711
|
:rtype: int
|
|
6785
6712
|
"""
|
|
6786
6713
|
return self._MonitorNum
|
|
@@ -6792,7 +6719,6 @@ class Strategy(AbstractModel):
|
|
|
6792
6719
|
@property
|
|
6793
6720
|
def IsEnabled(self):
|
|
6794
6721
|
"""是否开启:ENABLED开启;DISABLED关闭
|
|
6795
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6796
6722
|
:rtype: str
|
|
6797
6723
|
"""
|
|
6798
6724
|
return self._IsEnabled
|
|
@@ -6804,7 +6730,6 @@ class Strategy(AbstractModel):
|
|
|
6804
6730
|
@property
|
|
6805
6731
|
def KeepDomainRecords(self):
|
|
6806
6732
|
"""是否保留线路:enabled保留,disabled不保留,只保留默认线路
|
|
6807
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6808
6733
|
:rtype: str
|
|
6809
6734
|
"""
|
|
6810
6735
|
return self._KeepDomainRecords
|
|
@@ -6816,7 +6741,6 @@ class Strategy(AbstractModel):
|
|
|
6816
6741
|
@property
|
|
6817
6742
|
def SwitchPoolType(self):
|
|
6818
6743
|
"""调度模式:AUTO默认;PAUSE仅暂停不切换
|
|
6819
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6820
6744
|
:rtype: str
|
|
6821
6745
|
"""
|
|
6822
6746
|
return self._SwitchPoolType
|
|
@@ -6828,7 +6752,6 @@ class Strategy(AbstractModel):
|
|
|
6828
6752
|
@property
|
|
6829
6753
|
def CreatedOn(self):
|
|
6830
6754
|
"""创建时间
|
|
6831
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6832
6755
|
:rtype: str
|
|
6833
6756
|
"""
|
|
6834
6757
|
return self._CreatedOn
|
|
@@ -6840,7 +6763,6 @@ class Strategy(AbstractModel):
|
|
|
6840
6763
|
@property
|
|
6841
6764
|
def UpdatedOn(self):
|
|
6842
6765
|
"""更新时间
|
|
6843
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6844
6766
|
:rtype: str
|
|
6845
6767
|
"""
|
|
6846
6768
|
return self._UpdatedOn
|
|
@@ -6889,13 +6811,10 @@ class StrategyDetail(AbstractModel):
|
|
|
6889
6811
|
def __init__(self):
|
|
6890
6812
|
r"""
|
|
6891
6813
|
:param _InstanceId: 实例id
|
|
6892
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6893
6814
|
:type InstanceId: str
|
|
6894
6815
|
:param _StrategyId: 策略id
|
|
6895
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6896
6816
|
:type StrategyId: int
|
|
6897
6817
|
:param _Name: 策略名
|
|
6898
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6899
6818
|
:type Name: str
|
|
6900
6819
|
:param _Source: 线路
|
|
6901
6820
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -6907,19 +6826,15 @@ class StrategyDetail(AbstractModel):
|
|
|
6907
6826
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6908
6827
|
:type FallbackAddressPoolSet: list of MainAddressPool
|
|
6909
6828
|
:param _KeepDomainRecords: 是否保留线路:enabled保留,disabled不保留,只保留默认线路
|
|
6910
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6911
6829
|
:type KeepDomainRecords: str
|
|
6912
6830
|
:param _ActivateMainPoolId: 生效主力地址池id
|
|
6913
6831
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6914
6832
|
:type ActivateMainPoolId: int
|
|
6915
6833
|
:param _CreatedOn: 创建时间
|
|
6916
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6917
6834
|
:type CreatedOn: str
|
|
6918
6835
|
:param _UpdatedOn: 更新时间
|
|
6919
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6920
6836
|
:type UpdatedOn: str
|
|
6921
6837
|
:param _SwitchPoolType: 调度模式:AUTO默认;PAUSE仅暂停不切换
|
|
6922
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6923
6838
|
:type SwitchPoolType: str
|
|
6924
6839
|
"""
|
|
6925
6840
|
self._InstanceId = None
|
|
@@ -6937,7 +6852,6 @@ class StrategyDetail(AbstractModel):
|
|
|
6937
6852
|
@property
|
|
6938
6853
|
def InstanceId(self):
|
|
6939
6854
|
"""实例id
|
|
6940
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6941
6855
|
:rtype: str
|
|
6942
6856
|
"""
|
|
6943
6857
|
return self._InstanceId
|
|
@@ -6949,7 +6863,6 @@ class StrategyDetail(AbstractModel):
|
|
|
6949
6863
|
@property
|
|
6950
6864
|
def StrategyId(self):
|
|
6951
6865
|
"""策略id
|
|
6952
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6953
6866
|
:rtype: int
|
|
6954
6867
|
"""
|
|
6955
6868
|
return self._StrategyId
|
|
@@ -6961,7 +6874,6 @@ class StrategyDetail(AbstractModel):
|
|
|
6961
6874
|
@property
|
|
6962
6875
|
def Name(self):
|
|
6963
6876
|
"""策略名
|
|
6964
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
6965
6877
|
:rtype: str
|
|
6966
6878
|
"""
|
|
6967
6879
|
return self._Name
|
|
@@ -7009,7 +6921,6 @@ class StrategyDetail(AbstractModel):
|
|
|
7009
6921
|
@property
|
|
7010
6922
|
def KeepDomainRecords(self):
|
|
7011
6923
|
"""是否保留线路:enabled保留,disabled不保留,只保留默认线路
|
|
7012
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7013
6924
|
:rtype: str
|
|
7014
6925
|
"""
|
|
7015
6926
|
return self._KeepDomainRecords
|
|
@@ -7033,7 +6944,6 @@ class StrategyDetail(AbstractModel):
|
|
|
7033
6944
|
@property
|
|
7034
6945
|
def CreatedOn(self):
|
|
7035
6946
|
"""创建时间
|
|
7036
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7037
6947
|
:rtype: str
|
|
7038
6948
|
"""
|
|
7039
6949
|
return self._CreatedOn
|
|
@@ -7045,7 +6955,6 @@ class StrategyDetail(AbstractModel):
|
|
|
7045
6955
|
@property
|
|
7046
6956
|
def UpdatedOn(self):
|
|
7047
6957
|
"""更新时间
|
|
7048
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7049
6958
|
:rtype: str
|
|
7050
6959
|
"""
|
|
7051
6960
|
return self._UpdatedOn
|
|
@@ -7057,7 +6966,6 @@ class StrategyDetail(AbstractModel):
|
|
|
7057
6966
|
@property
|
|
7058
6967
|
def SwitchPoolType(self):
|
|
7059
6968
|
"""调度模式:AUTO默认;PAUSE仅暂停不切换
|
|
7060
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
7061
6969
|
:rtype: str
|
|
7062
6970
|
"""
|
|
7063
6971
|
return self._SwitchPoolType
|
|
@@ -92,7 +92,7 @@ FAILEDOPERATION_CONTAINERGROUPGROUPHASSTOP = 'FailedOperation.ContainergroupGrou
|
|
|
92
92
|
# 调用 kube-api-server 失败。
|
|
93
93
|
FAILEDOPERATION_CONTAINERGROUPKUBERNETEAPIINVOKEERROR = 'FailedOperation.ContainergroupKuberneteApiInvokeError'
|
|
94
94
|
|
|
95
|
-
# 连接 kube-api-
|
|
95
|
+
# 连接 kube-api-server 失败。
|
|
96
96
|
FAILEDOPERATION_CONTAINERGROUPKUBERNETECONNECTERROR = 'FailedOperation.ContainergroupKuberneteConnectError'
|
|
97
97
|
|
|
98
98
|
# 调用 kube-api-server 失败。
|
|
@@ -37851,10 +37851,12 @@ class HandleCurrentPlaylistRequest(AbstractModel):
|
|
|
37851
37851
|
:type SubAppId: int
|
|
37852
37852
|
:param _RoundPlayId: 轮播播单唯一标识。
|
|
37853
37853
|
:type RoundPlayId: str
|
|
37854
|
-
:param _Operation: 操作类型,取值有:<li>Insert
|
|
37854
|
+
:param _Operation: 操作类型,取值有:<li>Insert:向当前播放列表插入节目。插入的节目在后续轮播过程仍然有效。</li> <li>InsertTemporary:向当前播放列表临时插入节目。临时插入的节目只在本次轮播过程生效。</li><li>Delete:删除播放列表中的节目。不能删除正在播放的节目。</li>
|
|
37855
37855
|
:type Operation: str
|
|
37856
|
-
:param _ItemId: 播单节目 ID
|
|
37856
|
+
:param _ItemId: 播单节目 ID。 <li>当 Operation 为 Insert 时,该字段必填,表示插入的节目列表位于该节目之后。</li> <li>当 Operation 为 InsertTemporary 时,该字段选填,不填时表示插入节目到最近的一个插入点上。当该字段填写时,如果同时填写 SegmentIndex,表示节目被插入到 ItemId 对应节目的第 SegmentIndex 分片后面,否则插入到该节目之后。</li> <li>当 Operation 为 Delete 时,该字段必填,表示删除该节目。不能删除正在播放的节目。</li>
|
|
37857
37857
|
:type ItemId: str
|
|
37858
|
+
:param _SegmentIndex: M3U8 文件分片的索引号。M3U8 文件第一个分片的 SegmentIndex 为0。当 Operation 为 InsertTemporary 且 ItemId 有值时该参数有效。
|
|
37859
|
+
:type SegmentIndex: int
|
|
37858
37860
|
:param _RoundPlaylist: 节目列表。当 Operation 为 Insert、InsertTemporary、Delete 时必填,表示要操作的节目列表。列表长度最大为10。
|
|
37859
37861
|
:type RoundPlaylist: list of RoundPlayListItemInfo
|
|
37860
37862
|
"""
|
|
@@ -37862,6 +37864,7 @@ class HandleCurrentPlaylistRequest(AbstractModel):
|
|
|
37862
37864
|
self._RoundPlayId = None
|
|
37863
37865
|
self._Operation = None
|
|
37864
37866
|
self._ItemId = None
|
|
37867
|
+
self._SegmentIndex = None
|
|
37865
37868
|
self._RoundPlaylist = None
|
|
37866
37869
|
|
|
37867
37870
|
@property
|
|
@@ -37888,7 +37891,7 @@ class HandleCurrentPlaylistRequest(AbstractModel):
|
|
|
37888
37891
|
|
|
37889
37892
|
@property
|
|
37890
37893
|
def Operation(self):
|
|
37891
|
-
"""操作类型,取值有:<li>Insert
|
|
37894
|
+
"""操作类型,取值有:<li>Insert:向当前播放列表插入节目。插入的节目在后续轮播过程仍然有效。</li> <li>InsertTemporary:向当前播放列表临时插入节目。临时插入的节目只在本次轮播过程生效。</li><li>Delete:删除播放列表中的节目。不能删除正在播放的节目。</li>
|
|
37892
37895
|
:rtype: str
|
|
37893
37896
|
"""
|
|
37894
37897
|
return self._Operation
|
|
@@ -37899,7 +37902,7 @@ class HandleCurrentPlaylistRequest(AbstractModel):
|
|
|
37899
37902
|
|
|
37900
37903
|
@property
|
|
37901
37904
|
def ItemId(self):
|
|
37902
|
-
"""播单节目 ID
|
|
37905
|
+
"""播单节目 ID。 <li>当 Operation 为 Insert 时,该字段必填,表示插入的节目列表位于该节目之后。</li> <li>当 Operation 为 InsertTemporary 时,该字段选填,不填时表示插入节目到最近的一个插入点上。当该字段填写时,如果同时填写 SegmentIndex,表示节目被插入到 ItemId 对应节目的第 SegmentIndex 分片后面,否则插入到该节目之后。</li> <li>当 Operation 为 Delete 时,该字段必填,表示删除该节目。不能删除正在播放的节目。</li>
|
|
37903
37906
|
:rtype: str
|
|
37904
37907
|
"""
|
|
37905
37908
|
return self._ItemId
|
|
@@ -37908,6 +37911,17 @@ class HandleCurrentPlaylistRequest(AbstractModel):
|
|
|
37908
37911
|
def ItemId(self, ItemId):
|
|
37909
37912
|
self._ItemId = ItemId
|
|
37910
37913
|
|
|
37914
|
+
@property
|
|
37915
|
+
def SegmentIndex(self):
|
|
37916
|
+
"""M3U8 文件分片的索引号。M3U8 文件第一个分片的 SegmentIndex 为0。当 Operation 为 InsertTemporary 且 ItemId 有值时该参数有效。
|
|
37917
|
+
:rtype: int
|
|
37918
|
+
"""
|
|
37919
|
+
return self._SegmentIndex
|
|
37920
|
+
|
|
37921
|
+
@SegmentIndex.setter
|
|
37922
|
+
def SegmentIndex(self, SegmentIndex):
|
|
37923
|
+
self._SegmentIndex = SegmentIndex
|
|
37924
|
+
|
|
37911
37925
|
@property
|
|
37912
37926
|
def RoundPlaylist(self):
|
|
37913
37927
|
"""节目列表。当 Operation 为 Insert、InsertTemporary、Delete 时必填,表示要操作的节目列表。列表长度最大为10。
|
|
@@ -37925,6 +37939,7 @@ class HandleCurrentPlaylistRequest(AbstractModel):
|
|
|
37925
37939
|
self._RoundPlayId = params.get("RoundPlayId")
|
|
37926
37940
|
self._Operation = params.get("Operation")
|
|
37927
37941
|
self._ItemId = params.get("ItemId")
|
|
37942
|
+
self._SegmentIndex = params.get("SegmentIndex")
|
|
37928
37943
|
if params.get("RoundPlaylist") is not None:
|
|
37929
37944
|
self._RoundPlaylist = []
|
|
37930
37945
|
for item in params.get("RoundPlaylist"):
|