tencentcloud-sdk-python-cls 3.1.96__tar.gz → 3.1.99__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.96 → tencentcloud_sdk_python_cls-3.1.99}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/setup.py +1 -1
  3. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/cls/v20201016/models.py +6 -18
  5. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_cls-3.1.99/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_cls-3.1.96/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/README.rst +0 -0
  9. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/cls/__init__.py +0 -0
  11. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/cls/v20201016/__init__.py +0 -0
  12. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/cls/v20201016/cls_client.py +0 -0
  13. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/cls/v20201016/cls_client_async.py +0 -0
  14. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_cls-3.1.96 → tencentcloud_sdk_python_cls-3.1.99}/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.96
3
+ Version: 3.1.99
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.96
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.99
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.96,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.99,<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.96'
17
+ __version__ = '3.1.99'
@@ -43118,17 +43118,11 @@ class MonitorTime(AbstractModel):
43118
43118
 
43119
43119
  def __init__(self):
43120
43120
  r"""
43121
- :param _Type: 执行周期, 可选值:`Period`、`Fixed`、`Cron`。
43122
-
43123
- - Period:固定频率
43124
- - Fixed:固定时间
43125
- - Cron:Cron表达式
43121
+ :param _Type: <p>执行周期, 可选值:<code>Period</code>、<code>Fixed</code>、<code>Cron</code>。</p><ul><li>Period:固定频率</li><li>Fixed:固定时间</li><li>Cron:Cron表达式</li></ul>
43126
43122
  :type Type: str
43127
- :param _Time: 执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440
43128
- 当type为`Period`,`Fixed`时,time字段生效。
43123
+ :param _Time: <p>执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440。<br>当type为<code>Period</code>,<code>Fixed</code>时,time字段生效。</p>
43129
43124
  :type Time: int
43130
- :param _CronExpression: 执行的周期cron表达式。示例:`"*/1 * * * *"` 从左到右每个field的含义 Minutes field(分钟), Hours field(小时),Day of month field(日期),Month field(月份),Day of week field(星期), 不支持秒级别。
43131
- 当type为`Cron`时,CronExpression字段生效。
43125
+ :param _CronExpression: <p>执行的周期cron表达式。示例:<code>0/1 * * * *</code> 从左到右每个field的含义 Minutes field(分钟), Hours field(小时),Day of month field(日期),Month field(月份),Day of week field(星期), 不支持秒级别。当type为<code>Cron</code>时,CronExpression字段生效。</p>
43132
43126
  :type CronExpression: str
43133
43127
  """
43134
43128
  self._Type = None
@@ -43137,11 +43131,7 @@ class MonitorTime(AbstractModel):
43137
43131
 
43138
43132
  @property
43139
43133
  def Type(self):
43140
- r"""执行周期, 可选值:`Period`、`Fixed`、`Cron`。
43141
-
43142
- - Period:固定频率
43143
- - Fixed:固定时间
43144
- - Cron:Cron表达式
43134
+ r"""<p>执行周期, 可选值:<code>Period</code>、<code>Fixed</code>、<code>Cron</code>。</p><ul><li>Period:固定频率</li><li>Fixed:固定时间</li><li>Cron:Cron表达式</li></ul>
43145
43135
  :rtype: str
43146
43136
  """
43147
43137
  return self._Type
@@ -43152,8 +43142,7 @@ class MonitorTime(AbstractModel):
43152
43142
 
43153
43143
  @property
43154
43144
  def Time(self):
43155
- r"""执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440
43156
- 当type为`Period`,`Fixed`时,time字段生效。
43145
+ r"""<p>执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440。<br>当type为<code>Period</code>,<code>Fixed</code>时,time字段生效。</p>
43157
43146
  :rtype: int
43158
43147
  """
43159
43148
  return self._Time
@@ -43164,8 +43153,7 @@ class MonitorTime(AbstractModel):
43164
43153
 
43165
43154
  @property
43166
43155
  def CronExpression(self):
43167
- r"""执行的周期cron表达式。示例:`"*/1 * * * *"` 从左到右每个field的含义 Minutes field(分钟), Hours field(小时),Day of month field(日期),Month field(月份),Day of week field(星期), 不支持秒级别。
43168
- 当type为`Cron`时,CronExpression字段生效。
43156
+ r"""<p>执行的周期cron表达式。示例:<code>0/1 * * * *</code> 从左到右每个field的含义 Minutes field(分钟), Hours field(小时),Day of month field(日期),Month field(月份),Day of week field(星期), 不支持秒级别。当type为<code>Cron</code>时,CronExpression字段生效。</p>
43169
43157
  :rtype: str
43170
43158
  """
43171
43159
  return self._CronExpression
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.1.96
3
+ Version: 3.1.99
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.96
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.99
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.99
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.96