tencentcloud-sdk-python-cls 3.1.93__tar.gz → 3.1.96__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/setup.py +1 -1
  3. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/tencentcloud/cls/v20201016/models.py +40 -44
  5. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_cls-3.1.96/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_cls-3.1.93/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/README.rst +0 -0
  9. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/tencentcloud/cls/__init__.py +0 -0
  11. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/tencentcloud/cls/v20201016/__init__.py +0 -0
  12. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/tencentcloud/cls/v20201016/cls_client.py +0 -0
  13. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/tencentcloud/cls/v20201016/cls_client_async.py +0 -0
  14. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_cls-3.1.93 → tencentcloud_sdk_python_cls-3.1.96}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.1.93
3
+ Version: 3.1.96
4
4
  Summary: Tencent Cloud Cls 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.93
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.96
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-cls',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.93,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.96,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Cls SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.93'
17
+ __version__ = '3.1.96'
@@ -4904,6 +4904,10 @@ class Console(AbstractModel):
4904
4904
  :param _Menus: <p>自定义显示菜单</p>
4905
4905
  注意:此字段可能返回 null,表示取不到有效值。
4906
4906
  :type Menus: list of str
4907
+ :param _Domain: <p>公网访问域名</p>
4908
+ :type Domain: str
4909
+ :param _IntranetDomain: <p>内网访问域名</p>
4910
+ :type IntranetDomain: str
4907
4911
  """
4908
4912
  self._ConsoleId = None
4909
4913
  self._AccessMode = None
@@ -4921,6 +4925,8 @@ class Console(AbstractModel):
4921
4925
  self._AccessControlRules = None
4922
4926
  self._Remarks = None
4923
4927
  self._Menus = None
4928
+ self._Domain = None
4929
+ self._IntranetDomain = None
4924
4930
 
4925
4931
  @property
4926
4932
  def ConsoleId(self):
@@ -5110,6 +5116,28 @@ class Console(AbstractModel):
5110
5116
  def Menus(self, Menus):
5111
5117
  self._Menus = Menus
5112
5118
 
5119
+ @property
5120
+ def Domain(self):
5121
+ r"""<p>公网访问域名</p>
5122
+ :rtype: str
5123
+ """
5124
+ return self._Domain
5125
+
5126
+ @Domain.setter
5127
+ def Domain(self, Domain):
5128
+ self._Domain = Domain
5129
+
5130
+ @property
5131
+ def IntranetDomain(self):
5132
+ r"""<p>内网访问域名</p>
5133
+ :rtype: str
5134
+ """
5135
+ return self._IntranetDomain
5136
+
5137
+ @IntranetDomain.setter
5138
+ def IntranetDomain(self, IntranetDomain):
5139
+ self._IntranetDomain = IntranetDomain
5140
+
5113
5141
 
5114
5142
  def _deserialize(self, params):
5115
5143
  self._ConsoleId = params.get("ConsoleId")
@@ -5150,6 +5178,8 @@ class Console(AbstractModel):
5150
5178
  self._AccessControlRules.append(obj)
5151
5179
  self._Remarks = params.get("Remarks")
5152
5180
  self._Menus = params.get("Menus")
5181
+ self._Domain = params.get("Domain")
5182
+ self._IntranetDomain = params.get("IntranetDomain")
5153
5183
  memeber_set = set(params.keys())
5154
5184
  for name, value in vars(self).items():
5155
5185
  property_name = name[1:]
@@ -5726,32 +5756,15 @@ class ConsumerContent(AbstractModel):
5726
5756
 
5727
5757
  def __init__(self):
5728
5758
  r"""
5729
- :param _EnableTag: 是否投递 TAG 信息。
5730
- 当EnableTag为true时,表示投递TAG元信息。
5759
+ :param _EnableTag: <p>是否投递 TAG 信息。<br>当EnableTag为true时,表示投递TAG元信息。</p>
5731
5760
  :type EnableTag: bool
5732
- :param _MetaFields: 需要投递的元数据列表,目前仅支持:\_\_SOURCE\_\_,\_\_FILENAME\_\_,\_\_TIMESTAMP\_\_,\_\_HOSTNAME\_\_和\_\_PKGID\_\_
5761
+ :param _MetaFields: <p>需要投递的元数据列表,目前仅支持:__SOURCE__,__FILENAME__,__TIMESTAMP__,__HOSTNAME__和__PKGID__</p>
5733
5762
  :type MetaFields: list of str
5734
- :param _TagJsonNotTiled: EnableTag为true时,必须填写TagJsonNotTiled字段。
5735
- TagJsonNotTiled用于标识tag信息是否json平铺。
5736
-
5737
- TagJsonNotTiled为true时不平铺,示例:
5738
- TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
5739
- 不平铺:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
5740
-
5741
- TagJsonNotTiled为false时平铺,示例:
5742
- TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
5743
- 平铺:`{"__TAG__.fieldA":200,"__TAG__.fieldB":"text"}`
5763
+ :param _TagJsonNotTiled: <p>当EnableTag为true时,必须填写TagJsonNotTiled字段。<br>TagJsonNotTiled用于标识tag信息是否json平铺。</p><p>TagJsonNotTiled为true时不平铺,示例:<br>TAG信息:<code>{&quot;__TAG__&quot;:{&quot;fieldA&quot;:200,&quot;fieldB&quot;:&quot;text&quot;}}</code><br>不平铺:<code>{&quot;__TAG__&quot;:{&quot;fieldA&quot;:200,&quot;fieldB&quot;:&quot;text&quot;}}</code></p><p>TagJsonNotTiled为false时平铺,示例:<br>TAG信息:<code>{&quot;__TAG__&quot;:{&quot;fieldA&quot;:200,&quot;fieldB&quot;:&quot;text&quot;}}</code><br>平铺:<code>{&quot;__TAG__.fieldA&quot;:200,&quot;__TAG__.fieldB&quot;:&quot;text&quot;}</code></p>
5744
5764
  :type TagJsonNotTiled: bool
5745
- :param _TimestampAccuracy: 投递时间戳精度,可选项 [1:秒;2:毫秒] ,默认是1
5765
+ :param _TimestampAccuracy: <p>投递时间戳精度,可选项 [1:秒;2:毫秒] ,默认是1。</p>
5746
5766
  :type TimestampAccuracy: int
5747
- :param _JsonType: 投递Json格式。
5748
- JsonType为0:和原始日志一致,不转义。示例:
5749
- 日志原文:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
5750
- 投递到Ckafka:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
5751
-
5752
- JsonType为1:转义。示例:
5753
- 日志原文:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
5754
- 投递到Ckafka:`{"a":"aa","b":"{\"b1\":\"b1b1\", \"c1\":\"c1c1\"}"}`
5767
+ :param _JsonType: <p>投递Json格式。</p><p>枚举值:</p><ul><li>0: 转义。示例:<br>日志原文:<code>{&quot;a&quot;:&quot;aa&quot;, &quot;b&quot;:{&quot;b1&quot;:&quot;b1b1&quot;, &quot;c1&quot;:&quot;c1c1&quot;}}</code><br>投递到Ckafka:<code>{&quot;a&quot;:&quot;aa&quot;,&quot;b&quot;:&quot;{\&quot;b1\&quot;:\&quot;b1b1\&quot;, \&quot;c1\&quot;:\&quot;c1c1\&quot;}&quot;}</code></li><li>1: 和原始日志一致,不转义。示例:<br>日志原文:<code>{&quot;a&quot;:&quot;aa&quot;, &quot;b&quot;:{&quot;b1&quot;:&quot;b1b1&quot;, &quot;c1&quot;:&quot;c1c1&quot;}}</code><br>投递到Ckafka:<code>{&quot;a&quot;:&quot;aa&quot;, &quot;b&quot;:{&quot;b1&quot;:&quot;b1b1&quot;, &quot;c1&quot;:&quot;c1c1&quot;}}</code></li></ul>
5755
5768
  :type JsonType: int
5756
5769
  """
5757
5770
  self._EnableTag = None
@@ -5762,8 +5775,7 @@ JsonType为1:转义。示例:
5762
5775
 
5763
5776
  @property
5764
5777
  def EnableTag(self):
5765
- r"""是否投递 TAG 信息。
5766
- 当EnableTag为true时,表示投递TAG元信息。
5778
+ r"""<p>是否投递 TAG 信息。<br>当EnableTag为true时,表示投递TAG元信息。</p>
5767
5779
  :rtype: bool
5768
5780
  """
5769
5781
  return self._EnableTag
@@ -5774,7 +5786,7 @@ JsonType为1:转义。示例:
5774
5786
 
5775
5787
  @property
5776
5788
  def MetaFields(self):
5777
- r"""需要投递的元数据列表,目前仅支持:\_\_SOURCE\_\_,\_\_FILENAME\_\_,\_\_TIMESTAMP\_\_,\_\_HOSTNAME\_\_和\_\_PKGID\_\_
5789
+ r"""<p>需要投递的元数据列表,目前仅支持:__SOURCE__,__FILENAME__,__TIMESTAMP__,__HOSTNAME__和__PKGID__</p>
5778
5790
  :rtype: list of str
5779
5791
  """
5780
5792
  return self._MetaFields
@@ -5785,16 +5797,7 @@ JsonType为1:转义。示例:
5785
5797
 
5786
5798
  @property
5787
5799
  def TagJsonNotTiled(self):
5788
- r"""EnableTag为true时,必须填写TagJsonNotTiled字段。
5789
- TagJsonNotTiled用于标识tag信息是否json平铺。
5790
-
5791
- TagJsonNotTiled为true时不平铺,示例:
5792
- TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
5793
- 不平铺:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
5794
-
5795
- TagJsonNotTiled为false时平铺,示例:
5796
- TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
5797
- 平铺:`{"__TAG__.fieldA":200,"__TAG__.fieldB":"text"}`
5800
+ r"""<p>当EnableTag为true时,必须填写TagJsonNotTiled字段。<br>TagJsonNotTiled用于标识tag信息是否json平铺。</p><p>TagJsonNotTiled为true时不平铺,示例:<br>TAG信息:<code>{&quot;__TAG__&quot;:{&quot;fieldA&quot;:200,&quot;fieldB&quot;:&quot;text&quot;}}</code><br>不平铺:<code>{&quot;__TAG__&quot;:{&quot;fieldA&quot;:200,&quot;fieldB&quot;:&quot;text&quot;}}</code></p><p>TagJsonNotTiled为false时平铺,示例:<br>TAG信息:<code>{&quot;__TAG__&quot;:{&quot;fieldA&quot;:200,&quot;fieldB&quot;:&quot;text&quot;}}</code><br>平铺:<code>{&quot;__TAG__.fieldA&quot;:200,&quot;__TAG__.fieldB&quot;:&quot;text&quot;}</code></p>
5798
5801
  :rtype: bool
5799
5802
  """
5800
5803
  return self._TagJsonNotTiled
@@ -5805,7 +5808,7 @@ TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
5805
5808
 
5806
5809
  @property
5807
5810
  def TimestampAccuracy(self):
5808
- r"""投递时间戳精度,可选项 [1:秒;2:毫秒] ,默认是1
5811
+ r"""<p>投递时间戳精度,可选项 [1:秒;2:毫秒] ,默认是1。</p>
5809
5812
  :rtype: int
5810
5813
  """
5811
5814
  return self._TimestampAccuracy
@@ -5816,14 +5819,7 @@ TAG信息:`{"__TAG__":{"fieldA":200,"fieldB":"text"}}`
5816
5819
 
5817
5820
  @property
5818
5821
  def JsonType(self):
5819
- r"""投递Json格式。
5820
- JsonType为0:和原始日志一致,不转义。示例:
5821
- 日志原文:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
5822
- 投递到Ckafka:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
5823
-
5824
- JsonType为1:转义。示例:
5825
- 日志原文:`{"a":"aa", "b":{"b1":"b1b1", "c1":"c1c1"}}`
5826
- 投递到Ckafka:`{"a":"aa","b":"{\"b1\":\"b1b1\", \"c1\":\"c1c1\"}"}`
5822
+ r"""<p>投递Json格式。</p><p>枚举值:</p><ul><li>0: 转义。示例:<br>日志原文:<code>{&quot;a&quot;:&quot;aa&quot;, &quot;b&quot;:{&quot;b1&quot;:&quot;b1b1&quot;, &quot;c1&quot;:&quot;c1c1&quot;}}</code><br>投递到Ckafka:<code>{&quot;a&quot;:&quot;aa&quot;,&quot;b&quot;:&quot;{\&quot;b1\&quot;:\&quot;b1b1\&quot;, \&quot;c1\&quot;:\&quot;c1c1\&quot;}&quot;}</code></li><li>1: 和原始日志一致,不转义。示例:<br>日志原文:<code>{&quot;a&quot;:&quot;aa&quot;, &quot;b&quot;:{&quot;b1&quot;:&quot;b1b1&quot;, &quot;c1&quot;:&quot;c1c1&quot;}}</code><br>投递到Ckafka:<code>{&quot;a&quot;:&quot;aa&quot;, &quot;b&quot;:{&quot;b1&quot;:&quot;b1b1&quot;, &quot;c1&quot;:&quot;c1c1&quot;}}</code></li></ul>
5827
5823
  :rtype: int
5828
5824
  """
5829
5825
  return self._JsonType
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.1.93
3
+ Version: 3.1.96
4
4
  Summary: Tencent Cloud Cls 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.93
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.96
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.96
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.93