tencentcloud-sdk-python 3.0.1202__py2.py3-none-any.whl → 3.0.1204__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 (42) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/aiart/v20221229/models.py +13 -13
  3. tencentcloud/cbs/v20170312/models.py +1 -1
  4. tencentcloud/cdb/v20170320/models.py +63 -7
  5. tencentcloud/cdwdoris/v20211228/cdwdoris_client.py +506 -0
  6. tencentcloud/cdwdoris/v20211228/models.py +5850 -1805
  7. tencentcloud/cfs/v20190719/cfs_client.py +2 -2
  8. tencentcloud/cfs/v20190719/errorcodes.py +9 -0
  9. tencentcloud/cfs/v20190719/models.py +55 -5
  10. tencentcloud/csip/v20221121/models.py +24 -0
  11. tencentcloud/emr/v20190103/errorcodes.py +3 -0
  12. tencentcloud/emr/v20190103/models.py +24 -0
  13. tencentcloud/ess/v20201111/ess_client.py +23 -5
  14. tencentcloud/ess/v20201111/models.py +3 -1
  15. tencentcloud/essbasic/v20210526/essbasic_client.py +13 -1
  16. tencentcloud/essbasic/v20210526/models.py +3 -1
  17. tencentcloud/hunyuan/v20230901/models.py +17 -1
  18. tencentcloud/iotexplorer/v20190423/errorcodes.py +15 -0
  19. tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +46 -0
  20. tencentcloud/iotexplorer/v20190423/models.py +298 -0
  21. tencentcloud/lcic/v20220817/models.py +24 -0
  22. tencentcloud/monitor/v20180724/models.py +5 -4
  23. tencentcloud/mps/v20190612/models.py +27 -0
  24. tencentcloud/organization/v20210331/models.py +304 -0
  25. tencentcloud/organization/v20210331/organization_client.py +23 -0
  26. tencentcloud/rce/v20201103/models.py +2905 -435
  27. tencentcloud/rce/v20201103/rce_client.py +207 -0
  28. tencentcloud/redis/v20180412/models.py +560 -0
  29. tencentcloud/redis/v20180412/redis_client.py +46 -0
  30. tencentcloud/sqlserver/v20180328/models.py +58 -0
  31. tencentcloud/sqlserver/v20180328/sqlserver_client.py +23 -0
  32. tencentcloud/teo/v20220901/errorcodes.py +12 -0
  33. tencentcloud/tmt/v20180321/models.py +1 -1
  34. tencentcloud/trtc/v20190722/models.py +16 -3
  35. tencentcloud/tse/v20201207/models.py +13 -0
  36. tencentcloud/tsi/v20210325/models.py +24 -4
  37. tencentcloud/tsi/v20210325/tsi_client.py +12 -1
  38. {tencentcloud_sdk_python-3.0.1202.dist-info → tencentcloud_sdk_python-3.0.1204.dist-info}/METADATA +1 -1
  39. {tencentcloud_sdk_python-3.0.1202.dist-info → tencentcloud_sdk_python-3.0.1204.dist-info}/RECORD +42 -42
  40. {tencentcloud_sdk_python-3.0.1202.dist-info → tencentcloud_sdk_python-3.0.1204.dist-info}/LICENSE +0 -0
  41. {tencentcloud_sdk_python-3.0.1202.dist-info → tencentcloud_sdk_python-3.0.1204.dist-info}/WHEEL +0 -0
  42. {tencentcloud_sdk_python-3.0.1202.dist-info → tencentcloud_sdk_python-3.0.1204.dist-info}/top_level.txt +0 -0
@@ -5472,6 +5472,119 @@ class ListOrganizationIdentityResponse(AbstractModel):
5472
5472
  self._RequestId = params.get("RequestId")
5473
5473
 
5474
5474
 
5475
+ class ListOrganizationServiceRequest(AbstractModel):
5476
+ """ListOrganizationService请求参数结构体
5477
+
5478
+ """
5479
+
5480
+ def __init__(self):
5481
+ r"""
5482
+ :param _Offset: 偏移量。取值是limit的整数倍,默认值 : 0
5483
+ :type Offset: int
5484
+ :param _Limit: 限制数目。取值范围:1~50,默认值:10
5485
+ :type Limit: int
5486
+ :param _SearchKey: 名称搜索关键字。
5487
+ :type SearchKey: str
5488
+ """
5489
+ self._Offset = None
5490
+ self._Limit = None
5491
+ self._SearchKey = None
5492
+
5493
+ @property
5494
+ def Offset(self):
5495
+ return self._Offset
5496
+
5497
+ @Offset.setter
5498
+ def Offset(self, Offset):
5499
+ self._Offset = Offset
5500
+
5501
+ @property
5502
+ def Limit(self):
5503
+ return self._Limit
5504
+
5505
+ @Limit.setter
5506
+ def Limit(self, Limit):
5507
+ self._Limit = Limit
5508
+
5509
+ @property
5510
+ def SearchKey(self):
5511
+ return self._SearchKey
5512
+
5513
+ @SearchKey.setter
5514
+ def SearchKey(self, SearchKey):
5515
+ self._SearchKey = SearchKey
5516
+
5517
+
5518
+ def _deserialize(self, params):
5519
+ self._Offset = params.get("Offset")
5520
+ self._Limit = params.get("Limit")
5521
+ self._SearchKey = params.get("SearchKey")
5522
+ memeber_set = set(params.keys())
5523
+ for name, value in vars(self).items():
5524
+ property_name = name[1:]
5525
+ if property_name in memeber_set:
5526
+ memeber_set.remove(property_name)
5527
+ if len(memeber_set) > 0:
5528
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
5529
+
5530
+
5531
+
5532
+ class ListOrganizationServiceResponse(AbstractModel):
5533
+ """ListOrganizationService返回参数结构体
5534
+
5535
+ """
5536
+
5537
+ def __init__(self):
5538
+ r"""
5539
+ :param _Total: 总数。
5540
+ 注意:此字段可能返回 null,表示取不到有效值。
5541
+ :type Total: int
5542
+ :param _Items: 集团服务列表。
5543
+ 注意:此字段可能返回 null,表示取不到有效值。
5544
+ :type Items: list of OrganizationServiceAssign
5545
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5546
+ :type RequestId: str
5547
+ """
5548
+ self._Total = None
5549
+ self._Items = None
5550
+ self._RequestId = None
5551
+
5552
+ @property
5553
+ def Total(self):
5554
+ return self._Total
5555
+
5556
+ @Total.setter
5557
+ def Total(self, Total):
5558
+ self._Total = Total
5559
+
5560
+ @property
5561
+ def Items(self):
5562
+ return self._Items
5563
+
5564
+ @Items.setter
5565
+ def Items(self, Items):
5566
+ self._Items = Items
5567
+
5568
+ @property
5569
+ def RequestId(self):
5570
+ return self._RequestId
5571
+
5572
+ @RequestId.setter
5573
+ def RequestId(self, RequestId):
5574
+ self._RequestId = RequestId
5575
+
5576
+
5577
+ def _deserialize(self, params):
5578
+ self._Total = params.get("Total")
5579
+ if params.get("Items") is not None:
5580
+ self._Items = []
5581
+ for item in params.get("Items"):
5582
+ obj = OrganizationServiceAssign()
5583
+ obj._deserialize(item)
5584
+ self._Items.append(obj)
5585
+ self._RequestId = params.get("RequestId")
5586
+
5587
+
5475
5588
  class ListPoliciesForTarget(AbstractModel):
5476
5589
  """查询目标关联的SCP策略列表
5477
5590
 
@@ -7786,6 +7899,197 @@ class OrgProductFinancial(AbstractModel):
7786
7899
 
7787
7900
 
7788
7901
 
7902
+ class OrganizationServiceAssign(AbstractModel):
7903
+ """集团服务设置
7904
+
7905
+ """
7906
+
7907
+ def __init__(self):
7908
+ r"""
7909
+ :param _ServiceId: 集团服务ID。
7910
+ 注意:此字段可能返回 null,表示取不到有效值。
7911
+ :type ServiceId: int
7912
+ :param _ProductName: 集团服务产品名称。
7913
+ 注意:此字段可能返回 null,表示取不到有效值。
7914
+ :type ProductName: str
7915
+ :param _IsAssign: 是否支持委派。取值: 1-是 2-否
7916
+ 注意:此字段可能返回 null,表示取不到有效值。
7917
+ :type IsAssign: int
7918
+ :param _Description: 集团服务描述。
7919
+ 注意:此字段可能返回 null,表示取不到有效值。
7920
+ :type Description: str
7921
+ :param _MemberNum: 当前委派管理员数。
7922
+ 注意:此字段可能返回 null,表示取不到有效值。
7923
+ :type MemberNum: str
7924
+ :param _Document: 帮助文档。
7925
+ 注意:此字段可能返回 null,表示取不到有效值。
7926
+ :type Document: str
7927
+ :param _ConsoleUrl: 集团服务产品控制台路径。
7928
+ 注意:此字段可能返回 null,表示取不到有效值。
7929
+ :type ConsoleUrl: str
7930
+ :param _IsUsageStatus: 是否接入使用状态。取值: 1-是
7931
+ 2-否
7932
+ 注意:此字段可能返回 null,表示取不到有效值。
7933
+ :type IsUsageStatus: int
7934
+ :param _CanAssignCount: 委派管理员数量限制。
7935
+ 注意:此字段可能返回 null,表示取不到有效值。
7936
+ :type CanAssignCount: int
7937
+ :param _Product: 集团服务产品标识。
7938
+ 注意:此字段可能返回 null,表示取不到有效值。
7939
+ :type Product: str
7940
+ :param _ServiceGrant: 是否支持集团服务授权。取值 1-是、2-否
7941
+ 注意:此字段可能返回 null,表示取不到有效值。
7942
+ :type ServiceGrant: int
7943
+ :param _GrantStatus: 集团服务授权启用状态。ServiceGrant值为1时该字段有效 ,取值:Enabled-开启 Disabled-关闭
7944
+ 注意:此字段可能返回 null,表示取不到有效值。
7945
+ :type GrantStatus: str
7946
+ :param _IsSetManagementScope: 是否支持设置委派管理范围。取值: 1-是 2-否
7947
+ 注意:此字段可能返回 null,表示取不到有效值。
7948
+ :type IsSetManagementScope: int
7949
+ """
7950
+ self._ServiceId = None
7951
+ self._ProductName = None
7952
+ self._IsAssign = None
7953
+ self._Description = None
7954
+ self._MemberNum = None
7955
+ self._Document = None
7956
+ self._ConsoleUrl = None
7957
+ self._IsUsageStatus = None
7958
+ self._CanAssignCount = None
7959
+ self._Product = None
7960
+ self._ServiceGrant = None
7961
+ self._GrantStatus = None
7962
+ self._IsSetManagementScope = None
7963
+
7964
+ @property
7965
+ def ServiceId(self):
7966
+ return self._ServiceId
7967
+
7968
+ @ServiceId.setter
7969
+ def ServiceId(self, ServiceId):
7970
+ self._ServiceId = ServiceId
7971
+
7972
+ @property
7973
+ def ProductName(self):
7974
+ return self._ProductName
7975
+
7976
+ @ProductName.setter
7977
+ def ProductName(self, ProductName):
7978
+ self._ProductName = ProductName
7979
+
7980
+ @property
7981
+ def IsAssign(self):
7982
+ return self._IsAssign
7983
+
7984
+ @IsAssign.setter
7985
+ def IsAssign(self, IsAssign):
7986
+ self._IsAssign = IsAssign
7987
+
7988
+ @property
7989
+ def Description(self):
7990
+ return self._Description
7991
+
7992
+ @Description.setter
7993
+ def Description(self, Description):
7994
+ self._Description = Description
7995
+
7996
+ @property
7997
+ def MemberNum(self):
7998
+ return self._MemberNum
7999
+
8000
+ @MemberNum.setter
8001
+ def MemberNum(self, MemberNum):
8002
+ self._MemberNum = MemberNum
8003
+
8004
+ @property
8005
+ def Document(self):
8006
+ return self._Document
8007
+
8008
+ @Document.setter
8009
+ def Document(self, Document):
8010
+ self._Document = Document
8011
+
8012
+ @property
8013
+ def ConsoleUrl(self):
8014
+ return self._ConsoleUrl
8015
+
8016
+ @ConsoleUrl.setter
8017
+ def ConsoleUrl(self, ConsoleUrl):
8018
+ self._ConsoleUrl = ConsoleUrl
8019
+
8020
+ @property
8021
+ def IsUsageStatus(self):
8022
+ return self._IsUsageStatus
8023
+
8024
+ @IsUsageStatus.setter
8025
+ def IsUsageStatus(self, IsUsageStatus):
8026
+ self._IsUsageStatus = IsUsageStatus
8027
+
8028
+ @property
8029
+ def CanAssignCount(self):
8030
+ return self._CanAssignCount
8031
+
8032
+ @CanAssignCount.setter
8033
+ def CanAssignCount(self, CanAssignCount):
8034
+ self._CanAssignCount = CanAssignCount
8035
+
8036
+ @property
8037
+ def Product(self):
8038
+ return self._Product
8039
+
8040
+ @Product.setter
8041
+ def Product(self, Product):
8042
+ self._Product = Product
8043
+
8044
+ @property
8045
+ def ServiceGrant(self):
8046
+ return self._ServiceGrant
8047
+
8048
+ @ServiceGrant.setter
8049
+ def ServiceGrant(self, ServiceGrant):
8050
+ self._ServiceGrant = ServiceGrant
8051
+
8052
+ @property
8053
+ def GrantStatus(self):
8054
+ return self._GrantStatus
8055
+
8056
+ @GrantStatus.setter
8057
+ def GrantStatus(self, GrantStatus):
8058
+ self._GrantStatus = GrantStatus
8059
+
8060
+ @property
8061
+ def IsSetManagementScope(self):
8062
+ return self._IsSetManagementScope
8063
+
8064
+ @IsSetManagementScope.setter
8065
+ def IsSetManagementScope(self, IsSetManagementScope):
8066
+ self._IsSetManagementScope = IsSetManagementScope
8067
+
8068
+
8069
+ def _deserialize(self, params):
8070
+ self._ServiceId = params.get("ServiceId")
8071
+ self._ProductName = params.get("ProductName")
8072
+ self._IsAssign = params.get("IsAssign")
8073
+ self._Description = params.get("Description")
8074
+ self._MemberNum = params.get("MemberNum")
8075
+ self._Document = params.get("Document")
8076
+ self._ConsoleUrl = params.get("ConsoleUrl")
8077
+ self._IsUsageStatus = params.get("IsUsageStatus")
8078
+ self._CanAssignCount = params.get("CanAssignCount")
8079
+ self._Product = params.get("Product")
8080
+ self._ServiceGrant = params.get("ServiceGrant")
8081
+ self._GrantStatus = params.get("GrantStatus")
8082
+ self._IsSetManagementScope = params.get("IsSetManagementScope")
8083
+ memeber_set = set(params.keys())
8084
+ for name, value in vars(self).items():
8085
+ property_name = name[1:]
8086
+ if property_name in memeber_set:
8087
+ memeber_set.remove(property_name)
8088
+ if len(memeber_set) > 0:
8089
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
8090
+
8091
+
8092
+
7789
8093
  class ProductResource(AbstractModel):
7790
8094
  """产品资源
7791
8095
 
@@ -1199,6 +1199,29 @@ class OrganizationClient(AbstractClient):
1199
1199
  raise TencentCloudSDKException(type(e).__name__, str(e))
1200
1200
 
1201
1201
 
1202
+ def ListOrganizationService(self, request):
1203
+ """获取集团服务设置列表
1204
+
1205
+ :param request: Request instance for ListOrganizationService.
1206
+ :type request: :class:`tencentcloud.organization.v20210331.models.ListOrganizationServiceRequest`
1207
+ :rtype: :class:`tencentcloud.organization.v20210331.models.ListOrganizationServiceResponse`
1208
+
1209
+ """
1210
+ try:
1211
+ params = request._serialize()
1212
+ headers = request.headers
1213
+ body = self.call("ListOrganizationService", params, headers=headers)
1214
+ response = json.loads(body)
1215
+ model = models.ListOrganizationServiceResponse()
1216
+ model._deserialize(response["Response"])
1217
+ return model
1218
+ except Exception as e:
1219
+ if isinstance(e, TencentCloudSDKException):
1220
+ raise
1221
+ else:
1222
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1223
+
1224
+
1202
1225
  def ListPolicies(self, request):
1203
1226
  """本接口(ListPolicies)可用于查询查看策略列表数据
1204
1227