tencentcloud-sdk-python-ga2 3.1.71__tar.gz → 3.1.101__tar.gz
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_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/setup.py +1 -1
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/tencentcloud/ga2/v20250115/errorcodes.py +21 -0
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/tencentcloud/ga2/v20250115/ga2_client.py +23 -0
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/tencentcloud/ga2/v20250115/ga2_client_async.py +18 -0
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/tencentcloud/ga2/v20250115/models.py +117 -38
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/tencentcloud_sdk_python_ga2.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_ga2-3.1.101/tencentcloud_sdk_python_ga2.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_ga2-3.1.71/tencentcloud_sdk_python_ga2.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/README.rst +0 -0
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/setup.cfg +0 -0
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/tencentcloud/ga2/__init__.py +0 -0
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/tencentcloud/ga2/v20250115/__init__.py +0 -0
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/tencentcloud_sdk_python_ga2.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/tencentcloud_sdk_python_ga2.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_ga2-3.1.71 → tencentcloud_sdk_python_ga2-3.1.101}/tencentcloud_sdk_python_ga2.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ga2
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.101
|
|
4
4
|
Summary: Tencent Cloud Ga2 SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.101
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-ga2',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.101,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Ga2 SDK for Python',
|
|
@@ -116,6 +116,9 @@ INVALIDPARAMETERVALUE_SPECIALCHARACTERS = 'InvalidParameterValue.SpecialCharacte
|
|
|
116
116
|
# 参数值 `%(value)s` 仅能含有字符 `%(key)s`。
|
|
117
117
|
INVALIDPARAMETERVALUE_SPECIFICCHARACTERS = 'InvalidParameterValue.SpecificCharacters'
|
|
118
118
|
|
|
119
|
+
# 异步任务ID不存在。
|
|
120
|
+
INVALIDPARAMETERVALUE_TASKNOTFOUND = 'InvalidParameterValue.TaskNotFound'
|
|
121
|
+
|
|
119
122
|
# 当前TCP协议系列监听器端口已和存量监听器端口重复。
|
|
120
123
|
INVALIDPARAMETERVALUE_TCPSERIESLISTENERPORTEQUAL = 'InvalidParameterValue.TcpSeriesListenerPortEqual'
|
|
121
124
|
|
|
@@ -191,6 +194,9 @@ UNSUPPORTEDOPERATION_EXISTACCELERATORAREA = 'UnsupportedOperation.ExistAccelerat
|
|
|
191
194
|
# 存在默认准许所有流量访问通道访问控制策略,不支持当前操作。
|
|
192
195
|
UNSUPPORTEDOPERATION_EXISTACCEPTACLPOLICY = 'UnsupportedOperation.ExistAcceptAclPolicy'
|
|
193
196
|
|
|
197
|
+
# 存在访问日志,不支持当前操作。
|
|
198
|
+
UNSUPPORTEDOPERATION_EXISTACCESSLOG = 'UnsupportedOperation.ExistAccessLog'
|
|
199
|
+
|
|
194
200
|
# 配置了策略为拒绝的访问规则,不支持当前操作。
|
|
195
201
|
UNSUPPORTEDOPERATION_EXISTDROPACCEPTACLRULE = 'UnsupportedOperation.ExistDropAcceptAclRule'
|
|
196
202
|
|
|
@@ -209,6 +215,9 @@ UNSUPPORTEDOPERATION_EXISTLISTENER = 'UnsupportedOperation.ExistListener'
|
|
|
209
215
|
# 转发规则不支持配置默认终端节点组。
|
|
210
216
|
UNSUPPORTEDOPERATION_FORWARDGROUPFORWARDINGRULEUNSUPPORTEDDEFAULTENDPOINTGROUP = 'UnsupportedOperation.ForwardGroupForwardingRuleUnsupportedDefaultEndpointGroup'
|
|
211
217
|
|
|
218
|
+
# 监听器和终端节点组的HTTP最大协议版本需要保持一致。
|
|
219
|
+
UNSUPPORTEDOPERATION_HTTPVERSIONINCONSISTENT = 'UnsupportedOperation.HttpVersionInconsistent'
|
|
220
|
+
|
|
212
221
|
# 实例不是运行状态,不支持当前操作。
|
|
213
222
|
UNSUPPORTEDOPERATION_INSTANCENOTRUNNING = 'UnsupportedOperation.InstanceNotRunning'
|
|
214
223
|
|
|
@@ -218,6 +227,9 @@ UNSUPPORTEDOPERATION_INSTANCESTATENOTALLOWEDOPERATE = 'UnsupportedOperation.Inst
|
|
|
218
227
|
# 账户余额不足。
|
|
219
228
|
UNSUPPORTEDOPERATION_INSUFFICIENTFUNDS = 'UnsupportedOperation.InsufficientFunds'
|
|
220
229
|
|
|
230
|
+
# 当前全球加速实例未开通内网回源特性。
|
|
231
|
+
UNSUPPORTEDOPERATION_INTERNALENDPOINTFEATURENOTENABLED = 'UnsupportedOperation.InternalEndpointFeatureNotEnabled'
|
|
232
|
+
|
|
221
233
|
# 不支持IPV6。
|
|
222
234
|
UNSUPPORTEDOPERATION_IPV6NOTSUPPORT = 'UnsupportedOperation.Ipv6NotSupport'
|
|
223
235
|
|
|
@@ -227,12 +239,21 @@ UNSUPPORTEDOPERATION_LISTENERPORTSEGMENT = 'UnsupportedOperation.ListenerPortSeg
|
|
|
227
239
|
# 当前全球加速实例没有设置跨境类型。无法创建跨境加速地域或终端节点组。
|
|
228
240
|
UNSUPPORTEDOPERATION_NOTSETCROSSBORDERTYPE = 'UnsupportedOperation.NotSetCrossBorderType'
|
|
229
241
|
|
|
242
|
+
# 仅TCP监听器,支持通过TOA获取客户端IP。
|
|
243
|
+
UNSUPPORTEDOPERATION_ONLYTCPLISTENERSUPPORTTOA = 'UnsupportedOperation.OnlyTcpListenerSupportToa'
|
|
244
|
+
|
|
230
245
|
# 当前操作使终端节点组域名和全球加速实例域名一致,不支持当前操作。
|
|
231
246
|
UNSUPPORTEDOPERATION_SAMEDOMAIN = 'UnsupportedOperation.SameDomain'
|
|
232
247
|
|
|
233
248
|
# 当前操作使终端节点组域名和全球加速实例加速地域公网IP一致,不支持当前操作。
|
|
234
249
|
UNSUPPORTEDOPERATION_SAMEPUBLICIP = 'UnsupportedOperation.SamePublicIp'
|
|
235
250
|
|
|
251
|
+
# 当前全球加速实例未开通TOA特性,请联系腾讯云客服申请。
|
|
252
|
+
UNSUPPORTEDOPERATION_TOAFEATURENOTENABLED = 'UnsupportedOperation.TOAFeatureNotEnabled'
|
|
253
|
+
|
|
254
|
+
# 不支持创建三网类型的加速地域。
|
|
255
|
+
UNSUPPORTEDOPERATION_THREENETWORKSACCELERATEAREAS = 'UnsupportedOperation.ThreeNetworksAccelerateAreas'
|
|
256
|
+
|
|
236
257
|
# 不支持创建三网类型的终端节点组。
|
|
237
258
|
UNSUPPORTEDOPERATION_THREENETWORKSENDPOINTGROUP = 'UnsupportedOperation.ThreeNetworksEndpointGroup'
|
|
238
259
|
|
|
@@ -417,6 +417,29 @@ class Ga2Client(AbstractClient):
|
|
|
417
417
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
418
418
|
|
|
419
419
|
|
|
420
|
+
def DescribeTaskResult(self, request):
|
|
421
|
+
r"""查询异步任务结果
|
|
422
|
+
|
|
423
|
+
:param request: Request instance for DescribeTaskResult.
|
|
424
|
+
:type request: :class:`tencentcloud.ga2.v20250115.models.DescribeTaskResultRequest`
|
|
425
|
+
:rtype: :class:`tencentcloud.ga2.v20250115.models.DescribeTaskResultResponse`
|
|
426
|
+
|
|
427
|
+
"""
|
|
428
|
+
try:
|
|
429
|
+
params = request._serialize()
|
|
430
|
+
headers = request.headers
|
|
431
|
+
body = self.call("DescribeTaskResult", params, headers=headers)
|
|
432
|
+
response = json.loads(body)
|
|
433
|
+
model = models.DescribeTaskResultResponse()
|
|
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
|
+
|
|
420
443
|
def ModifyAccelerateAreas(self, request):
|
|
421
444
|
r"""修改加速地域
|
|
422
445
|
|
|
@@ -331,6 +331,24 @@ class Ga2Client(AbstractClient):
|
|
|
331
331
|
|
|
332
332
|
return await self.call_and_deserialize(**kwargs)
|
|
333
333
|
|
|
334
|
+
async def DescribeTaskResult(
|
|
335
|
+
self,
|
|
336
|
+
request: models.DescribeTaskResultRequest,
|
|
337
|
+
opts: Dict = None,
|
|
338
|
+
) -> models.DescribeTaskResultResponse:
|
|
339
|
+
"""
|
|
340
|
+
查询异步任务结果
|
|
341
|
+
"""
|
|
342
|
+
|
|
343
|
+
kwargs = {}
|
|
344
|
+
kwargs["action"] = "DescribeTaskResult"
|
|
345
|
+
kwargs["params"] = request._serialize()
|
|
346
|
+
kwargs["resp_cls"] = models.DescribeTaskResultResponse
|
|
347
|
+
kwargs["headers"] = request.headers
|
|
348
|
+
kwargs["opts"] = opts or {}
|
|
349
|
+
|
|
350
|
+
return await self.call_and_deserialize(**kwargs)
|
|
351
|
+
|
|
334
352
|
async def ModifyAccelerateAreas(
|
|
335
353
|
self,
|
|
336
354
|
request: models.ModifyAccelerateAreasRequest,
|
|
@@ -2624,6 +2624,85 @@ class DescribeListenersResponse(AbstractModel):
|
|
|
2624
2624
|
self._RequestId = params.get("RequestId")
|
|
2625
2625
|
|
|
2626
2626
|
|
|
2627
|
+
class DescribeTaskResultRequest(AbstractModel):
|
|
2628
|
+
r"""DescribeTaskResult请求参数结构体
|
|
2629
|
+
|
|
2630
|
+
"""
|
|
2631
|
+
|
|
2632
|
+
def __init__(self):
|
|
2633
|
+
r"""
|
|
2634
|
+
:param _TaskId: 异步任务ID。
|
|
2635
|
+
:type TaskId: str
|
|
2636
|
+
"""
|
|
2637
|
+
self._TaskId = None
|
|
2638
|
+
|
|
2639
|
+
@property
|
|
2640
|
+
def TaskId(self):
|
|
2641
|
+
r"""异步任务ID。
|
|
2642
|
+
:rtype: str
|
|
2643
|
+
"""
|
|
2644
|
+
return self._TaskId
|
|
2645
|
+
|
|
2646
|
+
@TaskId.setter
|
|
2647
|
+
def TaskId(self, TaskId):
|
|
2648
|
+
self._TaskId = TaskId
|
|
2649
|
+
|
|
2650
|
+
|
|
2651
|
+
def _deserialize(self, params):
|
|
2652
|
+
self._TaskId = params.get("TaskId")
|
|
2653
|
+
memeber_set = set(params.keys())
|
|
2654
|
+
for name, value in vars(self).items():
|
|
2655
|
+
property_name = name[1:]
|
|
2656
|
+
if property_name in memeber_set:
|
|
2657
|
+
memeber_set.remove(property_name)
|
|
2658
|
+
if len(memeber_set) > 0:
|
|
2659
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2660
|
+
|
|
2661
|
+
|
|
2662
|
+
|
|
2663
|
+
class DescribeTaskResultResponse(AbstractModel):
|
|
2664
|
+
r"""DescribeTaskResult返回参数结构体
|
|
2665
|
+
|
|
2666
|
+
"""
|
|
2667
|
+
|
|
2668
|
+
def __init__(self):
|
|
2669
|
+
r"""
|
|
2670
|
+
:param _Status: 任务状态。
|
|
2671
|
+
:type Status: str
|
|
2672
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2673
|
+
:type RequestId: str
|
|
2674
|
+
"""
|
|
2675
|
+
self._Status = None
|
|
2676
|
+
self._RequestId = None
|
|
2677
|
+
|
|
2678
|
+
@property
|
|
2679
|
+
def Status(self):
|
|
2680
|
+
r"""任务状态。
|
|
2681
|
+
:rtype: str
|
|
2682
|
+
"""
|
|
2683
|
+
return self._Status
|
|
2684
|
+
|
|
2685
|
+
@Status.setter
|
|
2686
|
+
def Status(self, Status):
|
|
2687
|
+
self._Status = Status
|
|
2688
|
+
|
|
2689
|
+
@property
|
|
2690
|
+
def RequestId(self):
|
|
2691
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2692
|
+
:rtype: str
|
|
2693
|
+
"""
|
|
2694
|
+
return self._RequestId
|
|
2695
|
+
|
|
2696
|
+
@RequestId.setter
|
|
2697
|
+
def RequestId(self, RequestId):
|
|
2698
|
+
self._RequestId = RequestId
|
|
2699
|
+
|
|
2700
|
+
|
|
2701
|
+
def _deserialize(self, params):
|
|
2702
|
+
self._Status = params.get("Status")
|
|
2703
|
+
self._RequestId = params.get("RequestId")
|
|
2704
|
+
|
|
2705
|
+
|
|
2627
2706
|
class EndpointConfigurations(AbstractModel):
|
|
2628
2707
|
r"""终端节点配置
|
|
2629
2708
|
|
|
@@ -2631,13 +2710,13 @@ class EndpointConfigurations(AbstractModel):
|
|
|
2631
2710
|
|
|
2632
2711
|
def __init__(self):
|
|
2633
2712
|
r"""
|
|
2634
|
-
:param _EndpointType:
|
|
2713
|
+
:param _EndpointType: <p>域名类型。可选值'Domain', 'PublicIp'。</p>
|
|
2635
2714
|
:type EndpointType: str
|
|
2636
|
-
:param _EndpointService:
|
|
2715
|
+
:param _EndpointService: <p>域名。</p>
|
|
2637
2716
|
:type EndpointService: str
|
|
2638
|
-
:param _Weight:
|
|
2717
|
+
:param _Weight: <p>权重。</p>
|
|
2639
2718
|
:type Weight: int
|
|
2640
|
-
:param _HealthCheckStatus:
|
|
2719
|
+
:param _HealthCheckStatus: <p>健康检查状态;HEALTH:健康;UNHEALTH:不健康。</p>
|
|
2641
2720
|
:type HealthCheckStatus: str
|
|
2642
2721
|
"""
|
|
2643
2722
|
self._EndpointType = None
|
|
@@ -2647,7 +2726,7 @@ class EndpointConfigurations(AbstractModel):
|
|
|
2647
2726
|
|
|
2648
2727
|
@property
|
|
2649
2728
|
def EndpointType(self):
|
|
2650
|
-
r"""
|
|
2729
|
+
r"""<p>域名类型。可选值'Domain', 'PublicIp'。</p>
|
|
2651
2730
|
:rtype: str
|
|
2652
2731
|
"""
|
|
2653
2732
|
return self._EndpointType
|
|
@@ -2658,7 +2737,7 @@ class EndpointConfigurations(AbstractModel):
|
|
|
2658
2737
|
|
|
2659
2738
|
@property
|
|
2660
2739
|
def EndpointService(self):
|
|
2661
|
-
r"""
|
|
2740
|
+
r"""<p>域名。</p>
|
|
2662
2741
|
:rtype: str
|
|
2663
2742
|
"""
|
|
2664
2743
|
return self._EndpointService
|
|
@@ -2669,7 +2748,7 @@ class EndpointConfigurations(AbstractModel):
|
|
|
2669
2748
|
|
|
2670
2749
|
@property
|
|
2671
2750
|
def Weight(self):
|
|
2672
|
-
r"""
|
|
2751
|
+
r"""<p>权重。</p>
|
|
2673
2752
|
:rtype: int
|
|
2674
2753
|
"""
|
|
2675
2754
|
return self._Weight
|
|
@@ -2680,7 +2759,7 @@ class EndpointConfigurations(AbstractModel):
|
|
|
2680
2759
|
|
|
2681
2760
|
@property
|
|
2682
2761
|
def HealthCheckStatus(self):
|
|
2683
|
-
r"""
|
|
2762
|
+
r"""<p>健康检查状态;HEALTH:健康;UNHEALTH:不健康。</p>
|
|
2684
2763
|
:rtype: str
|
|
2685
2764
|
"""
|
|
2686
2765
|
return self._HealthCheckStatus
|
|
@@ -5259,33 +5338,33 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5259
5338
|
|
|
5260
5339
|
def __init__(self):
|
|
5261
5340
|
r"""
|
|
5262
|
-
:param _GlobalAcceleratorId:
|
|
5341
|
+
:param _GlobalAcceleratorId: <p>全球加速实例ID。</p>
|
|
5263
5342
|
:type GlobalAcceleratorId: str
|
|
5264
|
-
:param _ListenerId:
|
|
5343
|
+
:param _ListenerId: <p>监听器ID。</p>
|
|
5265
5344
|
:type ListenerId: str
|
|
5266
|
-
:param _Name:
|
|
5345
|
+
:param _Name: <p>名称,最大长度不能超过60个字节。</p>
|
|
5267
5346
|
:type Name: str
|
|
5268
|
-
:param _Description:
|
|
5347
|
+
:param _Description: <p>描述信息,最大长度不能超过100个字节。</p>
|
|
5269
5348
|
:type Description: str
|
|
5270
|
-
:param _IdleTimeout:
|
|
5349
|
+
:param _IdleTimeout: <p>连接空闲等待时间。</p>
|
|
5271
5350
|
:type IdleTimeout: int
|
|
5272
|
-
:param _ClientAffinity:
|
|
5351
|
+
:param _ClientAffinity: <p>是否开启会话保持。</p>
|
|
5273
5352
|
:type ClientAffinity: str
|
|
5274
|
-
:param _ClientAffinityTime:
|
|
5353
|
+
:param _ClientAffinityTime: <p>会话保持时间。</p>
|
|
5275
5354
|
:type ClientAffinityTime: int
|
|
5276
|
-
:param _RequestTimeout:
|
|
5355
|
+
:param _RequestTimeout: <p>请求超时时间。</p>
|
|
5277
5356
|
:type RequestTimeout: int
|
|
5278
|
-
:param _XForwardedForRealIp:
|
|
5357
|
+
:param _XForwardedForRealIp: <p>是否打开七层获取源IP方式。</p>
|
|
5279
5358
|
:type XForwardedForRealIp: bool
|
|
5280
|
-
:param _CertificationType:
|
|
5359
|
+
:param _CertificationType: <p>解析方式。UNIDIRECTIONAL:双向。MUTUAL:单向。</p>
|
|
5281
5360
|
:type CertificationType: str
|
|
5282
|
-
:param _CipherPolicyId:
|
|
5361
|
+
:param _CipherPolicyId: <p>加密算法套件。</p>
|
|
5283
5362
|
:type CipherPolicyId: str
|
|
5284
|
-
:param _ServerCertificates:
|
|
5363
|
+
:param _ServerCertificates: <p>服务器证书。</p>
|
|
5285
5364
|
:type ServerCertificates: list of str
|
|
5286
|
-
:param _ClientCaCertificates:
|
|
5365
|
+
:param _ClientCaCertificates: <p>客户端证书。</p>
|
|
5287
5366
|
:type ClientCaCertificates: list of str
|
|
5288
|
-
:param _GetRealIpType:
|
|
5367
|
+
:param _GetRealIpType: <p>四层获取源IP方式。</p>
|
|
5289
5368
|
:type GetRealIpType: str
|
|
5290
5369
|
"""
|
|
5291
5370
|
self._GlobalAcceleratorId = None
|
|
@@ -5305,7 +5384,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5305
5384
|
|
|
5306
5385
|
@property
|
|
5307
5386
|
def GlobalAcceleratorId(self):
|
|
5308
|
-
r"""
|
|
5387
|
+
r"""<p>全球加速实例ID。</p>
|
|
5309
5388
|
:rtype: str
|
|
5310
5389
|
"""
|
|
5311
5390
|
return self._GlobalAcceleratorId
|
|
@@ -5316,7 +5395,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5316
5395
|
|
|
5317
5396
|
@property
|
|
5318
5397
|
def ListenerId(self):
|
|
5319
|
-
r"""
|
|
5398
|
+
r"""<p>监听器ID。</p>
|
|
5320
5399
|
:rtype: str
|
|
5321
5400
|
"""
|
|
5322
5401
|
return self._ListenerId
|
|
@@ -5327,7 +5406,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5327
5406
|
|
|
5328
5407
|
@property
|
|
5329
5408
|
def Name(self):
|
|
5330
|
-
r"""
|
|
5409
|
+
r"""<p>名称,最大长度不能超过60个字节。</p>
|
|
5331
5410
|
:rtype: str
|
|
5332
5411
|
"""
|
|
5333
5412
|
return self._Name
|
|
@@ -5338,7 +5417,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5338
5417
|
|
|
5339
5418
|
@property
|
|
5340
5419
|
def Description(self):
|
|
5341
|
-
r"""
|
|
5420
|
+
r"""<p>描述信息,最大长度不能超过100个字节。</p>
|
|
5342
5421
|
:rtype: str
|
|
5343
5422
|
"""
|
|
5344
5423
|
return self._Description
|
|
@@ -5349,7 +5428,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5349
5428
|
|
|
5350
5429
|
@property
|
|
5351
5430
|
def IdleTimeout(self):
|
|
5352
|
-
r"""
|
|
5431
|
+
r"""<p>连接空闲等待时间。</p>
|
|
5353
5432
|
:rtype: int
|
|
5354
5433
|
"""
|
|
5355
5434
|
return self._IdleTimeout
|
|
@@ -5360,7 +5439,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5360
5439
|
|
|
5361
5440
|
@property
|
|
5362
5441
|
def ClientAffinity(self):
|
|
5363
|
-
r"""
|
|
5442
|
+
r"""<p>是否开启会话保持。</p>
|
|
5364
5443
|
:rtype: str
|
|
5365
5444
|
"""
|
|
5366
5445
|
return self._ClientAffinity
|
|
@@ -5371,7 +5450,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5371
5450
|
|
|
5372
5451
|
@property
|
|
5373
5452
|
def ClientAffinityTime(self):
|
|
5374
|
-
r"""
|
|
5453
|
+
r"""<p>会话保持时间。</p>
|
|
5375
5454
|
:rtype: int
|
|
5376
5455
|
"""
|
|
5377
5456
|
return self._ClientAffinityTime
|
|
@@ -5382,7 +5461,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5382
5461
|
|
|
5383
5462
|
@property
|
|
5384
5463
|
def RequestTimeout(self):
|
|
5385
|
-
r"""
|
|
5464
|
+
r"""<p>请求超时时间。</p>
|
|
5386
5465
|
:rtype: int
|
|
5387
5466
|
"""
|
|
5388
5467
|
return self._RequestTimeout
|
|
@@ -5393,7 +5472,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5393
5472
|
|
|
5394
5473
|
@property
|
|
5395
5474
|
def XForwardedForRealIp(self):
|
|
5396
|
-
r"""
|
|
5475
|
+
r"""<p>是否打开七层获取源IP方式。</p>
|
|
5397
5476
|
:rtype: bool
|
|
5398
5477
|
"""
|
|
5399
5478
|
return self._XForwardedForRealIp
|
|
@@ -5404,7 +5483,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5404
5483
|
|
|
5405
5484
|
@property
|
|
5406
5485
|
def CertificationType(self):
|
|
5407
|
-
r"""
|
|
5486
|
+
r"""<p>解析方式。UNIDIRECTIONAL:双向。MUTUAL:单向。</p>
|
|
5408
5487
|
:rtype: str
|
|
5409
5488
|
"""
|
|
5410
5489
|
return self._CertificationType
|
|
@@ -5415,7 +5494,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5415
5494
|
|
|
5416
5495
|
@property
|
|
5417
5496
|
def CipherPolicyId(self):
|
|
5418
|
-
r"""
|
|
5497
|
+
r"""<p>加密算法套件。</p>
|
|
5419
5498
|
:rtype: str
|
|
5420
5499
|
"""
|
|
5421
5500
|
return self._CipherPolicyId
|
|
@@ -5426,7 +5505,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5426
5505
|
|
|
5427
5506
|
@property
|
|
5428
5507
|
def ServerCertificates(self):
|
|
5429
|
-
r"""
|
|
5508
|
+
r"""<p>服务器证书。</p>
|
|
5430
5509
|
:rtype: list of str
|
|
5431
5510
|
"""
|
|
5432
5511
|
return self._ServerCertificates
|
|
@@ -5437,7 +5516,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5437
5516
|
|
|
5438
5517
|
@property
|
|
5439
5518
|
def ClientCaCertificates(self):
|
|
5440
|
-
r"""
|
|
5519
|
+
r"""<p>客户端证书。</p>
|
|
5441
5520
|
:rtype: list of str
|
|
5442
5521
|
"""
|
|
5443
5522
|
return self._ClientCaCertificates
|
|
@@ -5448,7 +5527,7 @@ class ModifyListenerRequest(AbstractModel):
|
|
|
5448
5527
|
|
|
5449
5528
|
@property
|
|
5450
5529
|
def GetRealIpType(self):
|
|
5451
|
-
r"""
|
|
5530
|
+
r"""<p>四层获取源IP方式。</p>
|
|
5452
5531
|
:rtype: str
|
|
5453
5532
|
"""
|
|
5454
5533
|
return self._GetRealIpType
|
|
@@ -5490,7 +5569,7 @@ class ModifyListenerResponse(AbstractModel):
|
|
|
5490
5569
|
|
|
5491
5570
|
def __init__(self):
|
|
5492
5571
|
r"""
|
|
5493
|
-
:param _TaskId:
|
|
5572
|
+
:param _TaskId: <p>任务ID。</p>
|
|
5494
5573
|
:type TaskId: str
|
|
5495
5574
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5496
5575
|
:type RequestId: str
|
|
@@ -5500,7 +5579,7 @@ class ModifyListenerResponse(AbstractModel):
|
|
|
5500
5579
|
|
|
5501
5580
|
@property
|
|
5502
5581
|
def TaskId(self):
|
|
5503
|
-
r"""
|
|
5582
|
+
r"""<p>任务ID。</p>
|
|
5504
5583
|
:rtype: str
|
|
5505
5584
|
"""
|
|
5506
5585
|
return self._TaskId
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-ga2
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.101
|
|
4
4
|
Summary: Tencent Cloud Ga2 SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.101
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.101
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.71
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|