tencentcloud-sdk-python 3.0.1272__py2.py3-none-any.whl → 3.0.1274__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/billing/v20180709/models.py +0 -86
- tencentcloud/bsca/v20210811/models.py +17 -2
- tencentcloud/cfs/v20190719/models.py +4 -4
- tencentcloud/cls/v20201016/models.py +6 -0
- tencentcloud/cvm/v20170312/models.py +2 -2
- tencentcloud/cynosdb/v20190107/models.py +2 -2
- tencentcloud/dnspod/v20210323/dnspod_client.py +46 -0
- tencentcloud/dnspod/v20210323/models.py +190 -2
- tencentcloud/dts/v20211206/models.py +2 -2
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/ess/v20201111/models.py +18 -10
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/essbasic/v20210526/models.py +10 -6
- tencentcloud/goosefs/v20220519/models.py +15 -0
- tencentcloud/gwlb/v20240906/errorcodes.py +3 -0
- tencentcloud/gwlb/v20240906/models.py +2 -2
- tencentcloud/hunyuan/v20230901/models.py +17 -0
- tencentcloud/iotexplorer/v20190423/models.py +17 -17
- tencentcloud/lcic/v20220817/models.py +15 -0
- tencentcloud/lighthouse/v20200324/errorcodes.py +3 -0
- tencentcloud/lighthouse/v20200324/models.py +24 -4
- tencentcloud/live/v20180801/errorcodes.py +69 -0
- tencentcloud/live/v20180801/live_client.py +444 -0
- tencentcloud/live/v20180801/models.py +2452 -0
- tencentcloud/lke/v20231130/models.py +1229 -171
- tencentcloud/mps/v20190612/models.py +17 -0
- tencentcloud/oceanus/v20190422/models.py +15 -0
- tencentcloud/ocr/v20181119/models.py +45 -0
- tencentcloud/privatedns/v20201028/errorcodes.py +0 -42
- tencentcloud/privatedns/v20201028/models.py +712 -2358
- tencentcloud/privatedns/v20201028/privatedns_client.py +0 -230
- tencentcloud/svp/v20240125/models.py +0 -2
- tencentcloud/tke/v20180525/models.py +15 -0
- tencentcloud/tke/v20220501/models.py +6 -2
- tencentcloud/trtc/v20190722/models.py +44 -2
- tencentcloud/tse/v20201207/models.py +6 -6
- tencentcloud/vod/v20180717/models.py +30 -0
- tencentcloud/vpc/v20170312/models.py +30 -0
- tencentcloud/wedata/v20210820/models.py +6 -6
- {tencentcloud_sdk_python-3.0.1272.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1272.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/RECORD +45 -45
- {tencentcloud_sdk_python-3.0.1272.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1272.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1272.dist-info → tencentcloud_sdk_python-3.0.1274.dist-info}/top_level.txt +0 -0
@@ -49,75 +49,6 @@ class PrivatednsClient(AbstractClient):
|
|
49
49
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
50
50
|
|
51
51
|
|
52
|
-
def CreateEndPoint(self, request):
|
53
|
-
"""创建终端节点
|
54
|
-
|
55
|
-
:param request: Request instance for CreateEndPoint.
|
56
|
-
:type request: :class:`tencentcloud.privatedns.v20201028.models.CreateEndPointRequest`
|
57
|
-
:rtype: :class:`tencentcloud.privatedns.v20201028.models.CreateEndPointResponse`
|
58
|
-
|
59
|
-
"""
|
60
|
-
try:
|
61
|
-
params = request._serialize()
|
62
|
-
headers = request.headers
|
63
|
-
body = self.call("CreateEndPoint", params, headers=headers)
|
64
|
-
response = json.loads(body)
|
65
|
-
model = models.CreateEndPointResponse()
|
66
|
-
model._deserialize(response["Response"])
|
67
|
-
return model
|
68
|
-
except Exception as e:
|
69
|
-
if isinstance(e, TencentCloudSDKException):
|
70
|
-
raise
|
71
|
-
else:
|
72
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
73
|
-
|
74
|
-
|
75
|
-
def CreateEndPointAndEndPointService(self, request):
|
76
|
-
"""同时创建终端节点和终端节点服务
|
77
|
-
|
78
|
-
:param request: Request instance for CreateEndPointAndEndPointService.
|
79
|
-
:type request: :class:`tencentcloud.privatedns.v20201028.models.CreateEndPointAndEndPointServiceRequest`
|
80
|
-
:rtype: :class:`tencentcloud.privatedns.v20201028.models.CreateEndPointAndEndPointServiceResponse`
|
81
|
-
|
82
|
-
"""
|
83
|
-
try:
|
84
|
-
params = request._serialize()
|
85
|
-
headers = request.headers
|
86
|
-
body = self.call("CreateEndPointAndEndPointService", params, headers=headers)
|
87
|
-
response = json.loads(body)
|
88
|
-
model = models.CreateEndPointAndEndPointServiceResponse()
|
89
|
-
model._deserialize(response["Response"])
|
90
|
-
return model
|
91
|
-
except Exception as e:
|
92
|
-
if isinstance(e, TencentCloudSDKException):
|
93
|
-
raise
|
94
|
-
else:
|
95
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
96
|
-
|
97
|
-
|
98
|
-
def CreateForwardRule(self, request):
|
99
|
-
"""创建自定义转发规则
|
100
|
-
|
101
|
-
:param request: Request instance for CreateForwardRule.
|
102
|
-
:type request: :class:`tencentcloud.privatedns.v20201028.models.CreateForwardRuleRequest`
|
103
|
-
:rtype: :class:`tencentcloud.privatedns.v20201028.models.CreateForwardRuleResponse`
|
104
|
-
|
105
|
-
"""
|
106
|
-
try:
|
107
|
-
params = request._serialize()
|
108
|
-
headers = request.headers
|
109
|
-
body = self.call("CreateForwardRule", params, headers=headers)
|
110
|
-
response = json.loads(body)
|
111
|
-
model = models.CreateForwardRuleResponse()
|
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
|
-
|
121
52
|
def CreatePrivateDNSAccount(self, request):
|
122
53
|
"""创建私有域解析账号
|
123
54
|
|
@@ -187,52 +118,6 @@ class PrivatednsClient(AbstractClient):
|
|
187
118
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
188
119
|
|
189
120
|
|
190
|
-
def DeleteEndPoint(self, request):
|
191
|
-
"""删除终端节点
|
192
|
-
|
193
|
-
:param request: Request instance for DeleteEndPoint.
|
194
|
-
:type request: :class:`tencentcloud.privatedns.v20201028.models.DeleteEndPointRequest`
|
195
|
-
:rtype: :class:`tencentcloud.privatedns.v20201028.models.DeleteEndPointResponse`
|
196
|
-
|
197
|
-
"""
|
198
|
-
try:
|
199
|
-
params = request._serialize()
|
200
|
-
headers = request.headers
|
201
|
-
body = self.call("DeleteEndPoint", params, headers=headers)
|
202
|
-
response = json.loads(body)
|
203
|
-
model = models.DeleteEndPointResponse()
|
204
|
-
model._deserialize(response["Response"])
|
205
|
-
return model
|
206
|
-
except Exception as e:
|
207
|
-
if isinstance(e, TencentCloudSDKException):
|
208
|
-
raise
|
209
|
-
else:
|
210
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
211
|
-
|
212
|
-
|
213
|
-
def DeleteForwardRule(self, request):
|
214
|
-
"""删除转发规则并停止转发
|
215
|
-
|
216
|
-
:param request: Request instance for DeleteForwardRule.
|
217
|
-
:type request: :class:`tencentcloud.privatedns.v20201028.models.DeleteForwardRuleRequest`
|
218
|
-
:rtype: :class:`tencentcloud.privatedns.v20201028.models.DeleteForwardRuleResponse`
|
219
|
-
|
220
|
-
"""
|
221
|
-
try:
|
222
|
-
params = request._serialize()
|
223
|
-
headers = request.headers
|
224
|
-
body = self.call("DeleteForwardRule", params, headers=headers)
|
225
|
-
response = json.loads(body)
|
226
|
-
model = models.DeleteForwardRuleResponse()
|
227
|
-
model._deserialize(response["Response"])
|
228
|
-
return model
|
229
|
-
except Exception as e:
|
230
|
-
if isinstance(e, TencentCloudSDKException):
|
231
|
-
raise
|
232
|
-
else:
|
233
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
234
|
-
|
235
|
-
|
236
121
|
def DeletePrivateDNSAccount(self, request):
|
237
122
|
"""删除私有域解析账号
|
238
123
|
|
@@ -394,98 +279,6 @@ class PrivatednsClient(AbstractClient):
|
|
394
279
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
395
280
|
|
396
281
|
|
397
|
-
def DescribeEndPointList(self, request):
|
398
|
-
"""获取终端节点列表
|
399
|
-
|
400
|
-
:param request: Request instance for DescribeEndPointList.
|
401
|
-
:type request: :class:`tencentcloud.privatedns.v20201028.models.DescribeEndPointListRequest`
|
402
|
-
:rtype: :class:`tencentcloud.privatedns.v20201028.models.DescribeEndPointListResponse`
|
403
|
-
|
404
|
-
"""
|
405
|
-
try:
|
406
|
-
params = request._serialize()
|
407
|
-
headers = request.headers
|
408
|
-
body = self.call("DescribeEndPointList", params, headers=headers)
|
409
|
-
response = json.loads(body)
|
410
|
-
model = models.DescribeEndPointListResponse()
|
411
|
-
model._deserialize(response["Response"])
|
412
|
-
return model
|
413
|
-
except Exception as e:
|
414
|
-
if isinstance(e, TencentCloudSDKException):
|
415
|
-
raise
|
416
|
-
else:
|
417
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
418
|
-
|
419
|
-
|
420
|
-
def DescribeEndPointRegion(self, request):
|
421
|
-
"""查询终端节点已经启用了的地域
|
422
|
-
|
423
|
-
:param request: Request instance for DescribeEndPointRegion.
|
424
|
-
:type request: :class:`tencentcloud.privatedns.v20201028.models.DescribeEndPointRegionRequest`
|
425
|
-
:rtype: :class:`tencentcloud.privatedns.v20201028.models.DescribeEndPointRegionResponse`
|
426
|
-
|
427
|
-
"""
|
428
|
-
try:
|
429
|
-
params = request._serialize()
|
430
|
-
headers = request.headers
|
431
|
-
body = self.call("DescribeEndPointRegion", params, headers=headers)
|
432
|
-
response = json.loads(body)
|
433
|
-
model = models.DescribeEndPointRegionResponse()
|
434
|
-
model._deserialize(response["Response"])
|
435
|
-
return model
|
436
|
-
except Exception as e:
|
437
|
-
if isinstance(e, TencentCloudSDKException):
|
438
|
-
raise
|
439
|
-
else:
|
440
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
441
|
-
|
442
|
-
|
443
|
-
def DescribeForwardRule(self, request):
|
444
|
-
"""查询转发规则
|
445
|
-
|
446
|
-
:param request: Request instance for DescribeForwardRule.
|
447
|
-
:type request: :class:`tencentcloud.privatedns.v20201028.models.DescribeForwardRuleRequest`
|
448
|
-
:rtype: :class:`tencentcloud.privatedns.v20201028.models.DescribeForwardRuleResponse`
|
449
|
-
|
450
|
-
"""
|
451
|
-
try:
|
452
|
-
params = request._serialize()
|
453
|
-
headers = request.headers
|
454
|
-
body = self.call("DescribeForwardRule", params, headers=headers)
|
455
|
-
response = json.loads(body)
|
456
|
-
model = models.DescribeForwardRuleResponse()
|
457
|
-
model._deserialize(response["Response"])
|
458
|
-
return model
|
459
|
-
except Exception as e:
|
460
|
-
if isinstance(e, TencentCloudSDKException):
|
461
|
-
raise
|
462
|
-
else:
|
463
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
464
|
-
|
465
|
-
|
466
|
-
def DescribeForwardRuleList(self, request):
|
467
|
-
"""查询转发规则列表
|
468
|
-
|
469
|
-
:param request: Request instance for DescribeForwardRuleList.
|
470
|
-
:type request: :class:`tencentcloud.privatedns.v20201028.models.DescribeForwardRuleListRequest`
|
471
|
-
:rtype: :class:`tencentcloud.privatedns.v20201028.models.DescribeForwardRuleListResponse`
|
472
|
-
|
473
|
-
"""
|
474
|
-
try:
|
475
|
-
params = request._serialize()
|
476
|
-
headers = request.headers
|
477
|
-
body = self.call("DescribeForwardRuleList", params, headers=headers)
|
478
|
-
response = json.loads(body)
|
479
|
-
model = models.DescribeForwardRuleListResponse()
|
480
|
-
model._deserialize(response["Response"])
|
481
|
-
return model
|
482
|
-
except Exception as e:
|
483
|
-
if isinstance(e, TencentCloudSDKException):
|
484
|
-
raise
|
485
|
-
else:
|
486
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
487
|
-
|
488
|
-
|
489
282
|
def DescribePrivateDNSAccountList(self, request):
|
490
283
|
"""获取私有域解析账号列表
|
491
284
|
|
@@ -647,29 +440,6 @@ class PrivatednsClient(AbstractClient):
|
|
647
440
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
648
441
|
|
649
442
|
|
650
|
-
def ModifyForwardRule(self, request):
|
651
|
-
"""修改转发规则
|
652
|
-
|
653
|
-
:param request: Request instance for ModifyForwardRule.
|
654
|
-
:type request: :class:`tencentcloud.privatedns.v20201028.models.ModifyForwardRuleRequest`
|
655
|
-
:rtype: :class:`tencentcloud.privatedns.v20201028.models.ModifyForwardRuleResponse`
|
656
|
-
|
657
|
-
"""
|
658
|
-
try:
|
659
|
-
params = request._serialize()
|
660
|
-
headers = request.headers
|
661
|
-
body = self.call("ModifyForwardRule", params, headers=headers)
|
662
|
-
response = json.loads(body)
|
663
|
-
model = models.ModifyForwardRuleResponse()
|
664
|
-
model._deserialize(response["Response"])
|
665
|
-
return model
|
666
|
-
except Exception as e:
|
667
|
-
if isinstance(e, TencentCloudSDKException):
|
668
|
-
raise
|
669
|
-
else:
|
670
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
671
|
-
|
672
|
-
|
673
443
|
def ModifyPrivateZone(self, request):
|
674
444
|
"""修改私有域信息
|
675
445
|
|
@@ -720,7 +720,6 @@ class DescribeSavingPlanUsageResponse(AbstractModel):
|
|
720
720
|
:param _Total: 查询命中的节省计划总览明细数据总条数
|
721
721
|
:type Total: int
|
722
722
|
:param _Usages: 节省计划使用率数据
|
723
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
724
723
|
:type Usages: list of SavingPlanUsageDetail
|
725
724
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
726
725
|
:type RequestId: str
|
@@ -743,7 +742,6 @@ class DescribeSavingPlanUsageResponse(AbstractModel):
|
|
743
742
|
@property
|
744
743
|
def Usages(self):
|
745
744
|
"""节省计划使用率数据
|
746
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
747
745
|
:rtype: list of SavingPlanUsageDetail
|
748
746
|
"""
|
749
747
|
return self._Usages
|
@@ -20295,10 +20295,13 @@ class DescribeOpenPolicyListResponse(AbstractModel):
|
|
20295
20295
|
:param _OpenPolicyInfoList: 策略信息列表
|
20296
20296
|
注意:此字段可能返回 null,表示取不到有效值。
|
20297
20297
|
:type OpenPolicyInfoList: list of OpenPolicyInfo
|
20298
|
+
:param _GatekeeperStatus: 集群内是否安装了gatekeeper addon
|
20299
|
+
:type GatekeeperStatus: int
|
20298
20300
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
20299
20301
|
:type RequestId: str
|
20300
20302
|
"""
|
20301
20303
|
self._OpenPolicyInfoList = None
|
20304
|
+
self._GatekeeperStatus = None
|
20302
20305
|
self._RequestId = None
|
20303
20306
|
|
20304
20307
|
@property
|
@@ -20313,6 +20316,17 @@ class DescribeOpenPolicyListResponse(AbstractModel):
|
|
20313
20316
|
def OpenPolicyInfoList(self, OpenPolicyInfoList):
|
20314
20317
|
self._OpenPolicyInfoList = OpenPolicyInfoList
|
20315
20318
|
|
20319
|
+
@property
|
20320
|
+
def GatekeeperStatus(self):
|
20321
|
+
"""集群内是否安装了gatekeeper addon
|
20322
|
+
:rtype: int
|
20323
|
+
"""
|
20324
|
+
return self._GatekeeperStatus
|
20325
|
+
|
20326
|
+
@GatekeeperStatus.setter
|
20327
|
+
def GatekeeperStatus(self, GatekeeperStatus):
|
20328
|
+
self._GatekeeperStatus = GatekeeperStatus
|
20329
|
+
|
20316
20330
|
@property
|
20317
20331
|
def RequestId(self):
|
20318
20332
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -20332,6 +20346,7 @@ class DescribeOpenPolicyListResponse(AbstractModel):
|
|
20332
20346
|
obj = OpenPolicyInfo()
|
20333
20347
|
obj._deserialize(item)
|
20334
20348
|
self._OpenPolicyInfoList.append(obj)
|
20349
|
+
self._GatekeeperStatus = params.get("GatekeeperStatus")
|
20335
20350
|
self._RequestId = params.get("RequestId")
|
20336
20351
|
|
20337
20352
|
|
@@ -6135,7 +6135,9 @@ class TagSpecification(AbstractModel):
|
|
6135
6135
|
|
6136
6136
|
def __init__(self):
|
6137
6137
|
r"""
|
6138
|
-
:param _ResourceType: 标签绑定的资源类型,当前支持类型:
|
6138
|
+
:param _ResourceType: 标签绑定的资源类型,当前支持类型:
|
6139
|
+
1.cluster:集群相关接口,TagSpecification 的 ResourceType 传参为 cluster
|
6140
|
+
2.machine:节点池相关接口,如:CreateNodePool, DescribeNodePools 等,TagSpecification 的 ResourceType 传参为 machine
|
6139
6141
|
注意:此字段可能返回 null,表示取不到有效值。
|
6140
6142
|
:type ResourceType: str
|
6141
6143
|
:param _Tags: 标签对列表
|
@@ -6147,7 +6149,9 @@ class TagSpecification(AbstractModel):
|
|
6147
6149
|
|
6148
6150
|
@property
|
6149
6151
|
def ResourceType(self):
|
6150
|
-
"""标签绑定的资源类型,当前支持类型:
|
6152
|
+
"""标签绑定的资源类型,当前支持类型:
|
6153
|
+
1.cluster:集群相关接口,TagSpecification 的 ResourceType 传参为 cluster
|
6154
|
+
2.machine:节点池相关接口,如:CreateNodePool, DescribeNodePools 等,TagSpecification 的 ResourceType 传参为 machine
|
6151
6155
|
注意:此字段可能返回 null,表示取不到有效值。
|
6152
6156
|
:rtype: str
|
6153
6157
|
"""
|
@@ -9519,7 +9519,28 @@ class RecognizeConfig(AbstractModel):
|
|
9519
9519
|
:type AlternativeLanguage: list of str
|
9520
9520
|
:param _Model: 目前已不支持
|
9521
9521
|
:type Model: str
|
9522
|
-
:param _TranslationLanguage:
|
9522
|
+
:param _TranslationLanguage: 填写则翻译,目前支持的语言:
|
9523
|
+
中文: zh
|
9524
|
+
英语: en
|
9525
|
+
越南语: vi
|
9526
|
+
日语: ja
|
9527
|
+
韩语: ko
|
9528
|
+
印度尼西亚语: id
|
9529
|
+
泰语: th
|
9530
|
+
葡萄牙语: pt
|
9531
|
+
土耳其语: tr
|
9532
|
+
阿拉伯语: ar
|
9533
|
+
西班牙语: es
|
9534
|
+
印地语: hi
|
9535
|
+
法语: fr
|
9536
|
+
马来语: ms
|
9537
|
+
菲律宾语: fil
|
9538
|
+
德语: de
|
9539
|
+
意大利语: it
|
9540
|
+
俄语: ru
|
9541
|
+
瑞典语: sv
|
9542
|
+
挪威语: no
|
9543
|
+
丹麦语: da
|
9523
9544
|
:type TranslationLanguage: str
|
9524
9545
|
"""
|
9525
9546
|
self._Language = None
|
@@ -9598,7 +9619,28 @@ class RecognizeConfig(AbstractModel):
|
|
9598
9619
|
def TranslationLanguage(self):
|
9599
9620
|
warnings.warn("parameter `TranslationLanguage` is deprecated", DeprecationWarning)
|
9600
9621
|
|
9601
|
-
"""
|
9622
|
+
"""填写则翻译,目前支持的语言:
|
9623
|
+
中文: zh
|
9624
|
+
英语: en
|
9625
|
+
越南语: vi
|
9626
|
+
日语: ja
|
9627
|
+
韩语: ko
|
9628
|
+
印度尼西亚语: id
|
9629
|
+
泰语: th
|
9630
|
+
葡萄牙语: pt
|
9631
|
+
土耳其语: tr
|
9632
|
+
阿拉伯语: ar
|
9633
|
+
西班牙语: es
|
9634
|
+
印地语: hi
|
9635
|
+
法语: fr
|
9636
|
+
马来语: ms
|
9637
|
+
菲律宾语: fil
|
9638
|
+
德语: de
|
9639
|
+
意大利语: it
|
9640
|
+
俄语: ru
|
9641
|
+
瑞典语: sv
|
9642
|
+
挪威语: no
|
9643
|
+
丹麦语: da
|
9602
9644
|
:rtype: str
|
9603
9645
|
"""
|
9604
9646
|
return self._TranslationLanguage
|
@@ -16042,11 +16042,11 @@ class DescribeNativeGatewayServerGroupsRequest(AbstractModel):
|
|
16042
16042
|
r"""
|
16043
16043
|
:param _GatewayId: 云原生API网关实例ID。
|
16044
16044
|
:type GatewayId: str
|
16045
|
-
:param _Offset:
|
16045
|
+
:param _Offset: 偏移量,默认为 0。
|
16046
16046
|
:type Offset: int
|
16047
|
-
:param _Limit:
|
16047
|
+
:param _Limit: 返回数量,默认为 20。
|
16048
16048
|
:type Limit: int
|
16049
|
-
:param _Filters:
|
16049
|
+
:param _Filters: 过滤参数,支持按照分组名称、分组ID(Name、GroupId)筛选
|
16050
16050
|
:type Filters: list of Filter
|
16051
16051
|
"""
|
16052
16052
|
self._GatewayId = None
|
@@ -16067,7 +16067,7 @@ class DescribeNativeGatewayServerGroupsRequest(AbstractModel):
|
|
16067
16067
|
|
16068
16068
|
@property
|
16069
16069
|
def Offset(self):
|
16070
|
-
"""
|
16070
|
+
"""偏移量,默认为 0。
|
16071
16071
|
:rtype: int
|
16072
16072
|
"""
|
16073
16073
|
return self._Offset
|
@@ -16078,7 +16078,7 @@ class DescribeNativeGatewayServerGroupsRequest(AbstractModel):
|
|
16078
16078
|
|
16079
16079
|
@property
|
16080
16080
|
def Limit(self):
|
16081
|
-
"""
|
16081
|
+
"""返回数量,默认为 20。
|
16082
16082
|
:rtype: int
|
16083
16083
|
"""
|
16084
16084
|
return self._Limit
|
@@ -16089,7 +16089,7 @@ class DescribeNativeGatewayServerGroupsRequest(AbstractModel):
|
|
16089
16089
|
|
16090
16090
|
@property
|
16091
16091
|
def Filters(self):
|
16092
|
-
"""
|
16092
|
+
"""过滤参数,支持按照分组名称、分组ID(Name、GroupId)筛选
|
16093
16093
|
:rtype: list of Filter
|
16094
16094
|
"""
|
16095
16095
|
return self._Filters
|
@@ -21398,10 +21398,13 @@ class CreateVodDomainRequest(AbstractModel):
|
|
21398
21398
|
<li>Global: 全球范围。</li>
|
21399
21399
|
如果没有设置 AccelerateArea, 点播会根据用户在腾讯云设置的地域信息自动开通中国境内或者中国境外的 CDN 加速。开启中国境内加速的域名,需要先[备案域名](/document/product/243/18905)。
|
21400
21400
|
:type AccelerateArea: str
|
21401
|
+
:param _Type: 域名类型,取值有: <li>VOD:使用 VOD 产品分发的域名;</li> <li>EdgeOne:使用 EdgeOne 产品分发的域名。</li>不填默认取值为 VOD 。
|
21402
|
+
:type Type: str
|
21401
21403
|
"""
|
21402
21404
|
self._Domain = None
|
21403
21405
|
self._SubAppId = None
|
21404
21406
|
self._AccelerateArea = None
|
21407
|
+
self._Type = None
|
21405
21408
|
|
21406
21409
|
@property
|
21407
21410
|
def Domain(self):
|
@@ -21440,11 +21443,23 @@ class CreateVodDomainRequest(AbstractModel):
|
|
21440
21443
|
def AccelerateArea(self, AccelerateArea):
|
21441
21444
|
self._AccelerateArea = AccelerateArea
|
21442
21445
|
|
21446
|
+
@property
|
21447
|
+
def Type(self):
|
21448
|
+
"""域名类型,取值有: <li>VOD:使用 VOD 产品分发的域名;</li> <li>EdgeOne:使用 EdgeOne 产品分发的域名。</li>不填默认取值为 VOD 。
|
21449
|
+
:rtype: str
|
21450
|
+
"""
|
21451
|
+
return self._Type
|
21452
|
+
|
21453
|
+
@Type.setter
|
21454
|
+
def Type(self, Type):
|
21455
|
+
self._Type = Type
|
21456
|
+
|
21443
21457
|
|
21444
21458
|
def _deserialize(self, params):
|
21445
21459
|
self._Domain = params.get("Domain")
|
21446
21460
|
self._SubAppId = params.get("SubAppId")
|
21447
21461
|
self._AccelerateArea = params.get("AccelerateArea")
|
21462
|
+
self._Type = params.get("Type")
|
21448
21463
|
memeber_set = set(params.keys())
|
21449
21464
|
for name, value in vars(self).items():
|
21450
21465
|
property_name = name[1:]
|
@@ -33057,6 +33072,8 @@ class DomainDetailInfo(AbstractModel):
|
|
33057
33072
|
:param _IPFilterPolicy: IP 访问限制配置信息。
|
33058
33073
|
注意:此字段可能返回 null,表示取不到有效值。
|
33059
33074
|
:type IPFilterPolicy: :class:`tencentcloud.vod.v20180717.models.IPFilterPolicy`
|
33075
|
+
:param _Type: 域名类型,取值有: <li>VOD:使用 VOD 产品分发的域名;</li> <li>EdgeOne:使用 EdgeOne 产品分发的域名。</li>
|
33076
|
+
:type Type: str
|
33060
33077
|
"""
|
33061
33078
|
self._Domain = None
|
33062
33079
|
self._AccelerateAreaInfos = None
|
@@ -33067,6 +33084,7 @@ class DomainDetailInfo(AbstractModel):
|
|
33067
33084
|
self._CreateTime = None
|
33068
33085
|
self._QUICConfig = None
|
33069
33086
|
self._IPFilterPolicy = None
|
33087
|
+
self._Type = None
|
33070
33088
|
|
33071
33089
|
@property
|
33072
33090
|
def Domain(self):
|
@@ -33177,6 +33195,17 @@ class DomainDetailInfo(AbstractModel):
|
|
33177
33195
|
def IPFilterPolicy(self, IPFilterPolicy):
|
33178
33196
|
self._IPFilterPolicy = IPFilterPolicy
|
33179
33197
|
|
33198
|
+
@property
|
33199
|
+
def Type(self):
|
33200
|
+
"""域名类型,取值有: <li>VOD:使用 VOD 产品分发的域名;</li> <li>EdgeOne:使用 EdgeOne 产品分发的域名。</li>
|
33201
|
+
:rtype: str
|
33202
|
+
"""
|
33203
|
+
return self._Type
|
33204
|
+
|
33205
|
+
@Type.setter
|
33206
|
+
def Type(self, Type):
|
33207
|
+
self._Type = Type
|
33208
|
+
|
33180
33209
|
|
33181
33210
|
def _deserialize(self, params):
|
33182
33211
|
self._Domain = params.get("Domain")
|
@@ -33203,6 +33232,7 @@ class DomainDetailInfo(AbstractModel):
|
|
33203
33232
|
if params.get("IPFilterPolicy") is not None:
|
33204
33233
|
self._IPFilterPolicy = IPFilterPolicy()
|
33205
33234
|
self._IPFilterPolicy._deserialize(params.get("IPFilterPolicy"))
|
33235
|
+
self._Type = params.get("Type")
|
33206
33236
|
memeber_set = set(params.keys())
|
33207
33237
|
for name, value in vars(self).items():
|
33208
33238
|
property_name = name[1:]
|
@@ -28446,6 +28446,8 @@ class DescribePrivateNatGatewayTranslationAclRulesRequest(AbstractModel):
|
|
28446
28446
|
:type Offset: int
|
28447
28447
|
:param _Limit: 返回数目,默认值为20。
|
28448
28448
|
:type Limit: int
|
28449
|
+
:param _Description: ACL规则描述
|
28450
|
+
:type Description: str
|
28449
28451
|
"""
|
28450
28452
|
self._NatGatewayId = None
|
28451
28453
|
self._TranslationDirection = None
|
@@ -28454,6 +28456,7 @@ class DescribePrivateNatGatewayTranslationAclRulesRequest(AbstractModel):
|
|
28454
28456
|
self._OriginalIp = None
|
28455
28457
|
self._Offset = None
|
28456
28458
|
self._Limit = None
|
28459
|
+
self._Description = None
|
28457
28460
|
|
28458
28461
|
@property
|
28459
28462
|
def NatGatewayId(self):
|
@@ -28532,6 +28535,17 @@ class DescribePrivateNatGatewayTranslationAclRulesRequest(AbstractModel):
|
|
28532
28535
|
def Limit(self, Limit):
|
28533
28536
|
self._Limit = Limit
|
28534
28537
|
|
28538
|
+
@property
|
28539
|
+
def Description(self):
|
28540
|
+
"""ACL规则描述
|
28541
|
+
:rtype: str
|
28542
|
+
"""
|
28543
|
+
return self._Description
|
28544
|
+
|
28545
|
+
@Description.setter
|
28546
|
+
def Description(self, Description):
|
28547
|
+
self._Description = Description
|
28548
|
+
|
28535
28549
|
|
28536
28550
|
def _deserialize(self, params):
|
28537
28551
|
self._NatGatewayId = params.get("NatGatewayId")
|
@@ -28541,6 +28555,7 @@ class DescribePrivateNatGatewayTranslationAclRulesRequest(AbstractModel):
|
|
28541
28555
|
self._OriginalIp = params.get("OriginalIp")
|
28542
28556
|
self._Offset = params.get("Offset")
|
28543
28557
|
self._Limit = params.get("Limit")
|
28558
|
+
self._Description = params.get("Description")
|
28544
28559
|
memeber_set = set(params.keys())
|
28545
28560
|
for name, value in vars(self).items():
|
28546
28561
|
property_name = name[1:]
|
@@ -61382,6 +61397,8 @@ class TranslationAclRule(AbstractModel):
|
|
61382
61397
|
:type AclRuleId: int
|
61383
61398
|
:param _Action: 是否匹配。
|
61384
61399
|
:type Action: int
|
61400
|
+
:param _Description: ACL规则描述
|
61401
|
+
:type Description: str
|
61385
61402
|
"""
|
61386
61403
|
self._Protocol = None
|
61387
61404
|
self._SourcePort = None
|
@@ -61390,6 +61407,7 @@ class TranslationAclRule(AbstractModel):
|
|
61390
61407
|
self._DestinationCidr = None
|
61391
61408
|
self._AclRuleId = None
|
61392
61409
|
self._Action = None
|
61410
|
+
self._Description = None
|
61393
61411
|
|
61394
61412
|
@property
|
61395
61413
|
def Protocol(self):
|
@@ -61468,6 +61486,17 @@ class TranslationAclRule(AbstractModel):
|
|
61468
61486
|
def Action(self, Action):
|
61469
61487
|
self._Action = Action
|
61470
61488
|
|
61489
|
+
@property
|
61490
|
+
def Description(self):
|
61491
|
+
"""ACL规则描述
|
61492
|
+
:rtype: str
|
61493
|
+
"""
|
61494
|
+
return self._Description
|
61495
|
+
|
61496
|
+
@Description.setter
|
61497
|
+
def Description(self, Description):
|
61498
|
+
self._Description = Description
|
61499
|
+
|
61471
61500
|
|
61472
61501
|
def _deserialize(self, params):
|
61473
61502
|
self._Protocol = params.get("Protocol")
|
@@ -61477,6 +61506,7 @@ class TranslationAclRule(AbstractModel):
|
|
61477
61506
|
self._DestinationCidr = params.get("DestinationCidr")
|
61478
61507
|
self._AclRuleId = params.get("AclRuleId")
|
61479
61508
|
self._Action = params.get("Action")
|
61509
|
+
self._Description = params.get("Description")
|
61480
61510
|
memeber_set = set(params.keys())
|
61481
61511
|
for name, value in vars(self).items():
|
61482
61512
|
property_name = name[1:]
|
@@ -24865,11 +24865,11 @@ class DescribeInstanceLogDetailRequest(AbstractModel):
|
|
24865
24865
|
:type LogLevelType: str
|
24866
24866
|
:param _ExecutionFileType: 文件类型,Log/Code
|
24867
24867
|
:type ExecutionFileType: str
|
24868
|
-
:param _ExecutionJobId: 统一执行平台执行id
|
24868
|
+
:param _ExecutionJobId: 统一执行平台执行id, 注意: ExecutionJobId 跟 "BrokerIp+OriginFileName" 必须有一个不为空
|
24869
24869
|
:type ExecutionJobId: str
|
24870
|
-
:param _BrokerIp: 服务器Ip
|
24870
|
+
:param _BrokerIp: 服务器Ip, 注意: "BrokerIp+OriginFileName"跟ExecutionJobId必须有一个不为空
|
24871
24871
|
:type BrokerIp: str
|
24872
|
-
:param _OriginFileName: 文件Name
|
24872
|
+
:param _OriginFileName: 文件Name, 注意: "BrokerIp+OriginFileName"跟ExecutionJobId必须有一个不为空
|
24873
24873
|
:type OriginFileName: str
|
24874
24874
|
:param _StartCount: 起始行
|
24875
24875
|
:type StartCount: int
|
@@ -24950,7 +24950,7 @@ class DescribeInstanceLogDetailRequest(AbstractModel):
|
|
24950
24950
|
|
24951
24951
|
@property
|
24952
24952
|
def ExecutionJobId(self):
|
24953
|
-
"""统一执行平台执行id
|
24953
|
+
"""统一执行平台执行id, 注意: ExecutionJobId 跟 "BrokerIp+OriginFileName" 必须有一个不为空
|
24954
24954
|
:rtype: str
|
24955
24955
|
"""
|
24956
24956
|
return self._ExecutionJobId
|
@@ -24961,7 +24961,7 @@ class DescribeInstanceLogDetailRequest(AbstractModel):
|
|
24961
24961
|
|
24962
24962
|
@property
|
24963
24963
|
def BrokerIp(self):
|
24964
|
-
"""服务器Ip
|
24964
|
+
"""服务器Ip, 注意: "BrokerIp+OriginFileName"跟ExecutionJobId必须有一个不为空
|
24965
24965
|
:rtype: str
|
24966
24966
|
"""
|
24967
24967
|
return self._BrokerIp
|
@@ -24972,7 +24972,7 @@ class DescribeInstanceLogDetailRequest(AbstractModel):
|
|
24972
24972
|
|
24973
24973
|
@property
|
24974
24974
|
def OriginFileName(self):
|
24975
|
-
"""文件Name
|
24975
|
+
"""文件Name, 注意: "BrokerIp+OriginFileName"跟ExecutionJobId必须有一个不为空
|
24976
24976
|
:rtype: str
|
24977
24977
|
"""
|
24978
24978
|
return self._OriginFileName
|