tencentcloud-sdk-python 3.0.1285__py2.py3-none-any.whl → 3.0.1287__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/apm/v20210622/errorcodes.py +4 -4
- tencentcloud/batch/v20170312/models.py +94 -6
- tencentcloud/bi/v20220105/models.py +15 -0
- tencentcloud/ccc/v20200210/models.py +45 -0
- tencentcloud/cfg/v20210820/models.py +78 -0
- tencentcloud/domain/v20180808/domain_client.py +1 -1
- tencentcloud/domain/v20180808/errorcodes.py +3 -0
- tencentcloud/dsgc/v20190723/dsgc_client.py +1 -2
- tencentcloud/dsgc/v20190723/models.py +241 -1136
- tencentcloud/dts/v20211206/models.py +17 -0
- tencentcloud/ess/v20201111/ess_client.py +28 -0
- tencentcloud/ess/v20201111/models.py +452 -37
- tencentcloud/essbasic/v20210526/essbasic_client.py +28 -0
- tencentcloud/essbasic/v20210526/models.py +463 -39
- tencentcloud/iss/v20230517/models.py +2 -2
- tencentcloud/keewidb/v20220308/models.py +19 -2
- tencentcloud/lighthouse/v20200324/models.py +6 -6
- tencentcloud/mariadb/v20170312/models.py +12 -8
- tencentcloud/monitor/v20180724/errorcodes.py +3 -0
- tencentcloud/monitor/v20180724/models.py +421 -0
- tencentcloud/monitor/v20180724/monitor_client.py +46 -0
- tencentcloud/mps/v20190612/models.py +68 -54
- tencentcloud/ocr/v20181119/models.py +15 -0
- tencentcloud/ocr/v20181119/ocr_client.py +2 -2
- tencentcloud/organization/v20210331/models.py +71 -26
- tencentcloud/privatedns/v20201028/models.py +4 -0
- tencentcloud/privatedns/v20201028/privatedns_client.py +1 -1
- tencentcloud/tdmq/v20200217/models.py +116 -2
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/teo/v20220901/models.py +1499 -81
- tencentcloud/teo/v20220901/teo_client.py +207 -0
- tencentcloud/thpc/v20211109/models.py +4 -4
- tencentcloud/thpc/v20220401/models.py +8 -10
- tencentcloud/tiia/v20190529/models.py +2 -42
- tencentcloud/tiia/v20190529/tiia_client.py +14 -17
- tencentcloud/vod/v20180717/errorcodes.py +1 -1
- {tencentcloud_sdk_python-3.0.1285.dist-info → tencentcloud_sdk_python-3.0.1287.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1285.dist-info → tencentcloud_sdk_python-3.0.1287.dist-info}/RECORD +42 -42
- {tencentcloud_sdk_python-3.0.1285.dist-info → tencentcloud_sdk_python-3.0.1287.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1285.dist-info → tencentcloud_sdk_python-3.0.1287.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1285.dist-info → tencentcloud_sdk_python-3.0.1287.dist-info}/top_level.txt +0 -0
@@ -1730,10 +1730,12 @@ class CreateOrgServiceAssignRequest(AbstractModel):
|
|
1730
1730
|
|
1731
1731
|
def __init__(self):
|
1732
1732
|
r"""
|
1733
|
-
:param _ServiceId: 集团服务ID。可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
1734
|
-
:type ServiceId: int
|
1735
1733
|
:param _MemberUins: 委派管理员Uin列表。 最大长度20个
|
1736
1734
|
:type MemberUins: list of int
|
1735
|
+
:param _ServiceId: 集团服务ID。和集团服务产品标识二选一必填,可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
1736
|
+
:type ServiceId: int
|
1737
|
+
:param _Product: 集团服务产品标识。和集团服务ID二选一必填,可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
1738
|
+
:type Product: str
|
1737
1739
|
:param _ManagementScope: 委派管理员管理范围。 取值:1-全部成员 2-部分成员,默认值1
|
1738
1740
|
:type ManagementScope: int
|
1739
1741
|
:param _ManagementScopeUins: 管理的成员Uin列表。ManagementScope为2时该参数有效
|
@@ -1741,15 +1743,27 @@ class CreateOrgServiceAssignRequest(AbstractModel):
|
|
1741
1743
|
:param _ManagementScopeNodeIds: 管理的部门ID列表。ManagementScope为2时该参数有效
|
1742
1744
|
:type ManagementScopeNodeIds: list of int
|
1743
1745
|
"""
|
1744
|
-
self._ServiceId = None
|
1745
1746
|
self._MemberUins = None
|
1747
|
+
self._ServiceId = None
|
1748
|
+
self._Product = None
|
1746
1749
|
self._ManagementScope = None
|
1747
1750
|
self._ManagementScopeUins = None
|
1748
1751
|
self._ManagementScopeNodeIds = None
|
1749
1752
|
|
1753
|
+
@property
|
1754
|
+
def MemberUins(self):
|
1755
|
+
"""委派管理员Uin列表。 最大长度20个
|
1756
|
+
:rtype: list of int
|
1757
|
+
"""
|
1758
|
+
return self._MemberUins
|
1759
|
+
|
1760
|
+
@MemberUins.setter
|
1761
|
+
def MemberUins(self, MemberUins):
|
1762
|
+
self._MemberUins = MemberUins
|
1763
|
+
|
1750
1764
|
@property
|
1751
1765
|
def ServiceId(self):
|
1752
|
-
"""集团服务ID
|
1766
|
+
"""集团服务ID。和集团服务产品标识二选一必填,可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
1753
1767
|
:rtype: int
|
1754
1768
|
"""
|
1755
1769
|
return self._ServiceId
|
@@ -1759,15 +1773,15 @@ class CreateOrgServiceAssignRequest(AbstractModel):
|
|
1759
1773
|
self._ServiceId = ServiceId
|
1760
1774
|
|
1761
1775
|
@property
|
1762
|
-
def
|
1763
|
-
"""
|
1764
|
-
:rtype:
|
1776
|
+
def Product(self):
|
1777
|
+
"""集团服务产品标识。和集团服务ID二选一必填,可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
1778
|
+
:rtype: str
|
1765
1779
|
"""
|
1766
|
-
return self.
|
1780
|
+
return self._Product
|
1767
1781
|
|
1768
|
-
@
|
1769
|
-
def
|
1770
|
-
self.
|
1782
|
+
@Product.setter
|
1783
|
+
def Product(self, Product):
|
1784
|
+
self._Product = Product
|
1771
1785
|
|
1772
1786
|
@property
|
1773
1787
|
def ManagementScope(self):
|
@@ -1804,8 +1818,9 @@ class CreateOrgServiceAssignRequest(AbstractModel):
|
|
1804
1818
|
|
1805
1819
|
|
1806
1820
|
def _deserialize(self, params):
|
1807
|
-
self._ServiceId = params.get("ServiceId")
|
1808
1821
|
self._MemberUins = params.get("MemberUins")
|
1822
|
+
self._ServiceId = params.get("ServiceId")
|
1823
|
+
self._Product = params.get("Product")
|
1809
1824
|
self._ManagementScope = params.get("ManagementScope")
|
1810
1825
|
self._ManagementScopeUins = params.get("ManagementScopeUins")
|
1811
1826
|
self._ManagementScopeNodeIds = params.get("ManagementScopeNodeIds")
|
@@ -3581,17 +3596,31 @@ class DeleteOrgServiceAssignRequest(AbstractModel):
|
|
3581
3596
|
|
3582
3597
|
def __init__(self):
|
3583
3598
|
r"""
|
3584
|
-
:param _ServiceId: 集团服务ID。可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
3585
|
-
:type ServiceId: int
|
3586
3599
|
:param _MemberUin: 委派管理员Uin。
|
3587
3600
|
:type MemberUin: int
|
3601
|
+
:param _ServiceId: 集团服务ID。和集团服务产品标识二选一必填,可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
3602
|
+
:type ServiceId: int
|
3603
|
+
:param _Product: 集团服务产品标识。和集团服务ID二选一必填,可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
3604
|
+
:type Product: str
|
3588
3605
|
"""
|
3589
|
-
self._ServiceId = None
|
3590
3606
|
self._MemberUin = None
|
3607
|
+
self._ServiceId = None
|
3608
|
+
self._Product = None
|
3609
|
+
|
3610
|
+
@property
|
3611
|
+
def MemberUin(self):
|
3612
|
+
"""委派管理员Uin。
|
3613
|
+
:rtype: int
|
3614
|
+
"""
|
3615
|
+
return self._MemberUin
|
3616
|
+
|
3617
|
+
@MemberUin.setter
|
3618
|
+
def MemberUin(self, MemberUin):
|
3619
|
+
self._MemberUin = MemberUin
|
3591
3620
|
|
3592
3621
|
@property
|
3593
3622
|
def ServiceId(self):
|
3594
|
-
"""集团服务ID
|
3623
|
+
"""集团服务ID。和集团服务产品标识二选一必填,可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
3595
3624
|
:rtype: int
|
3596
3625
|
"""
|
3597
3626
|
return self._ServiceId
|
@@ -3601,20 +3630,21 @@ class DeleteOrgServiceAssignRequest(AbstractModel):
|
|
3601
3630
|
self._ServiceId = ServiceId
|
3602
3631
|
|
3603
3632
|
@property
|
3604
|
-
def
|
3605
|
-
"""
|
3606
|
-
:rtype:
|
3633
|
+
def Product(self):
|
3634
|
+
"""集团服务产品标识。和集团服务ID二选一必填,可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
3635
|
+
:rtype: str
|
3607
3636
|
"""
|
3608
|
-
return self.
|
3637
|
+
return self._Product
|
3609
3638
|
|
3610
|
-
@
|
3611
|
-
def
|
3612
|
-
self.
|
3639
|
+
@Product.setter
|
3640
|
+
def Product(self, Product):
|
3641
|
+
self._Product = Product
|
3613
3642
|
|
3614
3643
|
|
3615
3644
|
def _deserialize(self, params):
|
3616
|
-
self._ServiceId = params.get("ServiceId")
|
3617
3645
|
self._MemberUin = params.get("MemberUin")
|
3646
|
+
self._ServiceId = params.get("ServiceId")
|
3647
|
+
self._Product = params.get("Product")
|
3618
3648
|
memeber_set = set(params.keys())
|
3619
3649
|
for name, value in vars(self).items():
|
3620
3650
|
property_name = name[1:]
|
@@ -10835,12 +10865,15 @@ class ListOrgServiceAssignMemberRequest(AbstractModel):
|
|
10835
10865
|
:type Offset: int
|
10836
10866
|
:param _Limit: 限制数目。取值范围:1~50,默认值:10
|
10837
10867
|
:type Limit: int
|
10838
|
-
:param _ServiceId: 集团服务ID
|
10868
|
+
:param _ServiceId: 集团服务ID。和集团服务产品标识二选一必填,可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
10839
10869
|
:type ServiceId: int
|
10870
|
+
:param _Product: 集团服务产品标识。和集团服务ID二选一必填,可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
10871
|
+
:type Product: str
|
10840
10872
|
"""
|
10841
10873
|
self._Offset = None
|
10842
10874
|
self._Limit = None
|
10843
10875
|
self._ServiceId = None
|
10876
|
+
self._Product = None
|
10844
10877
|
|
10845
10878
|
@property
|
10846
10879
|
def Offset(self):
|
@@ -10866,7 +10899,7 @@ class ListOrgServiceAssignMemberRequest(AbstractModel):
|
|
10866
10899
|
|
10867
10900
|
@property
|
10868
10901
|
def ServiceId(self):
|
10869
|
-
"""集团服务ID
|
10902
|
+
"""集团服务ID。和集团服务产品标识二选一必填,可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
10870
10903
|
:rtype: int
|
10871
10904
|
"""
|
10872
10905
|
return self._ServiceId
|
@@ -10875,11 +10908,23 @@ class ListOrgServiceAssignMemberRequest(AbstractModel):
|
|
10875
10908
|
def ServiceId(self, ServiceId):
|
10876
10909
|
self._ServiceId = ServiceId
|
10877
10910
|
|
10911
|
+
@property
|
10912
|
+
def Product(self):
|
10913
|
+
"""集团服务产品标识。和集团服务ID二选一必填,可以通过[ListOrganizationService](https://cloud.tencent.com/document/product/850/109561)获取
|
10914
|
+
:rtype: str
|
10915
|
+
"""
|
10916
|
+
return self._Product
|
10917
|
+
|
10918
|
+
@Product.setter
|
10919
|
+
def Product(self, Product):
|
10920
|
+
self._Product = Product
|
10921
|
+
|
10878
10922
|
|
10879
10923
|
def _deserialize(self, params):
|
10880
10924
|
self._Offset = params.get("Offset")
|
10881
10925
|
self._Limit = params.get("Limit")
|
10882
10926
|
self._ServiceId = params.get("ServiceId")
|
10927
|
+
self._Product = params.get("Product")
|
10883
10928
|
memeber_set = set(params.keys())
|
10884
10929
|
for name, value in vars(self).items():
|
10885
10930
|
property_name = name[1:]
|
@@ -935,6 +935,8 @@ class CreatePrivateZoneRequest(AbstractModel):
|
|
935
935
|
|
936
936
|
@property
|
937
937
|
def Vpcs(self):
|
938
|
+
warnings.warn("parameter `Vpcs` is deprecated", DeprecationWarning)
|
939
|
+
|
938
940
|
"""创建私有域的同时,将其关联至VPC
|
939
941
|
:rtype: list of VpcInfo
|
940
942
|
"""
|
@@ -942,6 +944,8 @@ class CreatePrivateZoneRequest(AbstractModel):
|
|
942
944
|
|
943
945
|
@Vpcs.setter
|
944
946
|
def Vpcs(self, Vpcs):
|
947
|
+
warnings.warn("parameter `Vpcs` is deprecated", DeprecationWarning)
|
948
|
+
|
945
949
|
self._Vpcs = Vpcs
|
946
950
|
|
947
951
|
@property
|
@@ -50,7 +50,7 @@ class PrivatednsClient(AbstractClient):
|
|
50
50
|
|
51
51
|
|
52
52
|
def CreatePrivateDNSAccount(self, request):
|
53
|
-
"""
|
53
|
+
"""跨账号关联VPC时绑定其他账号
|
54
54
|
|
55
55
|
:param request: Request instance for CreatePrivateDNSAccount.
|
56
56
|
:type request: :class:`tencentcloud.privatedns.v20201028.models.CreatePrivateDNSAccountRequest`
|
@@ -2000,7 +2000,7 @@ class CmqSubscription(AbstractModel):
|
|
2000
2000
|
|
2001
2001
|
def __init__(self):
|
2002
2002
|
r"""
|
2003
|
-
:param _SubscriptionName:
|
2003
|
+
:param _SubscriptionName: 订阅名字,在单个地域同一账号的同一主题下唯一。订阅名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
2004
2004
|
注意:此字段可能返回 null,表示取不到有效值。
|
2005
2005
|
:type SubscriptionName: str
|
2006
2006
|
:param _SubscriptionId: 订阅 ID。订阅 ID 在拉取监控数据时会用到。
|
@@ -2060,7 +2060,7 @@ filterType = 2表示用户使用 bindingKey 过滤。
|
|
2060
2060
|
|
2061
2061
|
@property
|
2062
2062
|
def SubscriptionName(self):
|
2063
|
-
"""
|
2063
|
+
"""订阅名字,在单个地域同一账号的同一主题下唯一。订阅名称是一个不超过64个字符的字符串,必须以字母为首字符,剩余部分可以包含字母、数字和横划线(-)。
|
2064
2064
|
注意:此字段可能返回 null,表示取不到有效值。
|
2065
2065
|
:rtype: str
|
2066
2066
|
"""
|
@@ -23143,6 +23143,120 @@ class ModifyPublicNetworkAccessPointResponse(AbstractModel):
|
|
23143
23143
|
self._RequestId = params.get("RequestId")
|
23144
23144
|
|
23145
23145
|
|
23146
|
+
class ModifyPublicNetworkSecurityPolicyRequest(AbstractModel):
|
23147
|
+
"""ModifyPublicNetworkSecurityPolicy请求参数结构体
|
23148
|
+
|
23149
|
+
"""
|
23150
|
+
|
23151
|
+
def __init__(self):
|
23152
|
+
r"""
|
23153
|
+
:param _InstanceId: 集群id
|
23154
|
+
:type InstanceId: str
|
23155
|
+
:param _PolicyList: 策略列表
|
23156
|
+
:type PolicyList: list of SecurityPolicy
|
23157
|
+
"""
|
23158
|
+
self._InstanceId = None
|
23159
|
+
self._PolicyList = None
|
23160
|
+
|
23161
|
+
@property
|
23162
|
+
def InstanceId(self):
|
23163
|
+
"""集群id
|
23164
|
+
:rtype: str
|
23165
|
+
"""
|
23166
|
+
return self._InstanceId
|
23167
|
+
|
23168
|
+
@InstanceId.setter
|
23169
|
+
def InstanceId(self, InstanceId):
|
23170
|
+
self._InstanceId = InstanceId
|
23171
|
+
|
23172
|
+
@property
|
23173
|
+
def PolicyList(self):
|
23174
|
+
"""策略列表
|
23175
|
+
:rtype: list of SecurityPolicy
|
23176
|
+
"""
|
23177
|
+
return self._PolicyList
|
23178
|
+
|
23179
|
+
@PolicyList.setter
|
23180
|
+
def PolicyList(self, PolicyList):
|
23181
|
+
self._PolicyList = PolicyList
|
23182
|
+
|
23183
|
+
|
23184
|
+
def _deserialize(self, params):
|
23185
|
+
self._InstanceId = params.get("InstanceId")
|
23186
|
+
if params.get("PolicyList") is not None:
|
23187
|
+
self._PolicyList = []
|
23188
|
+
for item in params.get("PolicyList"):
|
23189
|
+
obj = SecurityPolicy()
|
23190
|
+
obj._deserialize(item)
|
23191
|
+
self._PolicyList.append(obj)
|
23192
|
+
memeber_set = set(params.keys())
|
23193
|
+
for name, value in vars(self).items():
|
23194
|
+
property_name = name[1:]
|
23195
|
+
if property_name in memeber_set:
|
23196
|
+
memeber_set.remove(property_name)
|
23197
|
+
if len(memeber_set) > 0:
|
23198
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
23199
|
+
|
23200
|
+
|
23201
|
+
|
23202
|
+
class ModifyPublicNetworkSecurityPolicyResponse(AbstractModel):
|
23203
|
+
"""ModifyPublicNetworkSecurityPolicy返回参数结构体
|
23204
|
+
|
23205
|
+
"""
|
23206
|
+
|
23207
|
+
def __init__(self):
|
23208
|
+
r"""
|
23209
|
+
:param _ModifyResult: SUCCESS或者FAILURE
|
23210
|
+
:type ModifyResult: str
|
23211
|
+
:param _InstanceId: 集群id
|
23212
|
+
:type InstanceId: str
|
23213
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
23214
|
+
:type RequestId: str
|
23215
|
+
"""
|
23216
|
+
self._ModifyResult = None
|
23217
|
+
self._InstanceId = None
|
23218
|
+
self._RequestId = None
|
23219
|
+
|
23220
|
+
@property
|
23221
|
+
def ModifyResult(self):
|
23222
|
+
"""SUCCESS或者FAILURE
|
23223
|
+
:rtype: str
|
23224
|
+
"""
|
23225
|
+
return self._ModifyResult
|
23226
|
+
|
23227
|
+
@ModifyResult.setter
|
23228
|
+
def ModifyResult(self, ModifyResult):
|
23229
|
+
self._ModifyResult = ModifyResult
|
23230
|
+
|
23231
|
+
@property
|
23232
|
+
def InstanceId(self):
|
23233
|
+
"""集群id
|
23234
|
+
:rtype: str
|
23235
|
+
"""
|
23236
|
+
return self._InstanceId
|
23237
|
+
|
23238
|
+
@InstanceId.setter
|
23239
|
+
def InstanceId(self, InstanceId):
|
23240
|
+
self._InstanceId = InstanceId
|
23241
|
+
|
23242
|
+
@property
|
23243
|
+
def RequestId(self):
|
23244
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
23245
|
+
:rtype: str
|
23246
|
+
"""
|
23247
|
+
return self._RequestId
|
23248
|
+
|
23249
|
+
@RequestId.setter
|
23250
|
+
def RequestId(self, RequestId):
|
23251
|
+
self._RequestId = RequestId
|
23252
|
+
|
23253
|
+
|
23254
|
+
def _deserialize(self, params):
|
23255
|
+
self._ModifyResult = params.get("ModifyResult")
|
23256
|
+
self._InstanceId = params.get("InstanceId")
|
23257
|
+
self._RequestId = params.get("RequestId")
|
23258
|
+
|
23259
|
+
|
23146
23260
|
class ModifyRabbitMQUserRequest(AbstractModel):
|
23147
23261
|
"""ModifyRabbitMQUser请求参数结构体
|
23148
23262
|
|
@@ -2746,6 +2746,29 @@ class TdmqClient(AbstractClient):
|
|
2746
2746
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2747
2747
|
|
2748
2748
|
|
2749
|
+
def ModifyPublicNetworkSecurityPolicy(self, request):
|
2750
|
+
"""修改pulsar专业版公网安全策略
|
2751
|
+
|
2752
|
+
:param request: Request instance for ModifyPublicNetworkSecurityPolicy.
|
2753
|
+
:type request: :class:`tencentcloud.tdmq.v20200217.models.ModifyPublicNetworkSecurityPolicyRequest`
|
2754
|
+
:rtype: :class:`tencentcloud.tdmq.v20200217.models.ModifyPublicNetworkSecurityPolicyResponse`
|
2755
|
+
|
2756
|
+
"""
|
2757
|
+
try:
|
2758
|
+
params = request._serialize()
|
2759
|
+
headers = request.headers
|
2760
|
+
body = self.call("ModifyPublicNetworkSecurityPolicy", params, headers=headers)
|
2761
|
+
response = json.loads(body)
|
2762
|
+
model = models.ModifyPublicNetworkSecurityPolicyResponse()
|
2763
|
+
model._deserialize(response["Response"])
|
2764
|
+
return model
|
2765
|
+
except Exception as e:
|
2766
|
+
if isinstance(e, TencentCloudSDKException):
|
2767
|
+
raise
|
2768
|
+
else:
|
2769
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2770
|
+
|
2771
|
+
|
2749
2772
|
def ModifyRabbitMQUser(self, request):
|
2750
2773
|
"""修改RabbitMQ的用户
|
2751
2774
|
|