tencentcloud-sdk-python 3.0.1442__py2.py3-none-any.whl → 3.0.1444__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/batch/v20170312/models.py +30 -50
- tencentcloud/ckafka/v20190819/models.py +23 -23
- tencentcloud/clb/v20180317/models.py +426 -30
- tencentcloud/cls/v20201016/cls_client.py +4 -4
- tencentcloud/cls/v20201016/errorcodes.py +3 -0
- tencentcloud/cls/v20201016/models.py +1089 -324
- tencentcloud/common/credential.py +20 -2
- tencentcloud/dnspod/v20210323/errorcodes.py +3 -0
- tencentcloud/dnspod/v20210323/models.py +17 -2
- tencentcloud/es/v20180416/models.py +30 -0
- tencentcloud/ess/v20201111/ess_client.py +3 -1
- tencentcloud/ess/v20201111/models.py +2 -2
- tencentcloud/essbasic/v20210526/essbasic_client.py +3 -1
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/iai/v20200303/models.py +19 -0
- tencentcloud/keewidb/v20220308/errorcodes.py +3 -0
- tencentcloud/keewidb/v20220308/models.py +2 -2
- tencentcloud/lcic/v20220817/errorcodes.py +15 -0
- tencentcloud/lcic/v20220817/models.py +67 -16
- tencentcloud/lighthouse/v20200324/errorcodes.py +27 -0
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +53 -0
- tencentcloud/lighthouse/v20200324/models.py +534 -0
- tencentcloud/live/v20180801/models.py +2 -10
- tencentcloud/lke/v20231130/lke_client.py +0 -23
- tencentcloud/lke/v20231130/models.py +40 -128
- tencentcloud/lkeap/v20240522/errorcodes.py +1 -1
- tencentcloud/mongodb/v20190725/models.py +4 -4
- tencentcloud/mps/v20190612/models.py +64 -0
- tencentcloud/ocr/v20181119/models.py +65 -16
- tencentcloud/organization/v20210331/models.py +24 -26
- tencentcloud/postgres/v20170312/errorcodes.py +0 -12
- tencentcloud/postgres/v20170312/models.py +191 -1527
- tencentcloud/postgres/v20170312/postgres_client.py +0 -75
- tencentcloud/ssl/v20191205/models.py +2 -2
- tencentcloud/sts/v20180813/sts_client.py +21 -7
- tencentcloud/tbaas/v20180416/errorcodes.py +6 -0
- tencentcloud/tcbr/v20220217/models.py +151 -0
- tencentcloud/tcss/v20201101/models.py +45 -0
- tencentcloud/teo/v20220901/models.py +18 -18
- tencentcloud/tke/v20180525/models.py +17 -2
- tencentcloud/tms/v20201229/errorcodes.py +3 -0
- tencentcloud/trabbit/v20230418/models.py +60 -0
- tencentcloud/trocket/v20230308/models.py +319 -0
- tencentcloud/trocket/v20230308/trocket_client.py +25 -0
- tencentcloud/trtc/v20190722/errorcodes.py +18 -0
- tencentcloud/trtc/v20190722/models.py +486 -2
- tencentcloud/trtc/v20190722/trtc_client.py +64 -0
- tencentcloud/tse/v20201207/models.py +30 -0
- tencentcloud/tsf/v20180326/errorcodes.py +41 -11
- tencentcloud/tsf/v20180326/models.py +1705 -1263
- tencentcloud/tsf/v20180326/tsf_client.py +18 -18
- tencentcloud/vod/v20180717/models.py +78 -10
- tencentcloud/vod/v20180717/vod_client.py +1 -0
- tencentcloud/vpc/v20170312/models.py +35 -0
- tencentcloud/vpc/v20170312/vpc_client.py +1 -1
- tencentcloud/waf/v20180125/errorcodes.py +6 -0
- tencentcloud/waf/v20180125/models.py +1926 -744
- tencentcloud/waf/v20180125/waf_client.py +161 -0
- tencentcloud/wedata/v20210820/models.py +204 -0
- tencentcloud/wsa/v20250508/models.py +42 -6
- {tencentcloud_sdk_python-3.0.1442.dist-info → tencentcloud_sdk_python-3.0.1444.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1442.dist-info → tencentcloud_sdk_python-3.0.1444.dist-info}/RECORD +66 -66
- {tencentcloud_sdk_python-3.0.1442.dist-info → tencentcloud_sdk_python-3.0.1444.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1442.dist-info → tencentcloud_sdk_python-3.0.1444.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1442.dist-info → tencentcloud_sdk_python-3.0.1444.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -3874,14 +3874,14 @@ class DescribeJobSubmitInfoRequest(AbstractModel):
|
|
|
3874
3874
|
|
|
3875
3875
|
def __init__(self):
|
|
3876
3876
|
r"""
|
|
3877
|
-
:param _JobId: 作业ID
|
|
3877
|
+
:param _JobId: 作业ID;JobId详见[作业列表](https://cloud.tencent.com/document/product/599/15909)
|
|
3878
3878
|
:type JobId: str
|
|
3879
3879
|
"""
|
|
3880
3880
|
self._JobId = None
|
|
3881
3881
|
|
|
3882
3882
|
@property
|
|
3883
3883
|
def JobId(self):
|
|
3884
|
-
"""作业ID
|
|
3884
|
+
"""作业ID;JobId详见[作业列表](https://cloud.tencent.com/document/product/599/15909)
|
|
3885
3885
|
:rtype: str
|
|
3886
3886
|
"""
|
|
3887
3887
|
return self._JobId
|
|
@@ -4680,7 +4680,7 @@ class DescribeTaskTemplatesRequest(AbstractModel):
|
|
|
4680
4680
|
|
|
4681
4681
|
def __init__(self):
|
|
4682
4682
|
r"""
|
|
4683
|
-
:param _TaskTemplateIds: 任务模板ID列表,与Filters
|
|
4683
|
+
:param _TaskTemplateIds: 任务模板ID列表,与Filters参数不能同时指定。模版ID最大限制100.
|
|
4684
4684
|
:type TaskTemplateIds: list of str
|
|
4685
4685
|
:param _Filters: 过滤条件
|
|
4686
4686
|
<li> task-template-name - String - 是否必填:否 -(过滤条件)按照任务模板名称过滤。</li>
|
|
@@ -4691,7 +4691,7 @@ class DescribeTaskTemplatesRequest(AbstractModel):
|
|
|
4691
4691
|
:type Filters: list of Filter
|
|
4692
4692
|
:param _Offset: 偏移量
|
|
4693
4693
|
:type Offset: int
|
|
4694
|
-
:param _Limit:
|
|
4694
|
+
:param _Limit: 返回数量; 可选范围[1-100];默认值为20。
|
|
4695
4695
|
:type Limit: int
|
|
4696
4696
|
"""
|
|
4697
4697
|
self._TaskTemplateIds = None
|
|
@@ -4701,7 +4701,7 @@ class DescribeTaskTemplatesRequest(AbstractModel):
|
|
|
4701
4701
|
|
|
4702
4702
|
@property
|
|
4703
4703
|
def TaskTemplateIds(self):
|
|
4704
|
-
"""任务模板ID列表,与Filters
|
|
4704
|
+
"""任务模板ID列表,与Filters参数不能同时指定。模版ID最大限制100.
|
|
4705
4705
|
:rtype: list of str
|
|
4706
4706
|
"""
|
|
4707
4707
|
return self._TaskTemplateIds
|
|
@@ -4739,7 +4739,7 @@ class DescribeTaskTemplatesRequest(AbstractModel):
|
|
|
4739
4739
|
|
|
4740
4740
|
@property
|
|
4741
4741
|
def Limit(self):
|
|
4742
|
-
"""
|
|
4742
|
+
"""返回数量; 可选范围[1-100];默认值为20。
|
|
4743
4743
|
:rtype: int
|
|
4744
4744
|
"""
|
|
4745
4745
|
return self._Limit
|
|
@@ -5676,10 +5676,10 @@ class Filter(AbstractModel):
|
|
|
5676
5676
|
> * 若存在多个`Filter`时,`Filter`间的关系为逻辑与(`AND`)关系。
|
|
5677
5677
|
> * 若同一个`Filter`存在多个`Values`,同一`Filter`下`Values`间的关系为逻辑或(`OR`)关系。
|
|
5678
5678
|
>
|
|
5679
|
-
> 以[DescribeInstances](https://cloud.tencent.com/document/api/213/15728)接口的`Filter`为例。若我们需要查询可用区(`zone
|
|
5679
|
+
> 以[DescribeInstances](https://cloud.tencent.com/document/api/213/15728)接口的`Filter`为例。若我们需要查询可用区(`zone`)为广州六区 ***并且*** 实例计费模式(`instance-charge-type`)为包年包月 ***或者*** 按量计费的实例时,可如下实现:
|
|
5680
5680
|
```
|
|
5681
5681
|
Filters.0.Name=zone
|
|
5682
|
-
&Filters.0.Values.0=ap-guangzhou-
|
|
5682
|
+
&Filters.0.Values.0=ap-guangzhou-6
|
|
5683
5683
|
&Filters.1.Name=instance-charge-type
|
|
5684
5684
|
&Filters.1.Values.0=PREPAID
|
|
5685
5685
|
&Filters.1.Values.1=POSTPAID_BY_HOUR
|
|
@@ -6525,42 +6525,32 @@ class InternetAccessible(AbstractModel):
|
|
|
6525
6525
|
:type PublicIpAssigned: bool
|
|
6526
6526
|
:param _BandwidthPackageId: 带宽包ID。可通过[ DescribeBandwidthPackages ](https://cloud.tencent.com/document/api/215/19209)接口返回值中的`BandwidthPackageId`获取。该参数仅在RunInstances接口中作为入参使用。
|
|
6527
6527
|
:type BandwidthPackageId: str
|
|
6528
|
-
:param _InternetServiceProvider:
|
|
6529
|
-
|
|
6530
|
-
- BGP:常规 BGP 线路
|
|
6531
|
-
|
|
6528
|
+
:param _InternetServiceProvider: 线路类型。各种线路类型及支持地区详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:BGP。
|
|
6529
|
+
<li>BGP:常规 BGP 线路</li>
|
|
6532
6530
|
已开通静态单线IP白名单的用户,可选值:
|
|
6533
|
-
|
|
6534
|
-
|
|
6535
|
-
|
|
6536
|
-
- CUCC:中国联通
|
|
6537
|
-
|
|
6531
|
+
<li>CMCC:中国移动</li>
|
|
6532
|
+
<li>CTCC:中国电信</li>
|
|
6533
|
+
<li>CUCC:中国联通</li>
|
|
6538
6534
|
注意:仅部分地域支持静态单线IP。
|
|
6539
|
-
|
|
6535
|
+
|
|
6540
6536
|
:type InternetServiceProvider: str
|
|
6541
6537
|
:param _IPv4AddressType: 公网 IP 类型。
|
|
6542
6538
|
|
|
6543
|
-
|
|
6544
|
-
|
|
6545
|
-
|
|
6546
|
-
|
|
6539
|
+
<li> WanIP:普通公网IP。</li>
|
|
6540
|
+
<li> HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。</li>
|
|
6541
|
+
<li> AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见[弹性公网IP产品概述](https://cloud.tencent.com/document/product/1199/41646)。</li>
|
|
6547
6542
|
如需为资源分配公网IPv4地址,请指定公网IPv4地址类型。
|
|
6548
6543
|
|
|
6549
|
-
示例值:WanIP
|
|
6550
|
-
|
|
6551
6544
|
此功能仅部分地区灰度开放,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
|
|
6552
6545
|
:type IPv4AddressType: str
|
|
6553
6546
|
:param _IPv6AddressType: 弹性公网 IPv6 类型。
|
|
6554
|
-
|
|
6555
|
-
|
|
6556
|
-
|
|
6547
|
+
<li> EIPv6:弹性公网 IPv6。</li>
|
|
6548
|
+
<li> HighQualityEIPv6:精品 IPv6。仅中国香港支持精品IPv6。</li>
|
|
6557
6549
|
如需为资源分配IPv6地址,请指定弹性公网IPv6类型。
|
|
6558
|
-
示例值:EIPv6
|
|
6559
6550
|
|
|
6560
6551
|
此功能仅部分地区灰度开放,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
|
|
6561
6552
|
:type IPv6AddressType: str
|
|
6562
6553
|
:param _AntiDDoSPackageId: 高防包唯一ID,申请高防IP时,该字段必传。
|
|
6563
|
-
示例值:bgp-12345678
|
|
6564
6554
|
|
|
6565
6555
|
:type AntiDDoSPackageId: str
|
|
6566
6556
|
"""
|
|
@@ -6619,18 +6609,14 @@ class InternetAccessible(AbstractModel):
|
|
|
6619
6609
|
|
|
6620
6610
|
@property
|
|
6621
6611
|
def InternetServiceProvider(self):
|
|
6622
|
-
"""
|
|
6623
|
-
|
|
6624
|
-
- BGP:常规 BGP 线路
|
|
6625
|
-
|
|
6612
|
+
"""线路类型。各种线路类型及支持地区详情可参考:[EIP 的 IP 地址类型](https://cloud.tencent.com/document/product/1199/41646)。默认值:BGP。
|
|
6613
|
+
<li>BGP:常规 BGP 线路</li>
|
|
6626
6614
|
已开通静态单线IP白名单的用户,可选值:
|
|
6627
|
-
|
|
6628
|
-
|
|
6629
|
-
|
|
6630
|
-
- CUCC:中国联通
|
|
6631
|
-
|
|
6615
|
+
<li>CMCC:中国移动</li>
|
|
6616
|
+
<li>CTCC:中国电信</li>
|
|
6617
|
+
<li>CUCC:中国联通</li>
|
|
6632
6618
|
注意:仅部分地域支持静态单线IP。
|
|
6633
|
-
|
|
6619
|
+
|
|
6634
6620
|
:rtype: str
|
|
6635
6621
|
"""
|
|
6636
6622
|
return self._InternetServiceProvider
|
|
@@ -6643,14 +6629,11 @@ class InternetAccessible(AbstractModel):
|
|
|
6643
6629
|
def IPv4AddressType(self):
|
|
6644
6630
|
"""公网 IP 类型。
|
|
6645
6631
|
|
|
6646
|
-
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
|
|
6632
|
+
<li> WanIP:普通公网IP。</li>
|
|
6633
|
+
<li> HighQualityEIP:精品 IP。仅新加坡和中国香港支持精品IP。</li>
|
|
6634
|
+
<li> AntiDDoSEIP:高防 IP。仅部分地域支持高防IP,详情可见[弹性公网IP产品概述](https://cloud.tencent.com/document/product/1199/41646)。</li>
|
|
6650
6635
|
如需为资源分配公网IPv4地址,请指定公网IPv4地址类型。
|
|
6651
6636
|
|
|
6652
|
-
示例值:WanIP
|
|
6653
|
-
|
|
6654
6637
|
此功能仅部分地区灰度开放,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
|
|
6655
6638
|
:rtype: str
|
|
6656
6639
|
"""
|
|
@@ -6663,11 +6646,9 @@ class InternetAccessible(AbstractModel):
|
|
|
6663
6646
|
@property
|
|
6664
6647
|
def IPv6AddressType(self):
|
|
6665
6648
|
"""弹性公网 IPv6 类型。
|
|
6666
|
-
|
|
6667
|
-
|
|
6668
|
-
|
|
6649
|
+
<li> EIPv6:弹性公网 IPv6。</li>
|
|
6650
|
+
<li> HighQualityEIPv6:精品 IPv6。仅中国香港支持精品IPv6。</li>
|
|
6669
6651
|
如需为资源分配IPv6地址,请指定弹性公网IPv6类型。
|
|
6670
|
-
示例值:EIPv6
|
|
6671
6652
|
|
|
6672
6653
|
此功能仅部分地区灰度开放,如需使用[请提交工单咨询](https://console.cloud.tencent.com/workorder/category)
|
|
6673
6654
|
:rtype: str
|
|
@@ -6681,7 +6662,6 @@ class InternetAccessible(AbstractModel):
|
|
|
6681
6662
|
@property
|
|
6682
6663
|
def AntiDDoSPackageId(self):
|
|
6683
6664
|
"""高防包唯一ID,申请高防IP时,该字段必传。
|
|
6684
|
-
示例值:bgp-12345678
|
|
6685
6665
|
|
|
6686
6666
|
:rtype: str
|
|
6687
6667
|
"""
|
|
@@ -5392,9 +5392,9 @@ class CreateInstancePreRequest(AbstractModel):
|
|
|
5392
5392
|
:type Period: str
|
|
5393
5393
|
:param _InstanceType: 国际站标准版实例规格。目前只有国际站标准版使用当前字段区分规格,国内站标准版使用峰值带宽区分规格。除了国际站标准版外的所有实例填写 1 即可。国际站标准版实例:入门型(general)]填写1;[标准型(standard)]填写2;[进阶型(advanced)]填写3;[容量型(capacity)]填写4;[高阶型1(specialized-1)]填写5;[高阶型2(specialized-2)]填写6;[高阶型3(specialized-3)]填写7;[高阶型4(specialized-4)]填写8。
|
|
5394
5394
|
:type InstanceType: int
|
|
5395
|
-
:param _VpcId: 私有网络Id
|
|
5395
|
+
:param _VpcId: 私有网络Id
|
|
5396
5396
|
:type VpcId: str
|
|
5397
|
-
:param _SubnetId: 子网id
|
|
5397
|
+
:param _SubnetId: 子网id
|
|
5398
5398
|
:type SubnetId: str
|
|
5399
5399
|
:param _MsgRetentionTime: 可选。实例日志的最长保留时间,单位分钟,默认为10080(7天),最大30天,不填默认0,代表不开启日志保留时间回收策略
|
|
5400
5400
|
:type MsgRetentionTime: int
|
|
@@ -5498,7 +5498,7 @@ class CreateInstancePreRequest(AbstractModel):
|
|
|
5498
5498
|
|
|
5499
5499
|
@property
|
|
5500
5500
|
def VpcId(self):
|
|
5501
|
-
"""私有网络Id
|
|
5501
|
+
"""私有网络Id
|
|
5502
5502
|
:rtype: str
|
|
5503
5503
|
"""
|
|
5504
5504
|
return self._VpcId
|
|
@@ -5509,7 +5509,7 @@ class CreateInstancePreRequest(AbstractModel):
|
|
|
5509
5509
|
|
|
5510
5510
|
@property
|
|
5511
5511
|
def SubnetId(self):
|
|
5512
|
-
"""子网id
|
|
5512
|
+
"""子网id
|
|
5513
5513
|
:rtype: str
|
|
5514
5514
|
"""
|
|
5515
5515
|
return self._SubnetId
|
|
@@ -5985,10 +5985,10 @@ class CreatePostPaidInstanceRequest(AbstractModel):
|
|
|
5985
5985
|
|
|
5986
5986
|
def __init__(self):
|
|
5987
5987
|
r"""
|
|
5988
|
+
:param _VpcId: 私有网络Id 创建的实例默认接入点所在的 vpc 对应 vpcId
|
|
5989
|
+
:type VpcId: str
|
|
5988
5990
|
:param _InstanceName: ckafka集群实例名称,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
|
|
5989
5991
|
:type InstanceName: str
|
|
5990
|
-
:param _VpcId: 私有网络Id 创建的实例默认接入点所在的 vpc 对应 vpcId。目前不支持创建基础网络实例,因此该参数必填
|
|
5991
|
-
:type VpcId: str
|
|
5992
5992
|
:param _SubnetId: 子网id。创建实例默认接入点所在的子网对应的子网 id
|
|
5993
5993
|
:type SubnetId: str
|
|
5994
5994
|
:param _InstanceType: 国际站标准版实例规格。目前只有国际站标准版使用当前字段区分规格,国内站标准版使用峰值带宽区分规格。除了国际站标准版外的所有实例填写 1 即可。国际站标准版实例:入门型(general)]填写1;[标准型(standard)]填写2;[进阶型(advanced)]填写3;[容量型(capacity)]填写4;[高阶型1(specialized-1)]填写5;[高阶型2(specialized-2)]填写6;[高阶型3(specialized-3)]填写7;[高阶型4(specialized-4)]填写8。
|
|
@@ -6026,8 +6026,8 @@ class CreatePostPaidInstanceRequest(AbstractModel):
|
|
|
6026
6026
|
:param _ElasticBandwidthSwitch: 弹性带宽开关 0不开启 1开启(0默认)
|
|
6027
6027
|
:type ElasticBandwidthSwitch: int
|
|
6028
6028
|
"""
|
|
6029
|
-
self._InstanceName = None
|
|
6030
6029
|
self._VpcId = None
|
|
6030
|
+
self._InstanceName = None
|
|
6031
6031
|
self._SubnetId = None
|
|
6032
6032
|
self._InstanceType = None
|
|
6033
6033
|
self._MsgRetentionTime = None
|
|
@@ -6047,6 +6047,17 @@ class CreatePostPaidInstanceRequest(AbstractModel):
|
|
|
6047
6047
|
self._Tags = None
|
|
6048
6048
|
self._ElasticBandwidthSwitch = None
|
|
6049
6049
|
|
|
6050
|
+
@property
|
|
6051
|
+
def VpcId(self):
|
|
6052
|
+
"""私有网络Id 创建的实例默认接入点所在的 vpc 对应 vpcId
|
|
6053
|
+
:rtype: str
|
|
6054
|
+
"""
|
|
6055
|
+
return self._VpcId
|
|
6056
|
+
|
|
6057
|
+
@VpcId.setter
|
|
6058
|
+
def VpcId(self, VpcId):
|
|
6059
|
+
self._VpcId = VpcId
|
|
6060
|
+
|
|
6050
6061
|
@property
|
|
6051
6062
|
def InstanceName(self):
|
|
6052
6063
|
"""ckafka集群实例名称,是一个不超过 64 个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)
|
|
@@ -6058,17 +6069,6 @@ class CreatePostPaidInstanceRequest(AbstractModel):
|
|
|
6058
6069
|
def InstanceName(self, InstanceName):
|
|
6059
6070
|
self._InstanceName = InstanceName
|
|
6060
6071
|
|
|
6061
|
-
@property
|
|
6062
|
-
def VpcId(self):
|
|
6063
|
-
"""私有网络Id 创建的实例默认接入点所在的 vpc 对应 vpcId。目前不支持创建基础网络实例,因此该参数必填
|
|
6064
|
-
:rtype: str
|
|
6065
|
-
"""
|
|
6066
|
-
return self._VpcId
|
|
6067
|
-
|
|
6068
|
-
@VpcId.setter
|
|
6069
|
-
def VpcId(self, VpcId):
|
|
6070
|
-
self._VpcId = VpcId
|
|
6071
|
-
|
|
6072
6072
|
@property
|
|
6073
6073
|
def SubnetId(self):
|
|
6074
6074
|
"""子网id。创建实例默认接入点所在的子网对应的子网 id
|
|
@@ -6269,8 +6269,8 @@ class CreatePostPaidInstanceRequest(AbstractModel):
|
|
|
6269
6269
|
|
|
6270
6270
|
|
|
6271
6271
|
def _deserialize(self, params):
|
|
6272
|
-
self._InstanceName = params.get("InstanceName")
|
|
6273
6272
|
self._VpcId = params.get("VpcId")
|
|
6273
|
+
self._InstanceName = params.get("InstanceName")
|
|
6274
6274
|
self._SubnetId = params.get("SubnetId")
|
|
6275
6275
|
self._InstanceType = params.get("InstanceType")
|
|
6276
6276
|
self._MsgRetentionTime = params.get("MsgRetentionTime")
|
|
@@ -17475,7 +17475,7 @@ class FetchDatahubMessageByOffsetRequest(AbstractModel):
|
|
|
17475
17475
|
:type Name: str
|
|
17476
17476
|
:param _Partition: 分区id
|
|
17477
17477
|
:type Partition: int
|
|
17478
|
-
:param _Offset:
|
|
17478
|
+
:param _Offset: 位点信息
|
|
17479
17479
|
:type Offset: int
|
|
17480
17480
|
"""
|
|
17481
17481
|
self._Name = None
|
|
@@ -17506,7 +17506,7 @@ class FetchDatahubMessageByOffsetRequest(AbstractModel):
|
|
|
17506
17506
|
|
|
17507
17507
|
@property
|
|
17508
17508
|
def Offset(self):
|
|
17509
|
-
"""
|
|
17509
|
+
"""位点信息
|
|
17510
17510
|
:rtype: int
|
|
17511
17511
|
"""
|
|
17512
17512
|
return self._Offset
|
|
@@ -17717,7 +17717,7 @@ class FetchMessageByOffsetRequest(AbstractModel):
|
|
|
17717
17717
|
:type Topic: str
|
|
17718
17718
|
:param _Partition: 分区id
|
|
17719
17719
|
:type Partition: int
|
|
17720
|
-
:param _Offset:
|
|
17720
|
+
:param _Offset: 位点信息
|
|
17721
17721
|
:type Offset: int
|
|
17722
17722
|
"""
|
|
17723
17723
|
self._InstanceId = None
|
|
@@ -17760,7 +17760,7 @@ class FetchMessageByOffsetRequest(AbstractModel):
|
|
|
17760
17760
|
|
|
17761
17761
|
@property
|
|
17762
17762
|
def Offset(self):
|
|
17763
|
-
"""
|
|
17763
|
+
"""位点信息
|
|
17764
17764
|
:rtype: int
|
|
17765
17765
|
"""
|
|
17766
17766
|
return self._Offset
|