tencentcloud-sdk-python 3.0.1352__py2.py3-none-any.whl → 3.0.1353__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/batch/v20170312/batch_client.py +0 -46
- tencentcloud/batch/v20170312/errorcodes.py +0 -9
- tencentcloud/batch/v20170312/models.py +21 -962
- tencentcloud/bi/v20220105/models.py +145 -0
- tencentcloud/cam/v20190116/errorcodes.py +3 -0
- tencentcloud/cam/v20190116/models.py +0 -82
- tencentcloud/cbs/v20170312/models.py +6 -14
- tencentcloud/cdn/v20180606/models.py +0 -46
- tencentcloud/chdfs/v20201112/models.py +2 -2
- tencentcloud/controlcenter/v20230110/models.py +0 -58
- tencentcloud/dbbrain/v20191016/dbbrain_client.py +23 -0
- tencentcloud/dbbrain/v20191016/models.py +375 -0
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +46 -0
- tencentcloud/dbbrain/v20210527/models.py +701 -26
- tencentcloud/dcdb/v20180411/models.py +175 -2
- tencentcloud/dnspod/v20210323/models.py +0 -70
- tencentcloud/facefusion/v20220927/models.py +4 -2
- tencentcloud/gs/v20191118/models.py +16 -4
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
- tencentcloud/iotexplorer/v20190423/models.py +49 -412
- tencentcloud/lkeap/v20240522/models.py +12 -6
- tencentcloud/mariadb/v20170312/models.py +151 -2
- tencentcloud/mps/v20190612/models.py +2 -2
- tencentcloud/mqtt/v20240516/models.py +8 -2
- tencentcloud/ocr/v20181119/errorcodes.py +0 -3
- tencentcloud/ocr/v20181119/models.py +0 -558
- tencentcloud/ocr/v20181119/ocr_client.py +0 -23
- tencentcloud/organization/v20210331/models.py +15 -0
- tencentcloud/sqlserver/v20180328/models.py +15 -0
- tencentcloud/tcb/v20180608/models.py +20 -0
- tencentcloud/teo/v20220106/teo_client.py +6 -2
- tencentcloud/tione/v20211111/models.py +35 -3
- tencentcloud/tse/v20201207/models.py +0 -34
- tencentcloud/vod/v20240718/models.py +0 -2
- tencentcloud/vpc/v20170312/models.py +300 -0
- tencentcloud/vpc/v20170312/vpc_client.py +26 -0
- tencentcloud/wedata/v20210820/models.py +17 -0
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/RECORD +43 -43
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1352.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/top_level.txt +0 -0
@@ -18363,6 +18363,8 @@ class GatewayItem(AbstractModel):
|
|
18363
18363
|
:type LongAccessId: str
|
18364
18364
|
:param _AccessDomain: Donut接入域名
|
18365
18365
|
:type AccessDomain: str
|
18366
|
+
:param _Tags: 标签键值对
|
18367
|
+
:type Tags: list of Tag
|
18366
18368
|
"""
|
18367
18369
|
self._Uin = None
|
18368
18370
|
self._AppId = None
|
@@ -18390,6 +18392,7 @@ class GatewayItem(AbstractModel):
|
|
18390
18392
|
self._VersionNumLimit = None
|
18391
18393
|
self._LongAccessId = None
|
18392
18394
|
self._AccessDomain = None
|
18395
|
+
self._Tags = None
|
18393
18396
|
|
18394
18397
|
@property
|
18395
18398
|
def Uin(self):
|
@@ -18677,6 +18680,17 @@ class GatewayItem(AbstractModel):
|
|
18677
18680
|
def AccessDomain(self, AccessDomain):
|
18678
18681
|
self._AccessDomain = AccessDomain
|
18679
18682
|
|
18683
|
+
@property
|
18684
|
+
def Tags(self):
|
18685
|
+
"""标签键值对
|
18686
|
+
:rtype: list of Tag
|
18687
|
+
"""
|
18688
|
+
return self._Tags
|
18689
|
+
|
18690
|
+
@Tags.setter
|
18691
|
+
def Tags(self, Tags):
|
18692
|
+
self._Tags = Tags
|
18693
|
+
|
18680
18694
|
|
18681
18695
|
def _deserialize(self, params):
|
18682
18696
|
self._Uin = params.get("Uin")
|
@@ -18705,6 +18719,12 @@ class GatewayItem(AbstractModel):
|
|
18705
18719
|
self._VersionNumLimit = params.get("VersionNumLimit")
|
18706
18720
|
self._LongAccessId = params.get("LongAccessId")
|
18707
18721
|
self._AccessDomain = params.get("AccessDomain")
|
18722
|
+
if params.get("Tags") is not None:
|
18723
|
+
self._Tags = []
|
18724
|
+
for item in params.get("Tags"):
|
18725
|
+
obj = Tag()
|
18726
|
+
obj._deserialize(item)
|
18727
|
+
self._Tags.append(obj)
|
18708
18728
|
memeber_set = set(params.keys())
|
18709
18729
|
for name, value in vars(self).items():
|
18710
18730
|
property_name = name[1:]
|
@@ -27,7 +27,9 @@ class TeoClient(AbstractClient):
|
|
27
27
|
|
28
28
|
|
29
29
|
def CreatePrefetchTask(self, request):
|
30
|
-
"""
|
30
|
+
"""老版本接口,最近一次调用时23年11月了
|
31
|
+
|
32
|
+
创建预热任务
|
31
33
|
|
32
34
|
:param request: Request instance for CreatePrefetchTask.
|
33
35
|
:type request: :class:`tencentcloud.teo.v20220106.models.CreatePrefetchTaskRequest`
|
@@ -50,7 +52,9 @@ class TeoClient(AbstractClient):
|
|
50
52
|
|
51
53
|
|
52
54
|
def CreatePurgeTask(self, request):
|
53
|
-
"""
|
55
|
+
"""老版本接口,老版本pod的最近一次调用在23年11月
|
56
|
+
|
57
|
+
创建清除缓存任务
|
54
58
|
|
55
59
|
:param request: Request instance for CreatePurgeTask.
|
56
60
|
:type request: :class:`tencentcloud.teo.v20220106.models.CreatePurgeTaskRequest`
|
@@ -16638,6 +16638,10 @@ UPDATING 更新中
|
|
16638
16638
|
:param _AvailableReplicasCount: 服务组下期望的pod数
|
16639
16639
|
注意:此字段可能返回 null,表示取不到有效值。
|
16640
16640
|
:type AvailableReplicasCount: int
|
16641
|
+
:param _SubUin: 服务组的subuin
|
16642
|
+
:type SubUin: str
|
16643
|
+
:param _AppId: 服务组的app_id
|
16644
|
+
:type AppId: int
|
16641
16645
|
"""
|
16642
16646
|
self._ServiceGroupId = None
|
16643
16647
|
self._ServiceGroupName = None
|
@@ -16657,6 +16661,8 @@ UPDATING 更新中
|
|
16657
16661
|
self._WeightUpdateStatus = None
|
16658
16662
|
self._ReplicasCount = None
|
16659
16663
|
self._AvailableReplicasCount = None
|
16664
|
+
self._SubUin = None
|
16665
|
+
self._AppId = None
|
16660
16666
|
|
16661
16667
|
@property
|
16662
16668
|
def ServiceGroupId(self):
|
@@ -16885,6 +16891,28 @@ UPDATING 更新中
|
|
16885
16891
|
def AvailableReplicasCount(self, AvailableReplicasCount):
|
16886
16892
|
self._AvailableReplicasCount = AvailableReplicasCount
|
16887
16893
|
|
16894
|
+
@property
|
16895
|
+
def SubUin(self):
|
16896
|
+
"""服务组的subuin
|
16897
|
+
:rtype: str
|
16898
|
+
"""
|
16899
|
+
return self._SubUin
|
16900
|
+
|
16901
|
+
@SubUin.setter
|
16902
|
+
def SubUin(self, SubUin):
|
16903
|
+
self._SubUin = SubUin
|
16904
|
+
|
16905
|
+
@property
|
16906
|
+
def AppId(self):
|
16907
|
+
"""服务组的app_id
|
16908
|
+
:rtype: int
|
16909
|
+
"""
|
16910
|
+
return self._AppId
|
16911
|
+
|
16912
|
+
@AppId.setter
|
16913
|
+
def AppId(self, AppId):
|
16914
|
+
self._AppId = AppId
|
16915
|
+
|
16888
16916
|
|
16889
16917
|
def _deserialize(self, params):
|
16890
16918
|
self._ServiceGroupId = params.get("ServiceGroupId")
|
@@ -16915,6 +16943,8 @@ UPDATING 更新中
|
|
16915
16943
|
self._WeightUpdateStatus = params.get("WeightUpdateStatus")
|
16916
16944
|
self._ReplicasCount = params.get("ReplicasCount")
|
16917
16945
|
self._AvailableReplicasCount = params.get("AvailableReplicasCount")
|
16946
|
+
self._SubUin = params.get("SubUin")
|
16947
|
+
self._AppId = params.get("AppId")
|
16918
16948
|
memeber_set = set(params.keys())
|
16919
16949
|
for name, value in vars(self).items():
|
16920
16950
|
property_name = name[1:]
|
@@ -17004,7 +17034,7 @@ HYBRID_PAID:
|
|
17004
17034
|
:type ScaleStrategy: str
|
17005
17035
|
:param _ScheduledAction: 定时停止的配置
|
17006
17036
|
注意:此字段可能返回 null,表示取不到有效值。
|
17007
|
-
:type ScheduledAction:
|
17037
|
+
:type ScheduledAction: :class:`tencentcloud.tione.v20211111.models.ScheduledAction`
|
17008
17038
|
:param _PodList: 实例列表
|
17009
17039
|
注意:此字段可能返回 null,表示取不到有效值。
|
17010
17040
|
:type PodList: list of str
|
@@ -17338,7 +17368,7 @@ HYBRID_PAID:
|
|
17338
17368
|
def ScheduledAction(self):
|
17339
17369
|
"""定时停止的配置
|
17340
17370
|
注意:此字段可能返回 null,表示取不到有效值。
|
17341
|
-
:rtype:
|
17371
|
+
:rtype: :class:`tencentcloud.tione.v20211111.models.ScheduledAction`
|
17342
17372
|
"""
|
17343
17373
|
return self._ScheduledAction
|
17344
17374
|
|
@@ -17543,7 +17573,9 @@ HYBRID_PAID:
|
|
17543
17573
|
obj._deserialize(item)
|
17544
17574
|
self._CronScaleJobs.append(obj)
|
17545
17575
|
self._ScaleStrategy = params.get("ScaleStrategy")
|
17546
|
-
|
17576
|
+
if params.get("ScheduledAction") is not None:
|
17577
|
+
self._ScheduledAction = ScheduledAction()
|
17578
|
+
self._ScheduledAction._deserialize(params.get("ScheduledAction"))
|
17547
17579
|
self._PodList = params.get("PodList")
|
17548
17580
|
if params.get("Pods") is not None:
|
17549
17581
|
self._Pods = Pod()
|
@@ -209,10 +209,8 @@ class AutoScalerBehavior(AbstractModel):
|
|
209
209
|
def __init__(self):
|
210
210
|
r"""
|
211
211
|
:param _ScaleUp: 扩容行为配置
|
212
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
213
212
|
:type ScaleUp: :class:`tencentcloud.tse.v20201207.models.AutoScalerRules`
|
214
213
|
:param _ScaleDown: 缩容行为配置
|
215
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
216
214
|
:type ScaleDown: :class:`tencentcloud.tse.v20201207.models.AutoScalerRules`
|
217
215
|
"""
|
218
216
|
self._ScaleUp = None
|
@@ -221,7 +219,6 @@ class AutoScalerBehavior(AbstractModel):
|
|
221
219
|
@property
|
222
220
|
def ScaleUp(self):
|
223
221
|
"""扩容行为配置
|
224
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
225
222
|
:rtype: :class:`tencentcloud.tse.v20201207.models.AutoScalerRules`
|
226
223
|
"""
|
227
224
|
return self._ScaleUp
|
@@ -233,7 +230,6 @@ class AutoScalerBehavior(AbstractModel):
|
|
233
230
|
@property
|
234
231
|
def ScaleDown(self):
|
235
232
|
"""缩容行为配置
|
236
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
237
233
|
:rtype: :class:`tencentcloud.tse.v20201207.models.AutoScalerRules`
|
238
234
|
"""
|
239
235
|
return self._ScaleDown
|
@@ -268,13 +264,10 @@ class AutoScalerPolicy(AbstractModel):
|
|
268
264
|
def __init__(self):
|
269
265
|
r"""
|
270
266
|
:param _Type: 类型,Pods
|
271
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
272
267
|
:type Type: str
|
273
268
|
:param _Value: 数量
|
274
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
275
269
|
:type Value: int
|
276
270
|
:param _PeriodSeconds: 扩容周期
|
277
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
278
271
|
:type PeriodSeconds: int
|
279
272
|
"""
|
280
273
|
self._Type = None
|
@@ -284,7 +277,6 @@ class AutoScalerPolicy(AbstractModel):
|
|
284
277
|
@property
|
285
278
|
def Type(self):
|
286
279
|
"""类型,Pods
|
287
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
288
280
|
:rtype: str
|
289
281
|
"""
|
290
282
|
return self._Type
|
@@ -296,7 +288,6 @@ class AutoScalerPolicy(AbstractModel):
|
|
296
288
|
@property
|
297
289
|
def Value(self):
|
298
290
|
"""数量
|
299
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
300
291
|
:rtype: int
|
301
292
|
"""
|
302
293
|
return self._Value
|
@@ -308,7 +299,6 @@ class AutoScalerPolicy(AbstractModel):
|
|
308
299
|
@property
|
309
300
|
def PeriodSeconds(self):
|
310
301
|
"""扩容周期
|
311
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
312
302
|
:rtype: int
|
313
303
|
"""
|
314
304
|
return self._PeriodSeconds
|
@@ -340,13 +330,10 @@ class AutoScalerRules(AbstractModel):
|
|
340
330
|
def __init__(self):
|
341
331
|
r"""
|
342
332
|
:param _StabilizationWindowSeconds: 稳定窗口时间,扩容时默认0,缩容时默认300
|
343
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
344
333
|
:type StabilizationWindowSeconds: int
|
345
334
|
:param _SelectPolicy: 选择策略依据
|
346
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
347
335
|
:type SelectPolicy: str
|
348
336
|
:param _Policies: 扩缩容策略
|
349
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
350
337
|
:type Policies: list of AutoScalerPolicy
|
351
338
|
"""
|
352
339
|
self._StabilizationWindowSeconds = None
|
@@ -356,7 +343,6 @@ class AutoScalerRules(AbstractModel):
|
|
356
343
|
@property
|
357
344
|
def StabilizationWindowSeconds(self):
|
358
345
|
"""稳定窗口时间,扩容时默认0,缩容时默认300
|
359
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
360
346
|
:rtype: int
|
361
347
|
"""
|
362
348
|
return self._StabilizationWindowSeconds
|
@@ -368,7 +354,6 @@ class AutoScalerRules(AbstractModel):
|
|
368
354
|
@property
|
369
355
|
def SelectPolicy(self):
|
370
356
|
"""选择策略依据
|
371
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
372
357
|
:rtype: str
|
373
358
|
"""
|
374
359
|
return self._SelectPolicy
|
@@ -380,7 +365,6 @@ class AutoScalerRules(AbstractModel):
|
|
380
365
|
@property
|
381
366
|
def Policies(self):
|
382
367
|
"""扩缩容策略
|
383
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
384
368
|
:rtype: list of AutoScalerPolicy
|
385
369
|
"""
|
386
370
|
return self._Policies
|
@@ -2518,7 +2502,6 @@ class CloudNativeAPIGatewayStrategyAutoScalerConfig(AbstractModel):
|
|
2518
2502
|
def __init__(self):
|
2519
2503
|
r"""
|
2520
2504
|
:param _MaxReplicas: 最大副本数
|
2521
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2522
2505
|
:type MaxReplicas: int
|
2523
2506
|
:param _Metrics: 指标列表
|
2524
2507
|
注意:此字段可能返回 null,表示取不到有效值。
|
@@ -2554,7 +2537,6 @@ class CloudNativeAPIGatewayStrategyAutoScalerConfig(AbstractModel):
|
|
2554
2537
|
@property
|
2555
2538
|
def MaxReplicas(self):
|
2556
2539
|
"""最大副本数
|
2557
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2558
2540
|
:rtype: int
|
2559
2541
|
"""
|
2560
2542
|
return self._MaxReplicas
|
@@ -2707,13 +2689,10 @@ class CloudNativeAPIGatewayStrategyAutoScalerConfigMetric(AbstractModel):
|
|
2707
2689
|
:param _ResourceName: 指标资源名称
|
2708
2690
|
- cpu
|
2709
2691
|
- memory
|
2710
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2711
2692
|
:type ResourceName: str
|
2712
2693
|
:param _TargetType: 指标目标类型,目前只支持百分比Utilization
|
2713
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2714
2694
|
:type TargetType: str
|
2715
2695
|
:param _TargetValue: 指标目标值
|
2716
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2717
2696
|
:type TargetValue: int
|
2718
2697
|
"""
|
2719
2698
|
self._Type = None
|
@@ -2738,7 +2717,6 @@ class CloudNativeAPIGatewayStrategyAutoScalerConfigMetric(AbstractModel):
|
|
2738
2717
|
"""指标资源名称
|
2739
2718
|
- cpu
|
2740
2719
|
- memory
|
2741
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2742
2720
|
:rtype: str
|
2743
2721
|
"""
|
2744
2722
|
return self._ResourceName
|
@@ -2750,7 +2728,6 @@ class CloudNativeAPIGatewayStrategyAutoScalerConfigMetric(AbstractModel):
|
|
2750
2728
|
@property
|
2751
2729
|
def TargetType(self):
|
2752
2730
|
"""指标目标类型,目前只支持百分比Utilization
|
2753
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2754
2731
|
:rtype: str
|
2755
2732
|
"""
|
2756
2733
|
return self._TargetType
|
@@ -2762,7 +2739,6 @@ class CloudNativeAPIGatewayStrategyAutoScalerConfigMetric(AbstractModel):
|
|
2762
2739
|
@property
|
2763
2740
|
def TargetValue(self):
|
2764
2741
|
"""指标目标值
|
2765
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2766
2742
|
:rtype: int
|
2767
2743
|
"""
|
2768
2744
|
return self._TargetValue
|
@@ -3030,16 +3006,12 @@ class CloudNativeAPIGatewayStrategyCronScalerConfigParam(AbstractModel):
|
|
3030
3006
|
def __init__(self):
|
3031
3007
|
r"""
|
3032
3008
|
:param _Period: 定时伸缩周期
|
3033
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3034
3009
|
:type Period: str
|
3035
3010
|
:param _StartAt: 定时伸缩开始时间
|
3036
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3037
3011
|
:type StartAt: str
|
3038
3012
|
:param _TargetReplicas: 定时伸缩目标节点数,不超过指标伸缩中定义的最大节点数
|
3039
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3040
3013
|
:type TargetReplicas: int
|
3041
3014
|
:param _Crontab: 定时伸缩cron表达式,无需输入
|
3042
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3043
3015
|
:type Crontab: str
|
3044
3016
|
"""
|
3045
3017
|
self._Period = None
|
@@ -3050,7 +3022,6 @@ class CloudNativeAPIGatewayStrategyCronScalerConfigParam(AbstractModel):
|
|
3050
3022
|
@property
|
3051
3023
|
def Period(self):
|
3052
3024
|
"""定时伸缩周期
|
3053
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3054
3025
|
:rtype: str
|
3055
3026
|
"""
|
3056
3027
|
return self._Period
|
@@ -3062,7 +3033,6 @@ class CloudNativeAPIGatewayStrategyCronScalerConfigParam(AbstractModel):
|
|
3062
3033
|
@property
|
3063
3034
|
def StartAt(self):
|
3064
3035
|
"""定时伸缩开始时间
|
3065
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3066
3036
|
:rtype: str
|
3067
3037
|
"""
|
3068
3038
|
return self._StartAt
|
@@ -3074,7 +3044,6 @@ class CloudNativeAPIGatewayStrategyCronScalerConfigParam(AbstractModel):
|
|
3074
3044
|
@property
|
3075
3045
|
def TargetReplicas(self):
|
3076
3046
|
"""定时伸缩目标节点数,不超过指标伸缩中定义的最大节点数
|
3077
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3078
3047
|
:rtype: int
|
3079
3048
|
"""
|
3080
3049
|
return self._TargetReplicas
|
@@ -3086,7 +3055,6 @@ class CloudNativeAPIGatewayStrategyCronScalerConfigParam(AbstractModel):
|
|
3086
3055
|
@property
|
3087
3056
|
def Crontab(self):
|
3088
3057
|
"""定时伸缩cron表达式,无需输入
|
3089
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
3090
3058
|
:rtype: str
|
3091
3059
|
"""
|
3092
3060
|
return self._Crontab
|
@@ -5197,7 +5165,6 @@ class CreateAutoScalerResourceStrategyResponse(AbstractModel):
|
|
5197
5165
|
:param _Result: 是否成功
|
5198
5166
|
:type Result: bool
|
5199
5167
|
:param _StrategyId: 策略Id
|
5200
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5201
5168
|
:type StrategyId: str
|
5202
5169
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5203
5170
|
:type RequestId: str
|
@@ -5224,7 +5191,6 @@ class CreateAutoScalerResourceStrategyResponse(AbstractModel):
|
|
5224
5191
|
@property
|
5225
5192
|
def StrategyId(self):
|
5226
5193
|
"""策略Id
|
5227
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5228
5194
|
:rtype: str
|
5229
5195
|
"""
|
5230
5196
|
return self._StrategyId
|
@@ -1655,7 +1655,6 @@ class IncrementalMigrationStrategyInfo(AbstractModel):
|
|
1655
1655
|
:param _OriginType: 源站类型。取值有:<li>HTTP:HTTP 源。</li>
|
1656
1656
|
:type OriginType: str
|
1657
1657
|
:param _HttpOriginConfig: 回源源站配置。
|
1658
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1659
1658
|
:type HttpOriginConfig: :class:`tencentcloud.vod.v20240718.models.IncrementalMigrationHttpOriginConfig`
|
1660
1659
|
"""
|
1661
1660
|
self._StrategyId = None
|
@@ -1723,7 +1722,6 @@ class IncrementalMigrationStrategyInfo(AbstractModel):
|
|
1723
1722
|
@property
|
1724
1723
|
def HttpOriginConfig(self):
|
1725
1724
|
"""回源源站配置。
|
1726
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1727
1725
|
:rtype: :class:`tencentcloud.vod.v20240718.models.IncrementalMigrationHttpOriginConfig`
|
1728
1726
|
"""
|
1729
1727
|
return self._HttpOriginConfig
|