tencentcloud-sdk-python 3.0.1210__py2.py3-none-any.whl → 3.0.1212__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/billing/v20180709/models.py +155 -0
- tencentcloud/dlc/v20210125/models.py +139 -0
- tencentcloud/es/v20180416/es_client.py +1 -0
- tencentcloud/es/v20180416/models.py +126 -1
- tencentcloud/ess/v20201111/ess_client.py +58 -0
- tencentcloud/ess/v20201111/models.py +361 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +29 -0
- tencentcloud/essbasic/v20210526/models.py +149 -0
- tencentcloud/faceid/v20180301/models.py +2 -0
- tencentcloud/goosefs/v20220519/models.py +61 -0
- tencentcloud/hunyuan/v20230901/models.py +12 -0
- tencentcloud/iss/v20230517/errorcodes.py +15 -0
- tencentcloud/iss/v20230517/models.py +75 -0
- tencentcloud/lke/v20231130/errorcodes.py +1 -1
- tencentcloud/mna/v20210119/errorcodes.py +6 -0
- tencentcloud/mna/v20210119/mna_client.py +23 -0
- tencentcloud/mna/v20210119/models.py +120 -0
- tencentcloud/mongodb/v20180408/errorcodes.py +1 -1
- tencentcloud/mongodb/v20190725/errorcodes.py +1 -1
- tencentcloud/mongodb/v20190725/models.py +59 -40
- tencentcloud/ms/v20180408/ms_client.py +69 -23
- tencentcloud/ocr/v20181119/models.py +1 -1
- tencentcloud/organization/v20210331/errorcodes.py +231 -0
- tencentcloud/organization/v20210331/models.py +12119 -4358
- tencentcloud/organization/v20210331/organization_client.py +1104 -0
- tencentcloud/tat/v20201028/errorcodes.py +9 -0
- tencentcloud/tat/v20201028/models.py +221 -1
- tencentcloud/tat/v20201028/tat_client.py +23 -0
- tencentcloud/teo/v20220901/models.py +2 -3
- tencentcloud/trocket/v20230308/models.py +71 -7
- tencentcloud/trtc/v20190722/models.py +26 -0
- tencentcloud/vclm/v20240523/errorcodes.py +18 -0
- {tencentcloud_sdk_python-3.0.1210.dist-info → tencentcloud_sdk_python-3.0.1212.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1210.dist-info → tencentcloud_sdk_python-3.0.1212.dist-info}/RECORD +38 -38
- {tencentcloud_sdk_python-3.0.1210.dist-info → tencentcloud_sdk_python-3.0.1212.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1210.dist-info → tencentcloud_sdk_python-3.0.1212.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1210.dist-info → tencentcloud_sdk_python-3.0.1212.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -21896,9 +21896,41 @@ class UsageDetails(AbstractModel):
|
|
21896
21896
|
:param _SubProductName: 商品细节
|
21897
21897
|
注意:此字段可能返回 null,表示取不到有效值。
|
21898
21898
|
:type SubProductName: str
|
21899
|
+
:param _ProductCode: 产品码
|
21900
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
21901
|
+
:type ProductCode: str
|
21902
|
+
:param _SubProductCode: 子产品码
|
21903
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
21904
|
+
:type SubProductCode: str
|
21905
|
+
:param _BillingItemCode: 计费项码
|
21906
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
21907
|
+
:type BillingItemCode: str
|
21908
|
+
:param _SubBillingItemCode: 计费细项码
|
21909
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
21910
|
+
:type SubBillingItemCode: str
|
21911
|
+
:param _ProductEnName: 产品英文名
|
21912
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
21913
|
+
:type ProductEnName: str
|
21914
|
+
:param _SubProductEnName: 子产品英文名
|
21915
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
21916
|
+
:type SubProductEnName: str
|
21917
|
+
:param _CalcUnit: 结算周期
|
21918
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
21919
|
+
:type CalcUnit: str
|
21920
|
+
:param _Action: payMode为prepay 且 payScene为common的情况下存在
|
21921
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
21922
|
+
:type Action: str
|
21899
21923
|
"""
|
21900
21924
|
self._ProductName = None
|
21901
21925
|
self._SubProductName = None
|
21926
|
+
self._ProductCode = None
|
21927
|
+
self._SubProductCode = None
|
21928
|
+
self._BillingItemCode = None
|
21929
|
+
self._SubBillingItemCode = None
|
21930
|
+
self._ProductEnName = None
|
21931
|
+
self._SubProductEnName = None
|
21932
|
+
self._CalcUnit = None
|
21933
|
+
self._Action = None
|
21902
21934
|
|
21903
21935
|
@property
|
21904
21936
|
def ProductName(self):
|
@@ -21916,10 +21948,82 @@ class UsageDetails(AbstractModel):
|
|
21916
21948
|
def SubProductName(self, SubProductName):
|
21917
21949
|
self._SubProductName = SubProductName
|
21918
21950
|
|
21951
|
+
@property
|
21952
|
+
def ProductCode(self):
|
21953
|
+
return self._ProductCode
|
21954
|
+
|
21955
|
+
@ProductCode.setter
|
21956
|
+
def ProductCode(self, ProductCode):
|
21957
|
+
self._ProductCode = ProductCode
|
21958
|
+
|
21959
|
+
@property
|
21960
|
+
def SubProductCode(self):
|
21961
|
+
return self._SubProductCode
|
21962
|
+
|
21963
|
+
@SubProductCode.setter
|
21964
|
+
def SubProductCode(self, SubProductCode):
|
21965
|
+
self._SubProductCode = SubProductCode
|
21966
|
+
|
21967
|
+
@property
|
21968
|
+
def BillingItemCode(self):
|
21969
|
+
return self._BillingItemCode
|
21970
|
+
|
21971
|
+
@BillingItemCode.setter
|
21972
|
+
def BillingItemCode(self, BillingItemCode):
|
21973
|
+
self._BillingItemCode = BillingItemCode
|
21974
|
+
|
21975
|
+
@property
|
21976
|
+
def SubBillingItemCode(self):
|
21977
|
+
return self._SubBillingItemCode
|
21978
|
+
|
21979
|
+
@SubBillingItemCode.setter
|
21980
|
+
def SubBillingItemCode(self, SubBillingItemCode):
|
21981
|
+
self._SubBillingItemCode = SubBillingItemCode
|
21982
|
+
|
21983
|
+
@property
|
21984
|
+
def ProductEnName(self):
|
21985
|
+
return self._ProductEnName
|
21986
|
+
|
21987
|
+
@ProductEnName.setter
|
21988
|
+
def ProductEnName(self, ProductEnName):
|
21989
|
+
self._ProductEnName = ProductEnName
|
21990
|
+
|
21991
|
+
@property
|
21992
|
+
def SubProductEnName(self):
|
21993
|
+
return self._SubProductEnName
|
21994
|
+
|
21995
|
+
@SubProductEnName.setter
|
21996
|
+
def SubProductEnName(self, SubProductEnName):
|
21997
|
+
self._SubProductEnName = SubProductEnName
|
21998
|
+
|
21999
|
+
@property
|
22000
|
+
def CalcUnit(self):
|
22001
|
+
return self._CalcUnit
|
22002
|
+
|
22003
|
+
@CalcUnit.setter
|
22004
|
+
def CalcUnit(self, CalcUnit):
|
22005
|
+
self._CalcUnit = CalcUnit
|
22006
|
+
|
22007
|
+
@property
|
22008
|
+
def Action(self):
|
22009
|
+
return self._Action
|
22010
|
+
|
22011
|
+
@Action.setter
|
22012
|
+
def Action(self, Action):
|
22013
|
+
self._Action = Action
|
22014
|
+
|
21919
22015
|
|
21920
22016
|
def _deserialize(self, params):
|
21921
22017
|
self._ProductName = params.get("ProductName")
|
21922
22018
|
self._SubProductName = params.get("SubProductName")
|
22019
|
+
self._ProductCode = params.get("ProductCode")
|
22020
|
+
self._SubProductCode = params.get("SubProductCode")
|
22021
|
+
self._BillingItemCode = params.get("BillingItemCode")
|
22022
|
+
self._SubBillingItemCode = params.get("SubBillingItemCode")
|
22023
|
+
self._ProductEnName = params.get("ProductEnName")
|
22024
|
+
self._SubProductEnName = params.get("SubProductEnName")
|
22025
|
+
self._CalcUnit = params.get("CalcUnit")
|
22026
|
+
self._Action = params.get("Action")
|
21923
22027
|
memeber_set = set(params.keys())
|
21924
22028
|
for name, value in vars(self).items():
|
21925
22029
|
property_name = name[1:]
|
@@ -21944,10 +22048,25 @@ class UsageRecords(AbstractModel):
|
|
21944
22048
|
:param _UsageDetails: 使用记录细节
|
21945
22049
|
注意:此字段可能返回 null,表示取不到有效值。
|
21946
22050
|
:type UsageDetails: list of UsageDetails
|
22051
|
+
:param _PayMode: 付费模式
|
22052
|
+
:type PayMode: str
|
22053
|
+
:param _VoucherId: 查询的券id
|
22054
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22055
|
+
:type VoucherId: str
|
22056
|
+
:param _PayScene: 交易场景:(adjust:调账、common:正常交易场景)
|
22057
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22058
|
+
:type PayScene: str
|
22059
|
+
:param _SeqId: 唯一id,对应交易:预付费的dealName,调账/后付费的outTradeNo
|
22060
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
22061
|
+
:type SeqId: str
|
21947
22062
|
"""
|
21948
22063
|
self._UsedAmount = None
|
21949
22064
|
self._UsedTime = None
|
21950
22065
|
self._UsageDetails = None
|
22066
|
+
self._PayMode = None
|
22067
|
+
self._VoucherId = None
|
22068
|
+
self._PayScene = None
|
22069
|
+
self._SeqId = None
|
21951
22070
|
|
21952
22071
|
@property
|
21953
22072
|
def UsedAmount(self):
|
@@ -21973,6 +22092,38 @@ class UsageRecords(AbstractModel):
|
|
21973
22092
|
def UsageDetails(self, UsageDetails):
|
21974
22093
|
self._UsageDetails = UsageDetails
|
21975
22094
|
|
22095
|
+
@property
|
22096
|
+
def PayMode(self):
|
22097
|
+
return self._PayMode
|
22098
|
+
|
22099
|
+
@PayMode.setter
|
22100
|
+
def PayMode(self, PayMode):
|
22101
|
+
self._PayMode = PayMode
|
22102
|
+
|
22103
|
+
@property
|
22104
|
+
def VoucherId(self):
|
22105
|
+
return self._VoucherId
|
22106
|
+
|
22107
|
+
@VoucherId.setter
|
22108
|
+
def VoucherId(self, VoucherId):
|
22109
|
+
self._VoucherId = VoucherId
|
22110
|
+
|
22111
|
+
@property
|
22112
|
+
def PayScene(self):
|
22113
|
+
return self._PayScene
|
22114
|
+
|
22115
|
+
@PayScene.setter
|
22116
|
+
def PayScene(self, PayScene):
|
22117
|
+
self._PayScene = PayScene
|
22118
|
+
|
22119
|
+
@property
|
22120
|
+
def SeqId(self):
|
22121
|
+
return self._SeqId
|
22122
|
+
|
22123
|
+
@SeqId.setter
|
22124
|
+
def SeqId(self, SeqId):
|
22125
|
+
self._SeqId = SeqId
|
22126
|
+
|
21976
22127
|
|
21977
22128
|
def _deserialize(self, params):
|
21978
22129
|
self._UsedAmount = params.get("UsedAmount")
|
@@ -21983,6 +22134,10 @@ class UsageRecords(AbstractModel):
|
|
21983
22134
|
obj = UsageDetails()
|
21984
22135
|
obj._deserialize(item)
|
21985
22136
|
self._UsageDetails.append(obj)
|
22137
|
+
self._PayMode = params.get("PayMode")
|
22138
|
+
self._VoucherId = params.get("VoucherId")
|
22139
|
+
self._PayScene = params.get("PayScene")
|
22140
|
+
self._SeqId = params.get("SeqId")
|
21986
22141
|
memeber_set = set(params.keys())
|
21987
22142
|
for name, value in vars(self).items():
|
21988
22143
|
property_name = name[1:]
|
@@ -18789,11 +18789,27 @@ class LakeFsInfo(AbstractModel):
|
|
18789
18789
|
:type SpaceUsedSize: float
|
18790
18790
|
:param _CreateTimeStamp: 创建时候的时间戳
|
18791
18791
|
:type CreateTimeStamp: int
|
18792
|
+
:param _DefaultBucket: 是否是用户默认桶,0:默认桶,1:非默认桶
|
18793
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18794
|
+
:type DefaultBucket: int
|
18795
|
+
:param _ShortName: 托管存储short name
|
18796
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18797
|
+
:type ShortName: str
|
18798
|
+
:param _Description: 桶描述信息
|
18799
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18800
|
+
:type Description: str
|
18801
|
+
:param _Status: 托管桶状态,当前取值为:creating、bind、readOnly、isolate
|
18802
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
18803
|
+
:type Status: str
|
18792
18804
|
"""
|
18793
18805
|
self._Name = None
|
18794
18806
|
self._Type = None
|
18795
18807
|
self._SpaceUsedSize = None
|
18796
18808
|
self._CreateTimeStamp = None
|
18809
|
+
self._DefaultBucket = None
|
18810
|
+
self._ShortName = None
|
18811
|
+
self._Description = None
|
18812
|
+
self._Status = None
|
18797
18813
|
|
18798
18814
|
@property
|
18799
18815
|
def Name(self):
|
@@ -18827,12 +18843,48 @@ class LakeFsInfo(AbstractModel):
|
|
18827
18843
|
def CreateTimeStamp(self, CreateTimeStamp):
|
18828
18844
|
self._CreateTimeStamp = CreateTimeStamp
|
18829
18845
|
|
18846
|
+
@property
|
18847
|
+
def DefaultBucket(self):
|
18848
|
+
return self._DefaultBucket
|
18849
|
+
|
18850
|
+
@DefaultBucket.setter
|
18851
|
+
def DefaultBucket(self, DefaultBucket):
|
18852
|
+
self._DefaultBucket = DefaultBucket
|
18853
|
+
|
18854
|
+
@property
|
18855
|
+
def ShortName(self):
|
18856
|
+
return self._ShortName
|
18857
|
+
|
18858
|
+
@ShortName.setter
|
18859
|
+
def ShortName(self, ShortName):
|
18860
|
+
self._ShortName = ShortName
|
18861
|
+
|
18862
|
+
@property
|
18863
|
+
def Description(self):
|
18864
|
+
return self._Description
|
18865
|
+
|
18866
|
+
@Description.setter
|
18867
|
+
def Description(self, Description):
|
18868
|
+
self._Description = Description
|
18869
|
+
|
18870
|
+
@property
|
18871
|
+
def Status(self):
|
18872
|
+
return self._Status
|
18873
|
+
|
18874
|
+
@Status.setter
|
18875
|
+
def Status(self, Status):
|
18876
|
+
self._Status = Status
|
18877
|
+
|
18830
18878
|
|
18831
18879
|
def _deserialize(self, params):
|
18832
18880
|
self._Name = params.get("Name")
|
18833
18881
|
self._Type = params.get("Type")
|
18834
18882
|
self._SpaceUsedSize = params.get("SpaceUsedSize")
|
18835
18883
|
self._CreateTimeStamp = params.get("CreateTimeStamp")
|
18884
|
+
self._DefaultBucket = params.get("DefaultBucket")
|
18885
|
+
self._ShortName = params.get("ShortName")
|
18886
|
+
self._Description = params.get("Description")
|
18887
|
+
self._Status = params.get("Status")
|
18836
18888
|
memeber_set = set(params.keys())
|
18837
18889
|
for name, value in vars(self).items():
|
18838
18890
|
property_name = name[1:]
|
@@ -23278,10 +23330,18 @@ class SmartOptimizerLifecyclePolicy(AbstractModel):
|
|
23278
23330
|
:param _DropTable: 是否删表
|
23279
23331
|
注意:此字段可能返回 null,表示取不到有效值。
|
23280
23332
|
:type DropTable: bool
|
23333
|
+
:param _ExpiredField: 过期字段
|
23334
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23335
|
+
:type ExpiredField: str
|
23336
|
+
:param _ExpiredFieldFormat: 过期字段格式
|
23337
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23338
|
+
:type ExpiredFieldFormat: str
|
23281
23339
|
"""
|
23282
23340
|
self._LifecycleEnable = None
|
23283
23341
|
self._Expiration = None
|
23284
23342
|
self._DropTable = None
|
23343
|
+
self._ExpiredField = None
|
23344
|
+
self._ExpiredFieldFormat = None
|
23285
23345
|
|
23286
23346
|
@property
|
23287
23347
|
def LifecycleEnable(self):
|
@@ -23307,11 +23367,29 @@ class SmartOptimizerLifecyclePolicy(AbstractModel):
|
|
23307
23367
|
def DropTable(self, DropTable):
|
23308
23368
|
self._DropTable = DropTable
|
23309
23369
|
|
23370
|
+
@property
|
23371
|
+
def ExpiredField(self):
|
23372
|
+
return self._ExpiredField
|
23373
|
+
|
23374
|
+
@ExpiredField.setter
|
23375
|
+
def ExpiredField(self, ExpiredField):
|
23376
|
+
self._ExpiredField = ExpiredField
|
23377
|
+
|
23378
|
+
@property
|
23379
|
+
def ExpiredFieldFormat(self):
|
23380
|
+
return self._ExpiredFieldFormat
|
23381
|
+
|
23382
|
+
@ExpiredFieldFormat.setter
|
23383
|
+
def ExpiredFieldFormat(self, ExpiredFieldFormat):
|
23384
|
+
self._ExpiredFieldFormat = ExpiredFieldFormat
|
23385
|
+
|
23310
23386
|
|
23311
23387
|
def _deserialize(self, params):
|
23312
23388
|
self._LifecycleEnable = params.get("LifecycleEnable")
|
23313
23389
|
self._Expiration = params.get("Expiration")
|
23314
23390
|
self._DropTable = params.get("DropTable")
|
23391
|
+
self._ExpiredField = params.get("ExpiredField")
|
23392
|
+
self._ExpiredFieldFormat = params.get("ExpiredFieldFormat")
|
23315
23393
|
memeber_set = set(params.keys())
|
23316
23394
|
for name, value in vars(self).items():
|
23317
23395
|
property_name = name[1:]
|
@@ -23424,6 +23502,34 @@ class SmartOptimizerWrittenPolicy(AbstractModel):
|
|
23424
23502
|
|
23425
23503
|
"""
|
23426
23504
|
|
23505
|
+
def __init__(self):
|
23506
|
+
r"""
|
23507
|
+
:param _WrittenEnable: none/enable/disable/default
|
23508
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
23509
|
+
:type WrittenEnable: str
|
23510
|
+
"""
|
23511
|
+
self._WrittenEnable = None
|
23512
|
+
|
23513
|
+
@property
|
23514
|
+
def WrittenEnable(self):
|
23515
|
+
return self._WrittenEnable
|
23516
|
+
|
23517
|
+
@WrittenEnable.setter
|
23518
|
+
def WrittenEnable(self, WrittenEnable):
|
23519
|
+
self._WrittenEnable = WrittenEnable
|
23520
|
+
|
23521
|
+
|
23522
|
+
def _deserialize(self, params):
|
23523
|
+
self._WrittenEnable = params.get("WrittenEnable")
|
23524
|
+
memeber_set = set(params.keys())
|
23525
|
+
for name, value in vars(self).items():
|
23526
|
+
property_name = name[1:]
|
23527
|
+
if property_name in memeber_set:
|
23528
|
+
memeber_set.remove(property_name)
|
23529
|
+
if len(memeber_set) > 0:
|
23530
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
23531
|
+
|
23532
|
+
|
23427
23533
|
|
23428
23534
|
class SmartPolicy(AbstractModel):
|
23429
23535
|
"""SmartPolicyRequest
|
@@ -24857,20 +24963,33 @@ class TColumn(AbstractModel):
|
|
24857
24963
|
def __init__(self):
|
24858
24964
|
r"""
|
24859
24965
|
:param _Name: 字段名称
|
24966
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
24860
24967
|
:type Name: str
|
24861
24968
|
:param _Type: 字段类型
|
24969
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
24862
24970
|
:type Type: str
|
24863
24971
|
:param _Comment: 字段描述
|
24972
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
24864
24973
|
:type Comment: str
|
24865
24974
|
:param _Default: 字段默认值
|
24975
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
24866
24976
|
:type Default: str
|
24867
24977
|
:param _NotNull: 字段是否是非空
|
24978
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
24868
24979
|
:type NotNull: bool
|
24869
24980
|
:param _Precision: 表示整个 numeric 的长度,取值1-38
|
24981
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
24870
24982
|
:type Precision: int
|
24871
24983
|
:param _Scale: 表示小数部分的长度
|
24872
24984
|
Scale小于Precision
|
24985
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
24873
24986
|
:type Scale: int
|
24987
|
+
:param _Position: 字段位置,小的在前
|
24988
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
24989
|
+
:type Position: int
|
24990
|
+
:param _IsPartition: 是否为分区字段
|
24991
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
24992
|
+
:type IsPartition: bool
|
24874
24993
|
"""
|
24875
24994
|
self._Name = None
|
24876
24995
|
self._Type = None
|
@@ -24879,6 +24998,8 @@ Scale小于Precision
|
|
24879
24998
|
self._NotNull = None
|
24880
24999
|
self._Precision = None
|
24881
25000
|
self._Scale = None
|
25001
|
+
self._Position = None
|
25002
|
+
self._IsPartition = None
|
24882
25003
|
|
24883
25004
|
@property
|
24884
25005
|
def Name(self):
|
@@ -24936,6 +25057,22 @@ Scale小于Precision
|
|
24936
25057
|
def Scale(self, Scale):
|
24937
25058
|
self._Scale = Scale
|
24938
25059
|
|
25060
|
+
@property
|
25061
|
+
def Position(self):
|
25062
|
+
return self._Position
|
25063
|
+
|
25064
|
+
@Position.setter
|
25065
|
+
def Position(self, Position):
|
25066
|
+
self._Position = Position
|
25067
|
+
|
25068
|
+
@property
|
25069
|
+
def IsPartition(self):
|
25070
|
+
return self._IsPartition
|
25071
|
+
|
25072
|
+
@IsPartition.setter
|
25073
|
+
def IsPartition(self, IsPartition):
|
25074
|
+
self._IsPartition = IsPartition
|
25075
|
+
|
24939
25076
|
|
24940
25077
|
def _deserialize(self, params):
|
24941
25078
|
self._Name = params.get("Name")
|
@@ -24945,6 +25082,8 @@ Scale小于Precision
|
|
24945
25082
|
self._NotNull = params.get("NotNull")
|
24946
25083
|
self._Precision = params.get("Precision")
|
24947
25084
|
self._Scale = params.get("Scale")
|
25085
|
+
self._Position = params.get("Position")
|
25086
|
+
self._IsPartition = params.get("IsPartition")
|
24948
25087
|
memeber_set = set(params.keys())
|
24949
25088
|
for name, value in vars(self).items():
|
24950
25089
|
property_name = name[1:]
|
@@ -603,6 +603,7 @@ class EsClient(AbstractClient):
|
|
603
603
|
|
604
604
|
def DescribeServerlessMetrics(self, request):
|
605
605
|
"""获取serverless实例对应指标,获取space维度时不需要传入indexid,获取index时不需要传入spaceid
|
606
|
+
获取一段时间时间范围内的指标数据
|
606
607
|
|
607
608
|
:param request: Request instance for DescribeServerlessMetrics.
|
608
609
|
:type request: :class:`tencentcloud.es.v20180416.models.DescribeServerlessMetricsRequest`
|