tencentcloud-sdk-python-cls 3.0.1322__tar.gz → 3.0.1324__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 (16) hide show
  1. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/tencentcloud/cls/v20201016/models.py +15 -0
  5. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-cls-3.0.1324/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-cls-3.0.1322/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/README.rst +0 -0
  9. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/tencentcloud/cls/__init__.py +0 -0
  11. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/tencentcloud/cls/v20201016/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/tencentcloud/cls/v20201016/cls_client.py +0 -0
  13. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cls-3.0.1322 → tencentcloud-sdk-python-cls-3.0.1324}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1322
3
+ Version: 3.0.1324
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
@@ -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.0.1322"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1324"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cls SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1322'
17
+ __version__ = '3.0.1324'
@@ -20194,6 +20194,8 @@ class LogRechargeRuleInfo(AbstractModel):
20194
20194
  :param _Keys: 日志Key列表,RechargeType为full_regex_log时必填
20195
20195
  注意:此字段可能返回 null,表示取不到有效值。
20196
20196
  :type Keys: list of str
20197
+ :param _ParseArray: json解析模式,开启首层数据解析
20198
+ :type ParseArray: bool
20197
20199
  """
20198
20200
  self._RechargeType = None
20199
20201
  self._EncodingFormat = None
@@ -20209,6 +20211,7 @@ class LogRechargeRuleInfo(AbstractModel):
20209
20211
  self._TimeZone = None
20210
20212
  self._Metadata = None
20211
20213
  self._Keys = None
20214
+ self._ParseArray = None
20212
20215
 
20213
20216
  @property
20214
20217
  def RechargeType(self):
@@ -20374,6 +20377,17 @@ class LogRechargeRuleInfo(AbstractModel):
20374
20377
  def Keys(self, Keys):
20375
20378
  self._Keys = Keys
20376
20379
 
20380
+ @property
20381
+ def ParseArray(self):
20382
+ """json解析模式,开启首层数据解析
20383
+ :rtype: bool
20384
+ """
20385
+ return self._ParseArray
20386
+
20387
+ @ParseArray.setter
20388
+ def ParseArray(self, ParseArray):
20389
+ self._ParseArray = ParseArray
20390
+
20377
20391
 
20378
20392
  def _deserialize(self, params):
20379
20393
  self._RechargeType = params.get("RechargeType")
@@ -20390,6 +20404,7 @@ class LogRechargeRuleInfo(AbstractModel):
20390
20404
  self._TimeZone = params.get("TimeZone")
20391
20405
  self._Metadata = params.get("Metadata")
20392
20406
  self._Keys = params.get("Keys")
20407
+ self._ParseArray = params.get("ParseArray")
20393
20408
  memeber_set = set(params.keys())
20394
20409
  for name, value in vars(self).items():
20395
20410
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1322
3
+ Version: 3.0.1324
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1324
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1322