tencentcloud-sdk-python 3.0.1342__py2.py3-none-any.whl → 3.0.1344__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/bi/v20220105/models.py +68 -0
- tencentcloud/billing/v20180709/billing_client.py +3 -1
- tencentcloud/billing/v20180709/models.py +90 -224
- tencentcloud/cdb/v20170320/cdb_client.py +23 -0
- tencentcloud/cdb/v20170320/models.py +117 -0
- tencentcloud/cdwpg/v20201230/models.py +4 -4
- tencentcloud/cdz/v20221123/models.py +0 -4
- tencentcloud/cfg/v20210820/models.py +0 -192
- tencentcloud/clb/v20180317/clb_client.py +2 -2
- tencentcloud/clb/v20180317/models.py +39 -10
- tencentcloud/cls/v20201016/models.py +17 -186
- tencentcloud/cwp/v20180228/models.py +61 -18
- tencentcloud/cynosdb/v20190107/models.py +2 -2
- tencentcloud/dbbrain/v20191016/models.py +0 -16
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +161 -0
- tencentcloud/dbbrain/v20210527/models.py +1731 -389
- tencentcloud/domain/v20180808/models.py +0 -10
- tencentcloud/dts/v20180330/models.py +0 -6
- tencentcloud/dts/v20211206/models.py +2 -210
- tencentcloud/ess/v20201111/models.py +71 -4
- tencentcloud/essbasic/v20210526/models.py +59 -2
- tencentcloud/fmu/v20191213/errorcodes.py +3 -0
- tencentcloud/fmu/v20191213/models.py +4 -4
- tencentcloud/goosefs/v20220519/models.py +0 -2
- tencentcloud/gwlb/v20240906/models.py +4 -4
- tencentcloud/hai/v20230812/errorcodes.py +1 -1
- tencentcloud/iotcloud/v20210408/models.py +2 -4
- tencentcloud/iotexplorer/v20190423/errorcodes.py +12 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +69 -0
- tencentcloud/iotexplorer/v20190423/models.py +995 -65
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +46 -0
- tencentcloud/iotvideo/v20211125/models.py +188 -0
- tencentcloud/lcic/v20220817/errorcodes.py +1 -1
- tencentcloud/lighthouse/v20200324/errorcodes.py +12 -9
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +24 -17
- tencentcloud/lighthouse/v20200324/models.py +72 -48
- tencentcloud/lke/v20231130/models.py +17 -2
- tencentcloud/lkeap/v20240522/models.py +4 -8
- tencentcloud/lowcode/v20210108/models.py +0 -2
- tencentcloud/monitor/v20180724/models.py +251 -0
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/mps/v20190612/errorcodes.py +34 -0
- tencentcloud/mps/v20190612/models.py +4254 -384
- tencentcloud/mps/v20190612/mps_client.py +208 -0
- tencentcloud/mqtt/v20240516/errorcodes.py +9 -0
- tencentcloud/organization/v20210331/errorcodes.py +3 -0
- tencentcloud/organization/v20210331/models.py +0 -82
- tencentcloud/redis/v20180412/models.py +64 -0
- tencentcloud/redis/v20180412/redis_client.py +23 -0
- tencentcloud/tcb/v20180608/models.py +109 -157
- tencentcloud/tcb/v20180608/tcb_client.py +23 -0
- tencentcloud/tdmq/v20200217/models.py +158 -282
- tencentcloud/teo/v20220901/models.py +955 -20
- tencentcloud/tione/v20211111/models.py +90 -0
- tencentcloud/vdb/v20230616/models.py +45 -0
- tencentcloud/vdb/v20230616/vdb_client.py +1 -1
- tencentcloud/vrs/v20200824/models.py +32 -0
- tencentcloud/wedata/v20210820/models.py +167 -0
- tencentcloud/weilingwith/v20230427/models.py +0 -964
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/RECORD +65 -65
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1342.dist-info → tencentcloud_sdk_python-3.0.1344.dist-info}/top_level.txt +0 -0
@@ -265,7 +265,6 @@ class AddOrganizationMemberEmailResponse(AbstractModel):
|
|
265
265
|
def __init__(self):
|
266
266
|
r"""
|
267
267
|
:param _BindId: 绑定Id
|
268
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
269
268
|
:type BindId: int
|
270
269
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
271
270
|
:type RequestId: str
|
@@ -276,7 +275,6 @@ class AddOrganizationMemberEmailResponse(AbstractModel):
|
|
276
275
|
@property
|
277
276
|
def BindId(self):
|
278
277
|
"""绑定Id
|
279
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
280
278
|
:rtype: int
|
281
279
|
"""
|
282
280
|
return self._BindId
|
@@ -7366,21 +7364,16 @@ class DescribePolicyResponse(AbstractModel):
|
|
7366
7364
|
:param _PolicyId: 策略Id。
|
7367
7365
|
:type PolicyId: int
|
7368
7366
|
:param _PolicyName: 策略名称。
|
7369
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7370
7367
|
:type PolicyName: str
|
7371
7368
|
:param _Type: 策略类型。1-自定义 2-预设策略
|
7372
7369
|
:type Type: int
|
7373
7370
|
:param _Description: 策略描述。
|
7374
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7375
7371
|
:type Description: str
|
7376
7372
|
:param _PolicyDocument: 策略文档。
|
7377
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7378
7373
|
:type PolicyDocument: str
|
7379
7374
|
:param _UpdateTime: 策略更新时间。
|
7380
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7381
7375
|
:type UpdateTime: str
|
7382
7376
|
:param _AddTime: 策略创建时间。
|
7383
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7384
7377
|
:type AddTime: str
|
7385
7378
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7386
7379
|
:type RequestId: str
|
@@ -7408,7 +7401,6 @@ class DescribePolicyResponse(AbstractModel):
|
|
7408
7401
|
@property
|
7409
7402
|
def PolicyName(self):
|
7410
7403
|
"""策略名称。
|
7411
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7412
7404
|
:rtype: str
|
7413
7405
|
"""
|
7414
7406
|
return self._PolicyName
|
@@ -7431,7 +7423,6 @@ class DescribePolicyResponse(AbstractModel):
|
|
7431
7423
|
@property
|
7432
7424
|
def Description(self):
|
7433
7425
|
"""策略描述。
|
7434
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7435
7426
|
:rtype: str
|
7436
7427
|
"""
|
7437
7428
|
return self._Description
|
@@ -7443,7 +7434,6 @@ class DescribePolicyResponse(AbstractModel):
|
|
7443
7434
|
@property
|
7444
7435
|
def PolicyDocument(self):
|
7445
7436
|
"""策略文档。
|
7446
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7447
7437
|
:rtype: str
|
7448
7438
|
"""
|
7449
7439
|
return self._PolicyDocument
|
@@ -7455,7 +7445,6 @@ class DescribePolicyResponse(AbstractModel):
|
|
7455
7445
|
@property
|
7456
7446
|
def UpdateTime(self):
|
7457
7447
|
"""策略更新时间。
|
7458
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7459
7448
|
:rtype: str
|
7460
7449
|
"""
|
7461
7450
|
return self._UpdateTime
|
@@ -7467,7 +7456,6 @@ class DescribePolicyResponse(AbstractModel):
|
|
7467
7456
|
@property
|
7468
7457
|
def AddTime(self):
|
7469
7458
|
"""策略创建时间。
|
7470
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7471
7459
|
:rtype: str
|
7472
7460
|
"""
|
7473
7461
|
return self._AddTime
|
@@ -9711,10 +9699,8 @@ class IdentityPolicy(AbstractModel):
|
|
9711
9699
|
:param _PolicyName: CAM预设策略名称。PolicyType 为预设策略时有效且必选
|
9712
9700
|
:type PolicyName: str
|
9713
9701
|
:param _PolicyType: 策略类型。取值 1-自定义策略 2-预设策略;默认值2
|
9714
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9715
9702
|
:type PolicyType: int
|
9716
9703
|
:param _PolicyDocument: 自定义策略内容,遵循CAM策略语法。PolicyType 为自定义策略时有效且必选
|
9717
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9718
9704
|
:type PolicyDocument: str
|
9719
9705
|
"""
|
9720
9706
|
self._PolicyId = None
|
@@ -9747,7 +9733,6 @@ class IdentityPolicy(AbstractModel):
|
|
9747
9733
|
@property
|
9748
9734
|
def PolicyType(self):
|
9749
9735
|
"""策略类型。取值 1-自定义策略 2-预设策略;默认值2
|
9750
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9751
9736
|
:rtype: int
|
9752
9737
|
"""
|
9753
9738
|
return self._PolicyType
|
@@ -9759,7 +9744,6 @@ class IdentityPolicy(AbstractModel):
|
|
9759
9744
|
@property
|
9760
9745
|
def PolicyDocument(self):
|
9761
9746
|
"""自定义策略内容,遵循CAM策略语法。PolicyType 为自定义策略时有效且必选
|
9762
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
9763
9747
|
:rtype: str
|
9764
9748
|
"""
|
9765
9749
|
return self._PolicyDocument
|
@@ -11600,23 +11584,18 @@ class ListPoliciesForTarget(AbstractModel):
|
|
11600
11584
|
:param _StrategyName: 策略名称
|
11601
11585
|
:type StrategyName: str
|
11602
11586
|
:param _Remark: 备注信息
|
11603
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11604
11587
|
:type Remark: str
|
11605
11588
|
:param _Uin: 关联的账号或节点
|
11606
11589
|
:type Uin: int
|
11607
11590
|
:param _Type: 关联类型 1-节点 2-用户
|
11608
11591
|
:type Type: int
|
11609
11592
|
:param _AddTime: 策略创建时间
|
11610
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11611
11593
|
:type AddTime: str
|
11612
11594
|
:param _UpdateTime: 策略更新时间
|
11613
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11614
11595
|
:type UpdateTime: str
|
11615
11596
|
:param _Name: 部门名称
|
11616
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11617
11597
|
:type Name: str
|
11618
11598
|
:param _AttachTime: 策略绑定时间
|
11619
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11620
11599
|
:type AttachTime: str
|
11621
11600
|
"""
|
11622
11601
|
self._StrategyId = None
|
@@ -11654,7 +11633,6 @@ class ListPoliciesForTarget(AbstractModel):
|
|
11654
11633
|
@property
|
11655
11634
|
def Remark(self):
|
11656
11635
|
"""备注信息
|
11657
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11658
11636
|
:rtype: str
|
11659
11637
|
"""
|
11660
11638
|
return self._Remark
|
@@ -11688,7 +11666,6 @@ class ListPoliciesForTarget(AbstractModel):
|
|
11688
11666
|
@property
|
11689
11667
|
def AddTime(self):
|
11690
11668
|
"""策略创建时间
|
11691
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11692
11669
|
:rtype: str
|
11693
11670
|
"""
|
11694
11671
|
return self._AddTime
|
@@ -11700,7 +11677,6 @@ class ListPoliciesForTarget(AbstractModel):
|
|
11700
11677
|
@property
|
11701
11678
|
def UpdateTime(self):
|
11702
11679
|
"""策略更新时间
|
11703
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11704
11680
|
:rtype: str
|
11705
11681
|
"""
|
11706
11682
|
return self._UpdateTime
|
@@ -11712,7 +11688,6 @@ class ListPoliciesForTarget(AbstractModel):
|
|
11712
11688
|
@property
|
11713
11689
|
def Name(self):
|
11714
11690
|
"""部门名称
|
11715
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11716
11691
|
:rtype: str
|
11717
11692
|
"""
|
11718
11693
|
return self._Name
|
@@ -11724,7 +11699,6 @@ class ListPoliciesForTarget(AbstractModel):
|
|
11724
11699
|
@property
|
11725
11700
|
def AttachTime(self):
|
11726
11701
|
"""策略绑定时间
|
11727
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11728
11702
|
:rtype: str
|
11729
11703
|
"""
|
11730
11704
|
return self._AttachTime
|
@@ -12080,20 +12054,16 @@ class ListPolicyNode(AbstractModel):
|
|
12080
12054
|
def __init__(self):
|
12081
12055
|
r"""
|
12082
12056
|
:param _AddTime: 策略创建时间
|
12083
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12084
12057
|
:type AddTime: str
|
12085
12058
|
:param _AttachedTimes: 策略绑定次数
|
12086
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12087
12059
|
:type AttachedTimes: int
|
12088
12060
|
:param _Description: 策略描述信息
|
12089
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12090
12061
|
:type Description: str
|
12091
12062
|
:param _PolicyName: 策略名称
|
12092
12063
|
:type PolicyName: str
|
12093
12064
|
:param _PolicyId: 策略Id
|
12094
12065
|
:type PolicyId: int
|
12095
12066
|
:param _UpdateTime: 策略更新时间
|
12096
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12097
12067
|
:type UpdateTime: str
|
12098
12068
|
:param _Type: 策略类型 1-自定义 2-预设
|
12099
12069
|
:type Type: int
|
@@ -12109,7 +12079,6 @@ class ListPolicyNode(AbstractModel):
|
|
12109
12079
|
@property
|
12110
12080
|
def AddTime(self):
|
12111
12081
|
"""策略创建时间
|
12112
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12113
12082
|
:rtype: str
|
12114
12083
|
"""
|
12115
12084
|
return self._AddTime
|
@@ -12121,7 +12090,6 @@ class ListPolicyNode(AbstractModel):
|
|
12121
12090
|
@property
|
12122
12091
|
def AttachedTimes(self):
|
12123
12092
|
"""策略绑定次数
|
12124
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12125
12093
|
:rtype: int
|
12126
12094
|
"""
|
12127
12095
|
return self._AttachedTimes
|
@@ -12133,7 +12101,6 @@ class ListPolicyNode(AbstractModel):
|
|
12133
12101
|
@property
|
12134
12102
|
def Description(self):
|
12135
12103
|
"""策略描述信息
|
12136
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12137
12104
|
:rtype: str
|
12138
12105
|
"""
|
12139
12106
|
return self._Description
|
@@ -12167,7 +12134,6 @@ class ListPolicyNode(AbstractModel):
|
|
12167
12134
|
@property
|
12168
12135
|
def UpdateTime(self):
|
12169
12136
|
"""策略更新时间
|
12170
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12171
12137
|
:rtype: str
|
12172
12138
|
"""
|
12173
12139
|
return self._UpdateTime
|
@@ -13064,7 +13030,6 @@ class ListTargetsForPolicyNode(AbstractModel):
|
|
13064
13030
|
:param _RelatedType: 关联类型 1-节点关联 2-用户关联
|
13065
13031
|
:type RelatedType: int
|
13066
13032
|
:param _Name: 账号或者节点名称
|
13067
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13068
13033
|
:type Name: str
|
13069
13034
|
:param _AddTime: 绑定时间
|
13070
13035
|
:type AddTime: str
|
@@ -13099,7 +13064,6 @@ class ListTargetsForPolicyNode(AbstractModel):
|
|
13099
13064
|
@property
|
13100
13065
|
def Name(self):
|
13101
13066
|
"""账号或者节点名称
|
13102
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
13103
13067
|
:rtype: str
|
13104
13068
|
"""
|
13105
13069
|
return self._Name
|
@@ -14134,19 +14098,14 @@ class ManagerShareUnit(AbstractModel):
|
|
14134
14098
|
:param _Area: 共享单元地域。
|
14135
14099
|
:type Area: str
|
14136
14100
|
:param _Description: 描述。
|
14137
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14138
14101
|
:type Description: str
|
14139
14102
|
:param _CreateTime: 创建时间。
|
14140
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14141
14103
|
:type CreateTime: str
|
14142
14104
|
:param _ShareResourceNum: 共享单元资源数。
|
14143
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14144
14105
|
:type ShareResourceNum: int
|
14145
14106
|
:param _ShareMemberNum: 共享单元成员数。
|
14146
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14147
14107
|
:type ShareMemberNum: int
|
14148
14108
|
:param _ShareScope: 共享范围。取值:1-仅允许集团组织内共享 2-允许共享给任意账号
|
14149
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14150
14109
|
:type ShareScope: int
|
14151
14110
|
"""
|
14152
14111
|
self._UnitId = None
|
@@ -14218,7 +14177,6 @@ class ManagerShareUnit(AbstractModel):
|
|
14218
14177
|
@property
|
14219
14178
|
def Description(self):
|
14220
14179
|
"""描述。
|
14221
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14222
14180
|
:rtype: str
|
14223
14181
|
"""
|
14224
14182
|
return self._Description
|
@@ -14230,7 +14188,6 @@ class ManagerShareUnit(AbstractModel):
|
|
14230
14188
|
@property
|
14231
14189
|
def CreateTime(self):
|
14232
14190
|
"""创建时间。
|
14233
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14234
14191
|
:rtype: str
|
14235
14192
|
"""
|
14236
14193
|
return self._CreateTime
|
@@ -14242,7 +14199,6 @@ class ManagerShareUnit(AbstractModel):
|
|
14242
14199
|
@property
|
14243
14200
|
def ShareResourceNum(self):
|
14244
14201
|
"""共享单元资源数。
|
14245
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14246
14202
|
:rtype: int
|
14247
14203
|
"""
|
14248
14204
|
return self._ShareResourceNum
|
@@ -14254,7 +14210,6 @@ class ManagerShareUnit(AbstractModel):
|
|
14254
14210
|
@property
|
14255
14211
|
def ShareMemberNum(self):
|
14256
14212
|
"""共享单元成员数。
|
14257
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14258
14213
|
:rtype: int
|
14259
14214
|
"""
|
14260
14215
|
return self._ShareMemberNum
|
@@ -14266,7 +14221,6 @@ class ManagerShareUnit(AbstractModel):
|
|
14266
14221
|
@property
|
14267
14222
|
def ShareScope(self):
|
14268
14223
|
"""共享范围。取值:1-仅允许集团组织内共享 2-允许共享给任意账号
|
14269
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14270
14224
|
:rtype: int
|
14271
14225
|
"""
|
14272
14226
|
return self._ShareScope
|
@@ -14486,10 +14440,8 @@ class NodeMainInfo(AbstractModel):
|
|
14486
14440
|
def __init__(self):
|
14487
14441
|
r"""
|
14488
14442
|
:param _NodeId: 部门ID
|
14489
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14490
14443
|
:type NodeId: int
|
14491
14444
|
:param _NodeName: 部门名称
|
14492
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14493
14445
|
:type NodeName: str
|
14494
14446
|
"""
|
14495
14447
|
self._NodeId = None
|
@@ -14498,7 +14450,6 @@ class NodeMainInfo(AbstractModel):
|
|
14498
14450
|
@property
|
14499
14451
|
def NodeId(self):
|
14500
14452
|
"""部门ID
|
14501
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14502
14453
|
:rtype: int
|
14503
14454
|
"""
|
14504
14455
|
return self._NodeId
|
@@ -14510,7 +14461,6 @@ class NodeMainInfo(AbstractModel):
|
|
14510
14461
|
@property
|
14511
14462
|
def NodeName(self):
|
14512
14463
|
"""部门名称
|
14513
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14514
14464
|
:rtype: str
|
14515
14465
|
"""
|
14516
14466
|
return self._NodeName
|
@@ -14776,16 +14726,12 @@ class OrgFinancialByMonth(AbstractModel):
|
|
14776
14726
|
def __init__(self):
|
14777
14727
|
r"""
|
14778
14728
|
:param _Id: 记录ID。
|
14779
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14780
14729
|
:type Id: int
|
14781
14730
|
:param _Month: 月份,格式:yyyy-mm,示例:2021-01。
|
14782
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14783
14731
|
:type Month: str
|
14784
14732
|
:param _TotalCost: 消耗金额,单元:元。
|
14785
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14786
14733
|
:type TotalCost: float
|
14787
14734
|
:param _GrowthRate: 比上月增长率%。正数增长,负数下降,空值无法统计。
|
14788
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14789
14735
|
:type GrowthRate: str
|
14790
14736
|
"""
|
14791
14737
|
self._Id = None
|
@@ -14796,7 +14742,6 @@ class OrgFinancialByMonth(AbstractModel):
|
|
14796
14742
|
@property
|
14797
14743
|
def Id(self):
|
14798
14744
|
"""记录ID。
|
14799
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14800
14745
|
:rtype: int
|
14801
14746
|
"""
|
14802
14747
|
return self._Id
|
@@ -14808,7 +14753,6 @@ class OrgFinancialByMonth(AbstractModel):
|
|
14808
14753
|
@property
|
14809
14754
|
def Month(self):
|
14810
14755
|
"""月份,格式:yyyy-mm,示例:2021-01。
|
14811
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14812
14756
|
:rtype: str
|
14813
14757
|
"""
|
14814
14758
|
return self._Month
|
@@ -14820,7 +14764,6 @@ class OrgFinancialByMonth(AbstractModel):
|
|
14820
14764
|
@property
|
14821
14765
|
def TotalCost(self):
|
14822
14766
|
"""消耗金额,单元:元。
|
14823
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14824
14767
|
:rtype: float
|
14825
14768
|
"""
|
14826
14769
|
return self._TotalCost
|
@@ -14832,7 +14775,6 @@ class OrgFinancialByMonth(AbstractModel):
|
|
14832
14775
|
@property
|
14833
14776
|
def GrowthRate(self):
|
14834
14777
|
"""比上月增长率%。正数增长,负数下降,空值无法统计。
|
14835
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
14836
14778
|
:rtype: str
|
14837
14779
|
"""
|
14838
14780
|
return self._GrowthRate
|
@@ -16033,16 +15975,12 @@ class OrgProductFinancial(AbstractModel):
|
|
16033
15975
|
def __init__(self):
|
16034
15976
|
r"""
|
16035
15977
|
:param _ProductName: 产品Code。
|
16036
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16037
15978
|
:type ProductName: str
|
16038
15979
|
:param _ProductCode: 产品名。
|
16039
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16040
15980
|
:type ProductCode: str
|
16041
15981
|
:param _TotalCost: 产品消耗,单位:元。
|
16042
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16043
15982
|
:type TotalCost: float
|
16044
15983
|
:param _Ratio: 占比%。
|
16045
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16046
15984
|
:type Ratio: str
|
16047
15985
|
"""
|
16048
15986
|
self._ProductName = None
|
@@ -16053,7 +15991,6 @@ class OrgProductFinancial(AbstractModel):
|
|
16053
15991
|
@property
|
16054
15992
|
def ProductName(self):
|
16055
15993
|
"""产品Code。
|
16056
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16057
15994
|
:rtype: str
|
16058
15995
|
"""
|
16059
15996
|
return self._ProductName
|
@@ -16065,7 +16002,6 @@ class OrgProductFinancial(AbstractModel):
|
|
16065
16002
|
@property
|
16066
16003
|
def ProductCode(self):
|
16067
16004
|
"""产品名。
|
16068
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16069
16005
|
:rtype: str
|
16070
16006
|
"""
|
16071
16007
|
return self._ProductCode
|
@@ -16077,7 +16013,6 @@ class OrgProductFinancial(AbstractModel):
|
|
16077
16013
|
@property
|
16078
16014
|
def TotalCost(self):
|
16079
16015
|
"""产品消耗,单位:元。
|
16080
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16081
16016
|
:rtype: float
|
16082
16017
|
"""
|
16083
16018
|
return self._TotalCost
|
@@ -16089,7 +16024,6 @@ class OrgProductFinancial(AbstractModel):
|
|
16089
16024
|
@property
|
16090
16025
|
def Ratio(self):
|
16091
16026
|
"""占比%。
|
16092
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
16093
16027
|
:rtype: str
|
16094
16028
|
"""
|
16095
16029
|
return self._Ratio
|
@@ -18842,7 +18776,6 @@ class ShareResource(AbstractModel):
|
|
18842
18776
|
:param _ResourceId: 共享资源ID。
|
18843
18777
|
:type ResourceId: str
|
18844
18778
|
:param _ProductResourceId: 产品资源ID。
|
18845
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18846
18779
|
:type ProductResourceId: str
|
18847
18780
|
"""
|
18848
18781
|
self._ResourceId = None
|
@@ -18866,7 +18799,6 @@ class ShareResource(AbstractModel):
|
|
18866
18799
|
@property
|
18867
18800
|
def ProductResourceId(self):
|
18868
18801
|
"""产品资源ID。
|
18869
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18870
18802
|
:rtype: str
|
18871
18803
|
"""
|
18872
18804
|
return self._ProductResourceId
|
@@ -18899,7 +18831,6 @@ class ShareUnitMember(AbstractModel):
|
|
18899
18831
|
:param _ShareMemberUin: 共享成员Uin。
|
18900
18832
|
:type ShareMemberUin: int
|
18901
18833
|
:param _CreateTime: 创建时间。
|
18902
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18903
18834
|
:type CreateTime: str
|
18904
18835
|
"""
|
18905
18836
|
self._ShareMemberUin = None
|
@@ -18919,7 +18850,6 @@ class ShareUnitMember(AbstractModel):
|
|
18919
18850
|
@property
|
18920
18851
|
def CreateTime(self):
|
18921
18852
|
"""创建时间。
|
18922
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18923
18853
|
:rtype: str
|
18924
18854
|
"""
|
18925
18855
|
return self._CreateTime
|
@@ -18954,18 +18884,14 @@ class ShareUnitResource(AbstractModel):
|
|
18954
18884
|
:param _Type: 共享资源类型。
|
18955
18885
|
:type Type: str
|
18956
18886
|
:param _CreateTime: 创建时间。
|
18957
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18958
18887
|
:type CreateTime: str
|
18959
18888
|
:param _ProductResourceId: 产品资源ID。
|
18960
18889
|
:type ProductResourceId: str
|
18961
18890
|
:param _SharedMemberNum: 共享单元成员数。
|
18962
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18963
18891
|
:type SharedMemberNum: int
|
18964
18892
|
:param _SharedMemberUseNum: 使用中共享单元成员数。
|
18965
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18966
18893
|
:type SharedMemberUseNum: int
|
18967
18894
|
:param _ShareManagerUin: 共享管理员OwnerUin。
|
18968
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
18969
18895
|
:type ShareManagerUin: int
|
18970
18896
|
"""
|
18971
18897
|
self._ResourceId = None
|
@@ -19001,7 +18927,6 @@ class ShareUnitResource(AbstractModel):
|
|
19001
18927
|
@property
|
19002
18928
|
def CreateTime(self):
|
19003
18929
|
"""创建时间。
|
19004
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19005
18930
|
:rtype: str
|
19006
18931
|
"""
|
19007
18932
|
return self._CreateTime
|
@@ -19024,7 +18949,6 @@ class ShareUnitResource(AbstractModel):
|
|
19024
18949
|
@property
|
19025
18950
|
def SharedMemberNum(self):
|
19026
18951
|
"""共享单元成员数。
|
19027
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19028
18952
|
:rtype: int
|
19029
18953
|
"""
|
19030
18954
|
return self._SharedMemberNum
|
@@ -19036,7 +18960,6 @@ class ShareUnitResource(AbstractModel):
|
|
19036
18960
|
@property
|
19037
18961
|
def SharedMemberUseNum(self):
|
19038
18962
|
"""使用中共享单元成员数。
|
19039
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19040
18963
|
:rtype: int
|
19041
18964
|
"""
|
19042
18965
|
return self._SharedMemberUseNum
|
@@ -19048,7 +18971,6 @@ class ShareUnitResource(AbstractModel):
|
|
19048
18971
|
@property
|
19049
18972
|
def ShareManagerUin(self):
|
19050
18973
|
"""共享管理员OwnerUin。
|
19051
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19052
18974
|
:rtype: int
|
19053
18975
|
"""
|
19054
18976
|
return self._ShareManagerUin
|
@@ -19084,10 +19006,8 @@ class Tag(AbstractModel):
|
|
19084
19006
|
def __init__(self):
|
19085
19007
|
r"""
|
19086
19008
|
:param _TagKey: 标签键
|
19087
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19088
19009
|
:type TagKey: str
|
19089
19010
|
:param _TagValue: 标签值
|
19090
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19091
19011
|
:type TagValue: str
|
19092
19012
|
"""
|
19093
19013
|
self._TagKey = None
|
@@ -19096,7 +19016,6 @@ class Tag(AbstractModel):
|
|
19096
19016
|
@property
|
19097
19017
|
def TagKey(self):
|
19098
19018
|
"""标签键
|
19099
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19100
19019
|
:rtype: str
|
19101
19020
|
"""
|
19102
19021
|
return self._TagKey
|
@@ -19108,7 +19027,6 @@ class Tag(AbstractModel):
|
|
19108
19027
|
@property
|
19109
19028
|
def TagValue(self):
|
19110
19029
|
"""标签值
|
19111
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
19112
19030
|
:rtype: str
|
19113
19031
|
"""
|
19114
19032
|
return self._TagValue
|
@@ -20035,6 +20035,70 @@ class ReleaseWanAddressResponse(AbstractModel):
|
|
20035
20035
|
self._RequestId = params.get("RequestId")
|
20036
20036
|
|
20037
20037
|
|
20038
|
+
class RemoveReplicationGroupRequest(AbstractModel):
|
20039
|
+
"""RemoveReplicationGroup请求参数结构体
|
20040
|
+
|
20041
|
+
"""
|
20042
|
+
|
20043
|
+
def __init__(self):
|
20044
|
+
r"""
|
20045
|
+
:param _GroupId: 复制组ID
|
20046
|
+
:type GroupId: str
|
20047
|
+
"""
|
20048
|
+
self._GroupId = None
|
20049
|
+
|
20050
|
+
@property
|
20051
|
+
def GroupId(self):
|
20052
|
+
"""复制组ID
|
20053
|
+
:rtype: str
|
20054
|
+
"""
|
20055
|
+
return self._GroupId
|
20056
|
+
|
20057
|
+
@GroupId.setter
|
20058
|
+
def GroupId(self, GroupId):
|
20059
|
+
self._GroupId = GroupId
|
20060
|
+
|
20061
|
+
|
20062
|
+
def _deserialize(self, params):
|
20063
|
+
self._GroupId = params.get("GroupId")
|
20064
|
+
memeber_set = set(params.keys())
|
20065
|
+
for name, value in vars(self).items():
|
20066
|
+
property_name = name[1:]
|
20067
|
+
if property_name in memeber_set:
|
20068
|
+
memeber_set.remove(property_name)
|
20069
|
+
if len(memeber_set) > 0:
|
20070
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
20071
|
+
|
20072
|
+
|
20073
|
+
|
20074
|
+
class RemoveReplicationGroupResponse(AbstractModel):
|
20075
|
+
"""RemoveReplicationGroup返回参数结构体
|
20076
|
+
|
20077
|
+
"""
|
20078
|
+
|
20079
|
+
def __init__(self):
|
20080
|
+
r"""
|
20081
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
20082
|
+
:type RequestId: str
|
20083
|
+
"""
|
20084
|
+
self._RequestId = None
|
20085
|
+
|
20086
|
+
@property
|
20087
|
+
def RequestId(self):
|
20088
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
20089
|
+
:rtype: str
|
20090
|
+
"""
|
20091
|
+
return self._RequestId
|
20092
|
+
|
20093
|
+
@RequestId.setter
|
20094
|
+
def RequestId(self, RequestId):
|
20095
|
+
self._RequestId = RequestId
|
20096
|
+
|
20097
|
+
|
20098
|
+
def _deserialize(self, params):
|
20099
|
+
self._RequestId = params.get("RequestId")
|
20100
|
+
|
20101
|
+
|
20038
20102
|
class RemoveReplicationInstanceRequest(AbstractModel):
|
20039
20103
|
"""RemoveReplicationInstance请求参数结构体
|
20040
20104
|
|
@@ -2236,6 +2236,29 @@ class RedisClient(AbstractClient):
|
|
2236
2236
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2237
2237
|
|
2238
2238
|
|
2239
|
+
def RemoveReplicationGroup(self, request):
|
2240
|
+
"""删除复制组
|
2241
|
+
|
2242
|
+
:param request: Request instance for RemoveReplicationGroup.
|
2243
|
+
:type request: :class:`tencentcloud.redis.v20180412.models.RemoveReplicationGroupRequest`
|
2244
|
+
:rtype: :class:`tencentcloud.redis.v20180412.models.RemoveReplicationGroupResponse`
|
2245
|
+
|
2246
|
+
"""
|
2247
|
+
try:
|
2248
|
+
params = request._serialize()
|
2249
|
+
headers = request.headers
|
2250
|
+
body = self.call("RemoveReplicationGroup", params, headers=headers)
|
2251
|
+
response = json.loads(body)
|
2252
|
+
model = models.RemoveReplicationGroupResponse()
|
2253
|
+
model._deserialize(response["Response"])
|
2254
|
+
return model
|
2255
|
+
except Exception as e:
|
2256
|
+
if isinstance(e, TencentCloudSDKException):
|
2257
|
+
raise
|
2258
|
+
else:
|
2259
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2260
|
+
|
2261
|
+
|
2239
2262
|
def RemoveReplicationInstance(self, request):
|
2240
2263
|
"""本接口(RemoveReplicationInstance)用于移除复制组中的实例。
|
2241
2264
|
|