tencentcloud-sdk-python 3.0.1293__py2.py3-none-any.whl → 3.0.1294__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 CHANGED
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1293'
17
+ __version__ = '3.0.1294'
@@ -22494,6 +22494,9 @@ class KafkaParam(AbstractModel):
22494
22494
  :param _KeepPartition: 数据同步专用参数, 当通过时,希望下游的消息写入分区与上游的一致,则填true,但下游分区小于上游时,会报错; 不需要一致则为false, 默认为false
22495
22495
  注意:此字段可能返回 null,表示取不到有效值。
22496
22496
  :type KeepPartition: bool
22497
+ :param _TopicRegularExpression: 正则匹配Topic列表
22498
+ 注意:此字段可能返回 null,表示取不到有效值。
22499
+ :type TopicRegularExpression: str
22497
22500
  """
22498
22501
  self._SelfBuilt = None
22499
22502
  self._Resource = None
@@ -22513,6 +22516,7 @@ class KafkaParam(AbstractModel):
22513
22516
  self._MsgMultiple = None
22514
22517
  self._ConnectorSyncType = None
22515
22518
  self._KeepPartition = None
22519
+ self._TopicRegularExpression = None
22516
22520
 
22517
22521
  @property
22518
22522
  def SelfBuilt(self):
@@ -22727,6 +22731,18 @@ class KafkaParam(AbstractModel):
22727
22731
  def KeepPartition(self, KeepPartition):
22728
22732
  self._KeepPartition = KeepPartition
22729
22733
 
22734
+ @property
22735
+ def TopicRegularExpression(self):
22736
+ """正则匹配Topic列表
22737
+ 注意:此字段可能返回 null,表示取不到有效值。
22738
+ :rtype: str
22739
+ """
22740
+ return self._TopicRegularExpression
22741
+
22742
+ @TopicRegularExpression.setter
22743
+ def TopicRegularExpression(self, TopicRegularExpression):
22744
+ self._TopicRegularExpression = TopicRegularExpression
22745
+
22730
22746
 
22731
22747
  def _deserialize(self, params):
22732
22748
  self._SelfBuilt = params.get("SelfBuilt")
@@ -22752,6 +22768,7 @@ class KafkaParam(AbstractModel):
22752
22768
  self._MsgMultiple = params.get("MsgMultiple")
22753
22769
  self._ConnectorSyncType = params.get("ConnectorSyncType")
22754
22770
  self._KeepPartition = params.get("KeepPartition")
22771
+ self._TopicRegularExpression = params.get("TopicRegularExpression")
22755
22772
  memeber_set = set(params.keys())
22756
22773
  for name, value in vars(self).items():
22757
22774
  property_name = name[1:]
@@ -99607,7 +99607,7 @@ class SearchLogRequest(AbstractModel):
99607
99607
  :type StartTime: int
99608
99608
  :param _EndTime: 要检索分析的日志的结束时间,Unix时间戳(毫秒)
99609
99609
  :type EndTime: int
99610
- :param _QueryString: 检索分析语句,最大长度为12KB,查询语法可参考文档https://cloud.tencent.com/document/product/296/50508
99610
+ :param _QueryString: 检索分析语句,最大长度为12KB,查询语法可参考文档 https://cloud.tencent.com/document/product/296/50508
99611
99611
  :type QueryString: str
99612
99612
  :param _Count: 表示单次查询返回的原始日志条数,最大值为1000,获取后续日志需使用Context参数
99613
99613
  :type Count: int
@@ -99647,7 +99647,7 @@ class SearchLogRequest(AbstractModel):
99647
99647
 
99648
99648
  @property
99649
99649
  def QueryString(self):
99650
- """检索分析语句,最大长度为12KB,查询语法可参考文档https://cloud.tencent.com/document/product/296/50508
99650
+ """检索分析语句,最大长度为12KB,查询语法可参考文档 https://cloud.tencent.com/document/product/296/50508
99651
99651
  :rtype: str
99652
99652
  """
99653
99653
  return self._QueryString