tencentcloud-sdk-python 3.0.1351__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/cls/v20201016/cls_client.py +92 -0
- tencentcloud/cls/v20201016/models.py +908 -26
- tencentcloud/controlcenter/v20230110/models.py +0 -58
- tencentcloud/cvm/v20170312/cvm_client.py +1 -1
- tencentcloud/cvm/v20170312/models.py +2 -6
- tencentcloud/dbbrain/v20191016/dbbrain_client.py +23 -0
- tencentcloud/dbbrain/v20191016/models.py +603 -10
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +46 -0
- tencentcloud/dbbrain/v20210527/models.py +942 -49
- tencentcloud/dcdb/v20180411/models.py +175 -2
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/errorcodes.py +3 -0
- tencentcloud/dlc/v20210125/models.py +284 -0
- tencentcloud/dnspod/v20210323/models.py +0 -70
- tencentcloud/ess/v20201111/models.py +6 -6
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/facefusion/v20220927/models.py +4 -2
- tencentcloud/gs/v20191118/models.py +51 -4
- tencentcloud/hai/v20230812/models.py +2 -18
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +1 -1
- tencentcloud/iotexplorer/v20190423/models.py +141 -420
- tencentcloud/live/v20180801/models.py +4 -6
- tencentcloud/lkeap/v20240522/models.py +12 -6
- tencentcloud/mariadb/v20170312/models.py +151 -2
- tencentcloud/mps/v20190612/models.py +10 -10
- tencentcloud/mqtt/v20240516/models.py +97 -14
- tencentcloud/ocr/v20181119/errorcodes.py +0 -3
- tencentcloud/ocr/v20181119/models.py +143 -558
- tencentcloud/ocr/v20181119/ocr_client.py +0 -23
- tencentcloud/organization/v20210331/models.py +15 -0
- tencentcloud/partners/v20180321/models.py +15 -0
- tencentcloud/sqlserver/v20180328/models.py +15 -0
- tencentcloud/tcb/v20180608/models.py +20 -0
- tencentcloud/tdmq/v20200217/models.py +45 -0
- tencentcloud/teo/v20220106/teo_client.py +6 -2
- tencentcloud/teo/v20220901/models.py +85 -12
- tencentcloud/tione/v20211111/models.py +35 -3
- tencentcloud/trro/v20220325/models.py +992 -44
- tencentcloud/trro/v20220325/trro_client.py +117 -0
- tencentcloud/tse/v20201207/models.py +0 -34
- tencentcloud/vdb/v20230616/models.py +1438 -40
- tencentcloud/vdb/v20230616/vdb_client.py +184 -0
- tencentcloud/vod/v20180717/models.py +15 -0
- tencentcloud/vod/v20240718/errorcodes.py +33 -0
- tencentcloud/vod/v20240718/models.py +1839 -0
- tencentcloud/vod/v20240718/vod_client.py +146 -0
- tencentcloud/vpc/v20170312/models.py +300 -0
- tencentcloud/vpc/v20170312/vpc_client.py +26 -0
- tencentcloud/wedata/v20210820/models.py +808 -0
- tencentcloud/wedata/v20210820/wedata_client.py +46 -0
- tencentcloud/weilingwith/v20230427/weilingwith_client.py +3 -1
- {tencentcloud_sdk_python-3.0.1351.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1351.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/RECORD +66 -66
- {tencentcloud_sdk_python-3.0.1351.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1351.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1351.dist-info → tencentcloud_sdk_python-3.0.1353.dist-info}/top_level.txt +0 -0
@@ -95,6 +95,29 @@ class TrroClient(AbstractClient):
|
|
95
95
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
96
96
|
|
97
97
|
|
98
|
+
def CreateCloudRecording(self, request):
|
99
|
+
"""启动云端录制功能,完成房间内的音视频录制,并上传到指定的云存储。
|
100
|
+
|
101
|
+
:param request: Request instance for CreateCloudRecording.
|
102
|
+
:type request: :class:`tencentcloud.trro.v20220325.models.CreateCloudRecordingRequest`
|
103
|
+
:rtype: :class:`tencentcloud.trro.v20220325.models.CreateCloudRecordingResponse`
|
104
|
+
|
105
|
+
"""
|
106
|
+
try:
|
107
|
+
params = request._serialize()
|
108
|
+
headers = request.headers
|
109
|
+
body = self.call("CreateCloudRecording", params, headers=headers)
|
110
|
+
response = json.loads(body)
|
111
|
+
model = models.CreateCloudRecordingResponse()
|
112
|
+
model._deserialize(response["Response"])
|
113
|
+
return model
|
114
|
+
except Exception as e:
|
115
|
+
if isinstance(e, TencentCloudSDKException):
|
116
|
+
raise
|
117
|
+
else:
|
118
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
119
|
+
|
120
|
+
|
98
121
|
def CreateDevice(self, request):
|
99
122
|
"""用于创建设备
|
100
123
|
|
@@ -141,6 +164,29 @@ class TrroClient(AbstractClient):
|
|
141
164
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
142
165
|
|
143
166
|
|
167
|
+
def DeleteCloudRecording(self, request):
|
168
|
+
"""成功开启录制后,可以使用此接口来停止录制任务。停止录制成功后不代表文件全部传输完成,如果未完成后台将会继续上传文件,成功后通过事件回调通知客户文件全部传输完成状态。
|
169
|
+
|
170
|
+
:param request: Request instance for DeleteCloudRecording.
|
171
|
+
:type request: :class:`tencentcloud.trro.v20220325.models.DeleteCloudRecordingRequest`
|
172
|
+
:rtype: :class:`tencentcloud.trro.v20220325.models.DeleteCloudRecordingResponse`
|
173
|
+
|
174
|
+
"""
|
175
|
+
try:
|
176
|
+
params = request._serialize()
|
177
|
+
headers = request.headers
|
178
|
+
body = self.call("DeleteCloudRecording", params, headers=headers)
|
179
|
+
response = json.loads(body)
|
180
|
+
model = models.DeleteCloudRecordingResponse()
|
181
|
+
model._deserialize(response["Response"])
|
182
|
+
return model
|
183
|
+
except Exception as e:
|
184
|
+
if isinstance(e, TencentCloudSDKException):
|
185
|
+
raise
|
186
|
+
else:
|
187
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
188
|
+
|
189
|
+
|
144
190
|
def DeleteProject(self, request):
|
145
191
|
"""用于删除项目
|
146
192
|
|
@@ -486,6 +532,31 @@ class TrroClient(AbstractClient):
|
|
486
532
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
487
533
|
|
488
534
|
|
535
|
+
def ModifyCallbackUrl(self, request):
|
536
|
+
"""设置回调URL
|
537
|
+
录制回调事件内容参考:https://cloud.tencent.com/document/product/647/81113
|
538
|
+
转推回调事件内容参考:https://cloud.tencent.com/document/product/647/88552
|
539
|
+
|
540
|
+
:param request: Request instance for ModifyCallbackUrl.
|
541
|
+
:type request: :class:`tencentcloud.trro.v20220325.models.ModifyCallbackUrlRequest`
|
542
|
+
:rtype: :class:`tencentcloud.trro.v20220325.models.ModifyCallbackUrlResponse`
|
543
|
+
|
544
|
+
"""
|
545
|
+
try:
|
546
|
+
params = request._serialize()
|
547
|
+
headers = request.headers
|
548
|
+
body = self.call("ModifyCallbackUrl", params, headers=headers)
|
549
|
+
response = json.loads(body)
|
550
|
+
model = models.ModifyCallbackUrlResponse()
|
551
|
+
model._deserialize(response["Response"])
|
552
|
+
return model
|
553
|
+
except Exception as e:
|
554
|
+
if isinstance(e, TencentCloudSDKException):
|
555
|
+
raise
|
556
|
+
else:
|
557
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
558
|
+
|
559
|
+
|
489
560
|
def ModifyDevice(self, request):
|
490
561
|
"""用于修改设备信息
|
491
562
|
|
@@ -573,6 +644,52 @@ class TrroClient(AbstractClient):
|
|
573
644
|
model = models.ModifyProjectSecModeResponse()
|
574
645
|
model._deserialize(response["Response"])
|
575
646
|
return model
|
647
|
+
except Exception as e:
|
648
|
+
if isinstance(e, TencentCloudSDKException):
|
649
|
+
raise
|
650
|
+
else:
|
651
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
652
|
+
|
653
|
+
|
654
|
+
def StartPublishLiveStream(self, request):
|
655
|
+
"""启动一个混流转推任务,将 TRTC 房间的多路音视频流混成一路音视频流,编码后推到直播 CDN 或者回推到 TRTC 房间。也支持不转码直接转推 TRTC 房间的单路流。启动成功后,会返回一个 SdkAppid 维度唯一的任务 Id(TaskId)。您需要保存该 TaskId,后续需要依赖此 TaskId 更新和结束任务。
|
656
|
+
|
657
|
+
:param request: Request instance for StartPublishLiveStream.
|
658
|
+
:type request: :class:`tencentcloud.trro.v20220325.models.StartPublishLiveStreamRequest`
|
659
|
+
:rtype: :class:`tencentcloud.trro.v20220325.models.StartPublishLiveStreamResponse`
|
660
|
+
|
661
|
+
"""
|
662
|
+
try:
|
663
|
+
params = request._serialize()
|
664
|
+
headers = request.headers
|
665
|
+
body = self.call("StartPublishLiveStream", params, headers=headers)
|
666
|
+
response = json.loads(body)
|
667
|
+
model = models.StartPublishLiveStreamResponse()
|
668
|
+
model._deserialize(response["Response"])
|
669
|
+
return model
|
670
|
+
except Exception as e:
|
671
|
+
if isinstance(e, TencentCloudSDKException):
|
672
|
+
raise
|
673
|
+
else:
|
674
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
675
|
+
|
676
|
+
|
677
|
+
def StopPublishLiveStream(self, request):
|
678
|
+
"""停止指定的混流转推任务。如果没有调用 Stop 接口停止任务,所有参与混流转推的主播离开房间超过MaxIdleTime 设置的时间后,任务也会自动停止。
|
679
|
+
|
680
|
+
:param request: Request instance for StopPublishLiveStream.
|
681
|
+
:type request: :class:`tencentcloud.trro.v20220325.models.StopPublishLiveStreamRequest`
|
682
|
+
:rtype: :class:`tencentcloud.trro.v20220325.models.StopPublishLiveStreamResponse`
|
683
|
+
|
684
|
+
"""
|
685
|
+
try:
|
686
|
+
params = request._serialize()
|
687
|
+
headers = request.headers
|
688
|
+
body = self.call("StopPublishLiveStream", params, headers=headers)
|
689
|
+
response = json.loads(body)
|
690
|
+
model = models.StopPublishLiveStreamResponse()
|
691
|
+
model._deserialize(response["Response"])
|
692
|
+
return model
|
576
693
|
except Exception as e:
|
577
694
|
if isinstance(e, TencentCloudSDKException):
|
578
695
|
raise
|
@@ -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
|