tencentcloud-sdk-python-cls 3.0.871__tar.gz → 3.0.873__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 (14) hide show
  1. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/tencentcloud/__init__.py +1 -1
  3. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/tencentcloud/cls/v20201016/models.py +8 -0
  4. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
  5. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/README.rst +0 -0
  6. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/setup.cfg +0 -0
  7. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/setup.py +0 -0
  8. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/tencentcloud/cls/__init__.py +0 -0
  9. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/tencentcloud/cls/v20201016/__init__.py +0 -0
  10. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/tencentcloud/cls/v20201016/cls_client.py +0 -0
  11. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
  12. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
  13. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
  14. {tencentcloud-sdk-python-cls-3.0.871 → tencentcloud-sdk-python-cls-3.0.873}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.871
3
+ Version: 3.0.873
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
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.871'
17
+ __version__ = '3.0.873'
@@ -2032,6 +2032,8 @@ class CreateTopicRequest(AbstractModel):
2032
2032
  :param HotPeriod: 0:关闭日志沉降。
2033
2033
  非0:开启日志沉降后标准存储的天数。HotPeriod需要大于等于7,且小于Period。仅在StorageType为 hot 时生效
2034
2034
  :type HotPeriod: int
2035
+ :param IsWebTracking: webtracking开关; false: 关闭 true: 开启
2036
+ :type IsWebTracking: bool
2035
2037
  """
2036
2038
  self.LogsetId = None
2037
2039
  self.TopicName = None
@@ -2043,6 +2045,7 @@ class CreateTopicRequest(AbstractModel):
2043
2045
  self.Period = None
2044
2046
  self.Describes = None
2045
2047
  self.HotPeriod = None
2048
+ self.IsWebTracking = None
2046
2049
 
2047
2050
 
2048
2051
  def _deserialize(self, params):
@@ -2061,6 +2064,7 @@ class CreateTopicRequest(AbstractModel):
2061
2064
  self.Period = params.get("Period")
2062
2065
  self.Describes = params.get("Describes")
2063
2066
  self.HotPeriod = params.get("HotPeriod")
2067
+ self.IsWebTracking = params.get("IsWebTracking")
2064
2068
  memeber_set = set(params.keys())
2065
2069
  for name, value in vars(self).items():
2066
2070
  if name in memeber_set:
@@ -5898,6 +5902,8 @@ class ModifyTopicRequest(AbstractModel):
5898
5902
  :param HotPeriod: 0:关闭日志沉降。
5899
5903
  非0:开启日志沉降后标准存储的天数。HotPeriod需要大于等于7,且小于Period。仅在StorageType为 hot 时生效
5900
5904
  :type HotPeriod: int
5905
+ :param IsWebTracking: webtracking开关; false: 关闭 true: 开启
5906
+ :type IsWebTracking: bool
5901
5907
  """
5902
5908
  self.TopicId = None
5903
5909
  self.TopicName = None
@@ -5908,6 +5914,7 @@ class ModifyTopicRequest(AbstractModel):
5908
5914
  self.Period = None
5909
5915
  self.Describes = None
5910
5916
  self.HotPeriod = None
5917
+ self.IsWebTracking = None
5911
5918
 
5912
5919
 
5913
5920
  def _deserialize(self, params):
@@ -5925,6 +5932,7 @@ class ModifyTopicRequest(AbstractModel):
5925
5932
  self.Period = params.get("Period")
5926
5933
  self.Describes = params.get("Describes")
5927
5934
  self.HotPeriod = params.get("HotPeriod")
5935
+ self.IsWebTracking = params.get("IsWebTracking")
5928
5936
  memeber_set = set(params.keys())
5929
5937
  for name, value in vars(self).items():
5930
5938
  if name in memeber_set:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.871
3
+ Version: 3.0.873
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