tencentcloud-sdk-python-apm 3.0.1323__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.

Potentially problematic release.


This version of tencentcloud-sdk-python-apm might be problematic. Click here for more details.

Files changed (16) hide show
  1. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/setup.py +1 -1
  3. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/tencentcloud/apm/v20210622/models.py +29 -2
  5. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/tencentcloud_sdk_python_apm.egg-info/PKG-INFO +1 -1
  6. tencentcloud-sdk-python-apm-3.0.1324/tencentcloud_sdk_python_apm.egg-info/requires.txt +1 -0
  7. tencentcloud-sdk-python-apm-3.0.1323/tencentcloud_sdk_python_apm.egg-info/requires.txt +0 -1
  8. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/README.rst +0 -0
  9. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/setup.cfg +0 -0
  10. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/tencentcloud/apm/__init__.py +0 -0
  11. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/tencentcloud/apm/v20210622/__init__.py +0 -0
  12. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/tencentcloud/apm/v20210622/apm_client.py +0 -0
  13. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/tencentcloud/apm/v20210622/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/tencentcloud_sdk_python_apm.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/tencentcloud_sdk_python_apm.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-apm-3.0.1323 → tencentcloud-sdk-python-apm-3.0.1324}/tencentcloud_sdk_python_apm.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-apm
3
- Version: 3.0.1323
3
+ Version: 3.0.1324
4
4
  Summary: Tencent Cloud Apm 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-apm',
11
- install_requires=["tencentcloud-sdk-python-common==3.0.1323"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1324"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Apm 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.1323'
17
+ __version__ = '3.0.1324'
@@ -680,7 +680,8 @@ class ApmInstanceDetail(AbstractModel):
680
680
  :type Name: str
681
681
  :param _Description: 业务系统描述信息
682
682
  :type Description: str
683
- :param _Status: 业务系统状态
683
+ :param _Status: 业务系统状态。{
684
+ 1: 初始化中; 2: 运行中; 4: 限流}
684
685
  :type Status: int
685
686
  :param _Region: 业务系统所属地域
686
687
  :type Region: str
@@ -746,6 +747,13 @@ class ApmInstanceDetail(AbstractModel):
746
747
  :type IsInstrumentationVulnerabilityScan: int
747
748
  :param _IsSqlInjectionAnalysis: 是否开启 SQL 注入分析(0=关, 1=开)
748
749
  :type IsSqlInjectionAnalysis: int
750
+ :param _StopReason: 限流原因。{
751
+ 1: 正式版限额;
752
+ 2: 试用版限额;
753
+ 4: 试用版到期;
754
+ 8: 账号欠费
755
+ }
756
+ :type StopReason: int
749
757
  """
750
758
  self._InstanceId = None
751
759
  self._Name = None
@@ -783,6 +791,7 @@ class ApmInstanceDetail(AbstractModel):
783
791
  self._DashboardTopicID = None
784
792
  self._IsInstrumentationVulnerabilityScan = None
785
793
  self._IsSqlInjectionAnalysis = None
794
+ self._StopReason = None
786
795
 
787
796
  @property
788
797
  def InstanceId(self):
@@ -819,7 +828,8 @@ class ApmInstanceDetail(AbstractModel):
819
828
 
820
829
  @property
821
830
  def Status(self):
822
- """业务系统状态
831
+ """业务系统状态。{
832
+ 1: 初始化中; 2: 运行中; 4: 限流}
823
833
  :rtype: int
824
834
  """
825
835
  return self._Status
@@ -1180,6 +1190,22 @@ class ApmInstanceDetail(AbstractModel):
1180
1190
  def IsSqlInjectionAnalysis(self, IsSqlInjectionAnalysis):
1181
1191
  self._IsSqlInjectionAnalysis = IsSqlInjectionAnalysis
1182
1192
 
1193
+ @property
1194
+ def StopReason(self):
1195
+ """限流原因。{
1196
+ 1: 正式版限额;
1197
+ 2: 试用版限额;
1198
+ 4: 试用版到期;
1199
+ 8: 账号欠费
1200
+ }
1201
+ :rtype: int
1202
+ """
1203
+ return self._StopReason
1204
+
1205
+ @StopReason.setter
1206
+ def StopReason(self, StopReason):
1207
+ self._StopReason = StopReason
1208
+
1183
1209
 
1184
1210
  def _deserialize(self, params):
1185
1211
  self._InstanceId = params.get("InstanceId")
@@ -1223,6 +1249,7 @@ class ApmInstanceDetail(AbstractModel):
1223
1249
  self._DashboardTopicID = params.get("DashboardTopicID")
1224
1250
  self._IsInstrumentationVulnerabilityScan = params.get("IsInstrumentationVulnerabilityScan")
1225
1251
  self._IsSqlInjectionAnalysis = params.get("IsSqlInjectionAnalysis")
1252
+ self._StopReason = params.get("StopReason")
1226
1253
  memeber_set = set(params.keys())
1227
1254
  for name, value in vars(self).items():
1228
1255
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-apm
3
- Version: 3.0.1323
3
+ Version: 3.0.1324
4
4
  Summary: Tencent Cloud Apm 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.1323