tencentcloud-sdk-python 3.0.1160__py2.py3-none-any.whl → 3.0.1162__py2.py3-none-any.whl

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 (32) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/antiddos/v20200309/models.py +25 -0
  3. tencentcloud/cdb/v20170320/models.py +128 -0
  4. tencentcloud/domain/v20180808/errorcodes.py +6 -0
  5. tencentcloud/domain/v20180808/models.py +25 -1
  6. tencentcloud/ess/v20201111/ess_client.py +24 -0
  7. tencentcloud/ess/v20201111/models.py +231 -0
  8. tencentcloud/faceid/v20180301/models.py +2 -2
  9. tencentcloud/iotcloud/v20210408/models.py +26 -0
  10. tencentcloud/iotexplorer/v20190423/models.py +13 -0
  11. tencentcloud/lighthouse/v20200324/errorcodes.py +3 -3
  12. tencentcloud/lighthouse/v20200324/lighthouse_client.py +5 -5
  13. tencentcloud/lighthouse/v20200324/models.py +50 -48
  14. tencentcloud/oceanus/v20190422/models.py +13 -0
  15. tencentcloud/redis/v20180412/models.py +23 -12
  16. tencentcloud/tse/v20201207/models.py +26 -0
  17. tencentcloud/tsf/v20180326/errorcodes.py +12 -0
  18. tencentcloud/tsf/v20180326/models.py +80 -3
  19. tencentcloud/vdb/__init__.py +0 -0
  20. tencentcloud/vdb/v20230616/__init__.py +0 -0
  21. tencentcloud/vdb/v20230616/errorcodes.py +21 -0
  22. tencentcloud/vdb/v20230616/models.py +731 -0
  23. tencentcloud/vdb/v20230616/vdb_client.py +49 -0
  24. tencentcloud/waf/v20180125/models.py +192 -0
  25. tencentcloud/waf/v20180125/waf_client.py +23 -0
  26. tencentcloud/wedata/v20210820/models.py +12 -0
  27. tencentcloud/yinsuda/v20220527/models.py +14 -0
  28. {tencentcloud_sdk_python-3.0.1160.dist-info → tencentcloud_sdk_python-3.0.1162.dist-info}/METADATA +1 -1
  29. {tencentcloud_sdk_python-3.0.1160.dist-info → tencentcloud_sdk_python-3.0.1162.dist-info}/RECORD +32 -27
  30. {tencentcloud_sdk_python-3.0.1160.dist-info → tencentcloud_sdk_python-3.0.1162.dist-info}/LICENSE +0 -0
  31. {tencentcloud_sdk_python-3.0.1160.dist-info → tencentcloud_sdk_python-3.0.1162.dist-info}/WHEEL +0 -0
  32. {tencentcloud_sdk_python-3.0.1160.dist-info → tencentcloud_sdk_python-3.0.1162.dist-info}/top_level.txt +0 -0
@@ -4402,6 +4402,11 @@ class ConfigRelease(AbstractModel):
4402
4402
  :param _ConfigCenters: 配置中心发布情况
4403
4403
  注意:此字段可能返回 null,表示取不到有效值。
4404
4404
  :type ConfigCenters: list of TsfConfigCenter
4405
+ :param _DaulStatus: DUAL_STATUS_WRITE_REGISTRATION_ON 双写&&双注册开启
4406
+
4407
+ DUAL_STATUS_WRITE_REGISTRATION_OFF 双写&&双注册关闭
4408
+ 注意:此字段可能返回 null,表示取不到有效值。
4409
+ :type DaulStatus: str
4405
4410
  """
4406
4411
  self._ConfigReleaseId = None
4407
4412
  self._ConfigId = None
@@ -4417,6 +4422,7 @@ class ConfigRelease(AbstractModel):
4417
4422
  self._ReleaseDesc = None
4418
4423
  self._ApplicationId = None
4419
4424
  self._ConfigCenters = None
4425
+ self._DaulStatus = None
4420
4426
 
4421
4427
  @property
4422
4428
  def ConfigReleaseId(self):
@@ -4530,6 +4536,14 @@ class ConfigRelease(AbstractModel):
4530
4536
  def ConfigCenters(self, ConfigCenters):
4531
4537
  self._ConfigCenters = ConfigCenters
4532
4538
 
4539
+ @property
4540
+ def DaulStatus(self):
4541
+ return self._DaulStatus
4542
+
4543
+ @DaulStatus.setter
4544
+ def DaulStatus(self, DaulStatus):
4545
+ self._DaulStatus = DaulStatus
4546
+
4533
4547
 
4534
4548
  def _deserialize(self, params):
4535
4549
  self._ConfigReleaseId = params.get("ConfigReleaseId")
@@ -4551,6 +4565,7 @@ class ConfigRelease(AbstractModel):
4551
4565
  obj = TsfConfigCenter()
4552
4566
  obj._deserialize(item)
4553
4567
  self._ConfigCenters.append(obj)
4568
+ self._DaulStatus = params.get("DaulStatus")
4554
4569
  memeber_set = set(params.keys())
4555
4570
  for name, value in vars(self).items():
4556
4571
  property_name = name[1:]
@@ -11531,8 +11546,11 @@ class DeleteApplicationRequest(AbstractModel):
11531
11546
  r"""
11532
11547
  :param _ApplicationId: 应用ID
11533
11548
  :type ApplicationId: str
11549
+ :param _SyncDeleteImageRepository: 是否删除镜像仓库
11550
+ :type SyncDeleteImageRepository: bool
11534
11551
  """
11535
11552
  self._ApplicationId = None
11553
+ self._SyncDeleteImageRepository = None
11536
11554
 
11537
11555
  @property
11538
11556
  def ApplicationId(self):
@@ -11542,9 +11560,18 @@ class DeleteApplicationRequest(AbstractModel):
11542
11560
  def ApplicationId(self, ApplicationId):
11543
11561
  self._ApplicationId = ApplicationId
11544
11562
 
11563
+ @property
11564
+ def SyncDeleteImageRepository(self):
11565
+ return self._SyncDeleteImageRepository
11566
+
11567
+ @SyncDeleteImageRepository.setter
11568
+ def SyncDeleteImageRepository(self, SyncDeleteImageRepository):
11569
+ self._SyncDeleteImageRepository = SyncDeleteImageRepository
11570
+
11545
11571
 
11546
11572
  def _deserialize(self, params):
11547
11573
  self._ApplicationId = params.get("ApplicationId")
11574
+ self._SyncDeleteImageRepository = params.get("SyncDeleteImageRepository")
11548
11575
  memeber_set = set(params.keys())
11549
11576
  for name, value in vars(self).items():
11550
11577
  property_name = name[1:]
@@ -21185,6 +21212,8 @@ class DescribeMicroservicesRequest(AbstractModel):
21185
21212
  :type MicroserviceIdList: list of str
21186
21213
  :param _MicroserviceNameList: 搜索的服务名列表
21187
21214
  :type MicroserviceNameList: list of str
21215
+ :param _ConfigCenterInstanceId: 注册中心实例id
21216
+ :type ConfigCenterInstanceId: str
21188
21217
  """
21189
21218
  self._NamespaceId = None
21190
21219
  self._SearchWord = None
@@ -21195,6 +21224,7 @@ class DescribeMicroservicesRequest(AbstractModel):
21195
21224
  self._Status = None
21196
21225
  self._MicroserviceIdList = None
21197
21226
  self._MicroserviceNameList = None
21227
+ self._ConfigCenterInstanceId = None
21198
21228
 
21199
21229
  @property
21200
21230
  def NamespaceId(self):
@@ -21268,6 +21298,14 @@ class DescribeMicroservicesRequest(AbstractModel):
21268
21298
  def MicroserviceNameList(self, MicroserviceNameList):
21269
21299
  self._MicroserviceNameList = MicroserviceNameList
21270
21300
 
21301
+ @property
21302
+ def ConfigCenterInstanceId(self):
21303
+ return self._ConfigCenterInstanceId
21304
+
21305
+ @ConfigCenterInstanceId.setter
21306
+ def ConfigCenterInstanceId(self, ConfigCenterInstanceId):
21307
+ self._ConfigCenterInstanceId = ConfigCenterInstanceId
21308
+
21271
21309
 
21272
21310
  def _deserialize(self, params):
21273
21311
  self._NamespaceId = params.get("NamespaceId")
@@ -21279,6 +21317,7 @@ class DescribeMicroservicesRequest(AbstractModel):
21279
21317
  self._Status = params.get("Status")
21280
21318
  self._MicroserviceIdList = params.get("MicroserviceIdList")
21281
21319
  self._MicroserviceNameList = params.get("MicroserviceNameList")
21320
+ self._ConfigCenterInstanceId = params.get("ConfigCenterInstanceId")
21282
21321
  memeber_set = set(params.keys())
21283
21322
  for name, value in vars(self).items():
21284
21323
  property_name = name[1:]
@@ -23817,15 +23856,15 @@ class DescribeStatisticsRequest(AbstractModel):
23817
23856
  :type Offset: int
23818
23857
  :param _Limit: 单页请求配置数量,取值范围[1, 50],默认值为10
23819
23858
  :type Limit: int
23820
- :param _NamespaceId: 命名空间Id
23859
+ :param _NamespaceId: 命名空间Id,此字段,和 NamespaceIdList 或者 MetricDimensionValues 字段包含 namespaceId 维度信息。三者选其一。
23821
23860
  :type NamespaceId: str
23822
23861
  :param _OrderBy: 排序字段:AvgTimeConsuming[默认]、RequestCount、ErrorRate。实例监控还支持 CpuPercent
23823
23862
  :type OrderBy: str
23824
23863
  :param _OrderType: 排序方式:ASC:0、DESC:1
23825
23864
  :type OrderType: int
23826
- :param _EndTime: 开始时间:年月日 时分秒2020-05-12 14:43:12
23865
+ :param _EndTime: 开始时间:年月日 时分秒2020-05-12 14:43:12, 不能为空
23827
23866
  :type EndTime: str
23828
- :param _StartTime: 开始时间:年月日 时分秒2020-05-12 14:43:12
23867
+ :param _StartTime: 开始时间:年月日 时分秒2020-05-12 14:43:12, 不能为空
23829
23868
  :type StartTime: str
23830
23869
  :param _ServiceName: 服务名称
23831
23870
  :type ServiceName: str
@@ -23839,6 +23878,8 @@ class DescribeStatisticsRequest(AbstractModel):
23839
23878
  :type DbName: str
23840
23879
  :param _NamespaceIdList: 命名空间id数组
23841
23880
  :type NamespaceIdList: list of str
23881
+ :param _ConfigCenterInstanceId: 独占配置中心的ID
23882
+ :type ConfigCenterInstanceId: str
23842
23883
  """
23843
23884
  self._Type = None
23844
23885
  self._TimeStep = None
@@ -23855,6 +23896,7 @@ class DescribeStatisticsRequest(AbstractModel):
23855
23896
  self._BucketKey = None
23856
23897
  self._DbName = None
23857
23898
  self._NamespaceIdList = None
23899
+ self._ConfigCenterInstanceId = None
23858
23900
 
23859
23901
  @property
23860
23902
  def Type(self):
@@ -23976,6 +24018,14 @@ class DescribeStatisticsRequest(AbstractModel):
23976
24018
  def NamespaceIdList(self, NamespaceIdList):
23977
24019
  self._NamespaceIdList = NamespaceIdList
23978
24020
 
24021
+ @property
24022
+ def ConfigCenterInstanceId(self):
24023
+ return self._ConfigCenterInstanceId
24024
+
24025
+ @ConfigCenterInstanceId.setter
24026
+ def ConfigCenterInstanceId(self, ConfigCenterInstanceId):
24027
+ self._ConfigCenterInstanceId = ConfigCenterInstanceId
24028
+
23979
24029
 
23980
24030
  def _deserialize(self, params):
23981
24031
  self._Type = params.get("Type")
@@ -23998,6 +24048,7 @@ class DescribeStatisticsRequest(AbstractModel):
23998
24048
  self._BucketKey = params.get("BucketKey")
23999
24049
  self._DbName = params.get("DbName")
24000
24050
  self._NamespaceIdList = params.get("NamespaceIdList")
24051
+ self._ConfigCenterInstanceId = params.get("ConfigCenterInstanceId")
24001
24052
  memeber_set = set(params.keys())
24002
24053
  for name, value in vars(self).items():
24003
24054
  property_name = name[1:]
@@ -41240,12 +41291,20 @@ class TsfConfigCenter(AbstractModel):
41240
41291
  :param _NamespaceId: 命名空间id
41241
41292
  注意:此字段可能返回 null,表示取不到有效值。
41242
41293
  :type NamespaceId: str
41294
+ :param _CurrentVersion: 当前版本
41295
+ 注意:此字段可能返回 null,表示取不到有效值。
41296
+ :type CurrentVersion: str
41297
+ :param _TargetVersion: 需要升级的版本
41298
+ 注意:此字段可能返回 null,表示取不到有效值。
41299
+ :type TargetVersion: str
41243
41300
  """
41244
41301
  self._ConfigType = None
41245
41302
  self._ConfigCenterInstanceId = None
41246
41303
  self._ConfigCenterInstanceName = None
41247
41304
  self._RegionId = None
41248
41305
  self._NamespaceId = None
41306
+ self._CurrentVersion = None
41307
+ self._TargetVersion = None
41249
41308
 
41250
41309
  @property
41251
41310
  def ConfigType(self):
@@ -41287,6 +41346,22 @@ class TsfConfigCenter(AbstractModel):
41287
41346
  def NamespaceId(self, NamespaceId):
41288
41347
  self._NamespaceId = NamespaceId
41289
41348
 
41349
+ @property
41350
+ def CurrentVersion(self):
41351
+ return self._CurrentVersion
41352
+
41353
+ @CurrentVersion.setter
41354
+ def CurrentVersion(self, CurrentVersion):
41355
+ self._CurrentVersion = CurrentVersion
41356
+
41357
+ @property
41358
+ def TargetVersion(self):
41359
+ return self._TargetVersion
41360
+
41361
+ @TargetVersion.setter
41362
+ def TargetVersion(self, TargetVersion):
41363
+ self._TargetVersion = TargetVersion
41364
+
41290
41365
 
41291
41366
  def _deserialize(self, params):
41292
41367
  self._ConfigType = params.get("ConfigType")
@@ -41294,6 +41369,8 @@ class TsfConfigCenter(AbstractModel):
41294
41369
  self._ConfigCenterInstanceName = params.get("ConfigCenterInstanceName")
41295
41370
  self._RegionId = params.get("RegionId")
41296
41371
  self._NamespaceId = params.get("NamespaceId")
41372
+ self._CurrentVersion = params.get("CurrentVersion")
41373
+ self._TargetVersion = params.get("TargetVersion")
41297
41374
  memeber_set = set(params.keys())
41298
41375
  for name, value in vars(self).items():
41299
41376
  property_name = name[1:]
File without changes
File without changes
@@ -0,0 +1,21 @@
1
+ # -*- coding: utf8 -*-
2
+ # Copyright (c) 2017-2021 THL A29 Limited, a Tencent company. All Rights Reserved.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+
17
+ # CAM签名/鉴权错误。
18
+ AUTHFAILURE = 'AuthFailure'
19
+
20
+ # 操作失败。
21
+ FAILEDOPERATION = 'FailedOperation'