tencentcloud-sdk-python-config 3.1.78__tar.gz → 3.1.79__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_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/setup.py +1 -1
  3. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/tencentcloud/config/v20220802/models.py +21 -6
  5. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/tencentcloud_sdk_python_config.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_config-3.1.79/tencentcloud_sdk_python_config.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_config-3.1.78/tencentcloud_sdk_python_config.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/README.rst +0 -0
  9. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/tencentcloud/config/__init__.py +0 -0
  11. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/tencentcloud/config/v20220802/__init__.py +0 -0
  12. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/tencentcloud/config/v20220802/config_client.py +0 -0
  13. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/tencentcloud/config/v20220802/config_client_async.py +0 -0
  14. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/tencentcloud/config/v20220802/errorcodes.py +0 -0
  15. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/tencentcloud_sdk_python_config.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/tencentcloud_sdk_python_config.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_config-3.1.78 → tencentcloud_sdk_python_config-3.1.79}/tencentcloud_sdk_python_config.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-config
3
- Version: 3.1.78
3
+ Version: 3.1.79
4
4
  Summary: Tencent Cloud Config 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.78
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.79
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-config',
11
- install_requires=["tencentcloud-sdk-python-common>=3.1.78,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.79,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Config SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.78'
17
+ __version__ = '3.1.79'
@@ -7807,14 +7807,17 @@ class ListAlarmPolicyRequest(AbstractModel):
7807
7807
 
7808
7808
  def __init__(self):
7809
7809
  r"""
7810
- :param _Offset: 页码
7810
+ :param _Offset: <p>页码</p>
7811
7811
  :type Offset: int
7812
+ :param _Limit: <p>每页展示数量</p>
7813
+ :type Limit: int
7812
7814
  """
7813
7815
  self._Offset = None
7816
+ self._Limit = None
7814
7817
 
7815
7818
  @property
7816
7819
  def Offset(self):
7817
- r"""页码
7820
+ r"""<p>页码</p>
7818
7821
  :rtype: int
7819
7822
  """
7820
7823
  return self._Offset
@@ -7823,9 +7826,21 @@ class ListAlarmPolicyRequest(AbstractModel):
7823
7826
  def Offset(self, Offset):
7824
7827
  self._Offset = Offset
7825
7828
 
7829
+ @property
7830
+ def Limit(self):
7831
+ r"""<p>每页展示数量</p>
7832
+ :rtype: int
7833
+ """
7834
+ return self._Limit
7835
+
7836
+ @Limit.setter
7837
+ def Limit(self, Limit):
7838
+ self._Limit = Limit
7839
+
7826
7840
 
7827
7841
  def _deserialize(self, params):
7828
7842
  self._Offset = params.get("Offset")
7843
+ self._Limit = params.get("Limit")
7829
7844
  memeber_set = set(params.keys())
7830
7845
  for name, value in vars(self).items():
7831
7846
  property_name = name[1:]
@@ -7843,9 +7858,9 @@ class ListAlarmPolicyResponse(AbstractModel):
7843
7858
 
7844
7859
  def __init__(self):
7845
7860
  r"""
7846
- :param _Total: 返回记录的数量
7861
+ :param _Total: <p>返回记录的数量</p>
7847
7862
  :type Total: int
7848
- :param _AlarmPolicyList: 告警策略返回值
7863
+ :param _AlarmPolicyList: <p>告警策略返回值</p>
7849
7864
  :type AlarmPolicyList: list of AlarmPolicyRsp
7850
7865
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7851
7866
  :type RequestId: str
@@ -7856,7 +7871,7 @@ class ListAlarmPolicyResponse(AbstractModel):
7856
7871
 
7857
7872
  @property
7858
7873
  def Total(self):
7859
- r"""返回记录的数量
7874
+ r"""<p>返回记录的数量</p>
7860
7875
  :rtype: int
7861
7876
  """
7862
7877
  return self._Total
@@ -7867,7 +7882,7 @@ class ListAlarmPolicyResponse(AbstractModel):
7867
7882
 
7868
7883
  @property
7869
7884
  def AlarmPolicyList(self):
7870
- r"""告警策略返回值
7885
+ r"""<p>告警策略返回值</p>
7871
7886
  :rtype: list of AlarmPolicyRsp
7872
7887
  """
7873
7888
  return self._AlarmPolicyList
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-config
3
- Version: 3.1.78
3
+ Version: 3.1.79
4
4
  Summary: Tencent Cloud Config 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.78
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.79
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.79
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.78