tencentcloud-sdk-python 3.0.1445__py2.py3-none-any.whl → 3.0.1446__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/cbs/v20170312/models.py +17 -2
- tencentcloud/ccc/v20200210/models.py +21 -0
- tencentcloud/dlc/v20210125/dlc_client.py +161 -0
- tencentcloud/dlc/v20210125/errorcodes.py +3 -0
- tencentcloud/dlc/v20210125/models.py +1019 -0
- tencentcloud/es/v20180416/models.py +85 -0
- tencentcloud/ess/v20201111/models.py +32 -0
- tencentcloud/essbasic/v20210526/models.py +62 -0
- tencentcloud/ioa/v20220601/models.py +78 -50
- tencentcloud/mps/v20190612/models.py +55 -10
- tencentcloud/postgres/v20170312/models.py +2 -2
- tencentcloud/tbaas/v20180416/models.py +12 -12
- tencentcloud/tcaplusdb/v20190823/models.py +0 -328
- tencentcloud/tdmq/v20200217/errorcodes.py +3 -0
- tencentcloud/tdmq/v20200217/models.py +51 -17
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/trocket/v20230308/models.py +2 -2
- tencentcloud/tse/v20201207/models.py +15 -0
- tencentcloud/tsf/v20180326/models.py +10 -8
- tencentcloud/vod/v20180717/models.py +4 -12
- {tencentcloud_sdk_python-3.0.1445.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1445.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/RECORD +26 -26
- {tencentcloud_sdk_python-3.0.1445.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1445.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1445.dist-info → tencentcloud_sdk_python-3.0.1446.dist-info}/top_level.txt +0 -0
|
@@ -9560,6 +9560,57 @@ class GetRequestTargetNodeTypesResponse(AbstractModel):
|
|
|
9560
9560
|
self._RequestId = params.get("RequestId")
|
|
9561
9561
|
|
|
9562
9562
|
|
|
9563
|
+
class GpuInfo(AbstractModel):
|
|
9564
|
+
"""节点Gpu信息
|
|
9565
|
+
|
|
9566
|
+
"""
|
|
9567
|
+
|
|
9568
|
+
def __init__(self):
|
|
9569
|
+
r"""
|
|
9570
|
+
:param _GpuCount: Gpu块数
|
|
9571
|
+
:type GpuCount: int
|
|
9572
|
+
:param _GpuType: Gpu类型
|
|
9573
|
+
:type GpuType: str
|
|
9574
|
+
"""
|
|
9575
|
+
self._GpuCount = None
|
|
9576
|
+
self._GpuType = None
|
|
9577
|
+
|
|
9578
|
+
@property
|
|
9579
|
+
def GpuCount(self):
|
|
9580
|
+
"""Gpu块数
|
|
9581
|
+
:rtype: int
|
|
9582
|
+
"""
|
|
9583
|
+
return self._GpuCount
|
|
9584
|
+
|
|
9585
|
+
@GpuCount.setter
|
|
9586
|
+
def GpuCount(self, GpuCount):
|
|
9587
|
+
self._GpuCount = GpuCount
|
|
9588
|
+
|
|
9589
|
+
@property
|
|
9590
|
+
def GpuType(self):
|
|
9591
|
+
"""Gpu类型
|
|
9592
|
+
:rtype: str
|
|
9593
|
+
"""
|
|
9594
|
+
return self._GpuType
|
|
9595
|
+
|
|
9596
|
+
@GpuType.setter
|
|
9597
|
+
def GpuType(self, GpuType):
|
|
9598
|
+
self._GpuType = GpuType
|
|
9599
|
+
|
|
9600
|
+
|
|
9601
|
+
def _deserialize(self, params):
|
|
9602
|
+
self._GpuCount = params.get("GpuCount")
|
|
9603
|
+
self._GpuType = params.get("GpuType")
|
|
9604
|
+
memeber_set = set(params.keys())
|
|
9605
|
+
for name, value in vars(self).items():
|
|
9606
|
+
property_name = name[1:]
|
|
9607
|
+
if property_name in memeber_set:
|
|
9608
|
+
memeber_set.remove(property_name)
|
|
9609
|
+
if len(memeber_set) > 0:
|
|
9610
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
9611
|
+
|
|
9612
|
+
|
|
9613
|
+
|
|
9563
9614
|
class IndexMetaField(AbstractModel):
|
|
9564
9615
|
"""索引元数据字段
|
|
9565
9616
|
|
|
@@ -10739,6 +10790,8 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
10739
10790
|
:type EnableDestroyProtection: str
|
|
10740
10791
|
:param _ShowKibanaIpPort: kibana内网访问地址
|
|
10741
10792
|
:type ShowKibanaIpPort: str
|
|
10793
|
+
:param _IsCdzLite: 是否为CDZLite可用区
|
|
10794
|
+
:type IsCdzLite: bool
|
|
10742
10795
|
"""
|
|
10743
10796
|
self._InstanceId = None
|
|
10744
10797
|
self._InstanceName = None
|
|
@@ -10835,6 +10888,7 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
10835
10888
|
self._EnableScheduleOperationDuration = None
|
|
10836
10889
|
self._EnableDestroyProtection = None
|
|
10837
10890
|
self._ShowKibanaIpPort = None
|
|
10891
|
+
self._IsCdzLite = None
|
|
10838
10892
|
|
|
10839
10893
|
@property
|
|
10840
10894
|
def InstanceId(self):
|
|
@@ -11944,6 +11998,17 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
11944
11998
|
def ShowKibanaIpPort(self, ShowKibanaIpPort):
|
|
11945
11999
|
self._ShowKibanaIpPort = ShowKibanaIpPort
|
|
11946
12000
|
|
|
12001
|
+
@property
|
|
12002
|
+
def IsCdzLite(self):
|
|
12003
|
+
"""是否为CDZLite可用区
|
|
12004
|
+
:rtype: bool
|
|
12005
|
+
"""
|
|
12006
|
+
return self._IsCdzLite
|
|
12007
|
+
|
|
12008
|
+
@IsCdzLite.setter
|
|
12009
|
+
def IsCdzLite(self, IsCdzLite):
|
|
12010
|
+
self._IsCdzLite = IsCdzLite
|
|
12011
|
+
|
|
11947
12012
|
|
|
11948
12013
|
def _deserialize(self, params):
|
|
11949
12014
|
self._InstanceId = params.get("InstanceId")
|
|
@@ -12089,6 +12154,7 @@ RENEW_FLAG_DEFAULT:不自动续费
|
|
|
12089
12154
|
self._EnableScheduleOperationDuration._deserialize(params.get("EnableScheduleOperationDuration"))
|
|
12090
12155
|
self._EnableDestroyProtection = params.get("EnableDestroyProtection")
|
|
12091
12156
|
self._ShowKibanaIpPort = params.get("ShowKibanaIpPort")
|
|
12157
|
+
self._IsCdzLite = params.get("IsCdzLite")
|
|
12092
12158
|
memeber_set = set(params.keys())
|
|
12093
12159
|
for name, value in vars(self).items():
|
|
12094
12160
|
property_name = name[1:]
|
|
@@ -14360,6 +14426,9 @@ class NodeInfo(AbstractModel):
|
|
|
14360
14426
|
:param _DiskEnhance: /
|
|
14361
14427
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
14362
14428
|
:type DiskEnhance: int
|
|
14429
|
+
:param _GpuInfo: 节点Gpu信息
|
|
14430
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14431
|
+
:type GpuInfo: :class:`tencentcloud.es.v20180416.models.GpuInfo`
|
|
14363
14432
|
"""
|
|
14364
14433
|
self._NodeNum = None
|
|
14365
14434
|
self._NodeType = None
|
|
@@ -14372,6 +14441,7 @@ class NodeInfo(AbstractModel):
|
|
|
14372
14441
|
self._CpuNum = None
|
|
14373
14442
|
self._MemSize = None
|
|
14374
14443
|
self._DiskEnhance = None
|
|
14444
|
+
self._GpuInfo = None
|
|
14375
14445
|
|
|
14376
14446
|
@property
|
|
14377
14447
|
def NodeNum(self):
|
|
@@ -14501,6 +14571,18 @@ class NodeInfo(AbstractModel):
|
|
|
14501
14571
|
def DiskEnhance(self, DiskEnhance):
|
|
14502
14572
|
self._DiskEnhance = DiskEnhance
|
|
14503
14573
|
|
|
14574
|
+
@property
|
|
14575
|
+
def GpuInfo(self):
|
|
14576
|
+
"""节点Gpu信息
|
|
14577
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
14578
|
+
:rtype: :class:`tencentcloud.es.v20180416.models.GpuInfo`
|
|
14579
|
+
"""
|
|
14580
|
+
return self._GpuInfo
|
|
14581
|
+
|
|
14582
|
+
@GpuInfo.setter
|
|
14583
|
+
def GpuInfo(self, GpuInfo):
|
|
14584
|
+
self._GpuInfo = GpuInfo
|
|
14585
|
+
|
|
14504
14586
|
|
|
14505
14587
|
def _deserialize(self, params):
|
|
14506
14588
|
self._NodeNum = params.get("NodeNum")
|
|
@@ -14516,6 +14598,9 @@ class NodeInfo(AbstractModel):
|
|
|
14516
14598
|
self._CpuNum = params.get("CpuNum")
|
|
14517
14599
|
self._MemSize = params.get("MemSize")
|
|
14518
14600
|
self._DiskEnhance = params.get("DiskEnhance")
|
|
14601
|
+
if params.get("GpuInfo") is not None:
|
|
14602
|
+
self._GpuInfo = GpuInfo()
|
|
14603
|
+
self._GpuInfo._deserialize(params.get("GpuInfo"))
|
|
14519
14604
|
memeber_set = set(params.keys())
|
|
14520
14605
|
for name, value in vars(self).items():
|
|
14521
14606
|
property_name = name[1:]
|
|
@@ -25095,11 +25095,18 @@ class EmbedUrlOption(AbstractModel):
|
|
|
25095
25095
|
<ul><li>(默认) false -否</li> <li> true - 禁止编辑</li></ul>
|
|
25096
25096
|
|
|
25097
25097
|
:type ForbidEditWatermark: bool
|
|
25098
|
+
:param _SealDescription: 印章描述
|
|
25099
|
+
:type SealDescription: str
|
|
25100
|
+
:param _ForbidEditSealDescription: 是否禁止编辑印章描述内容
|
|
25101
|
+
<ul><li>(默认) false -否</li> <li> true - 禁止编辑</li></ul>
|
|
25102
|
+
:type ForbidEditSealDescription: str
|
|
25098
25103
|
"""
|
|
25099
25104
|
self._ShowFlowDetailComponent = None
|
|
25100
25105
|
self._ShowTemplateComponent = None
|
|
25101
25106
|
self._SkipUploadFile = None
|
|
25102
25107
|
self._ForbidEditWatermark = None
|
|
25108
|
+
self._SealDescription = None
|
|
25109
|
+
self._ForbidEditSealDescription = None
|
|
25103
25110
|
|
|
25104
25111
|
@property
|
|
25105
25112
|
def ShowFlowDetailComponent(self):
|
|
@@ -25158,12 +25165,37 @@ class EmbedUrlOption(AbstractModel):
|
|
|
25158
25165
|
def ForbidEditWatermark(self, ForbidEditWatermark):
|
|
25159
25166
|
self._ForbidEditWatermark = ForbidEditWatermark
|
|
25160
25167
|
|
|
25168
|
+
@property
|
|
25169
|
+
def SealDescription(self):
|
|
25170
|
+
"""印章描述
|
|
25171
|
+
:rtype: str
|
|
25172
|
+
"""
|
|
25173
|
+
return self._SealDescription
|
|
25174
|
+
|
|
25175
|
+
@SealDescription.setter
|
|
25176
|
+
def SealDescription(self, SealDescription):
|
|
25177
|
+
self._SealDescription = SealDescription
|
|
25178
|
+
|
|
25179
|
+
@property
|
|
25180
|
+
def ForbidEditSealDescription(self):
|
|
25181
|
+
"""是否禁止编辑印章描述内容
|
|
25182
|
+
<ul><li>(默认) false -否</li> <li> true - 禁止编辑</li></ul>
|
|
25183
|
+
:rtype: str
|
|
25184
|
+
"""
|
|
25185
|
+
return self._ForbidEditSealDescription
|
|
25186
|
+
|
|
25187
|
+
@ForbidEditSealDescription.setter
|
|
25188
|
+
def ForbidEditSealDescription(self, ForbidEditSealDescription):
|
|
25189
|
+
self._ForbidEditSealDescription = ForbidEditSealDescription
|
|
25190
|
+
|
|
25161
25191
|
|
|
25162
25192
|
def _deserialize(self, params):
|
|
25163
25193
|
self._ShowFlowDetailComponent = params.get("ShowFlowDetailComponent")
|
|
25164
25194
|
self._ShowTemplateComponent = params.get("ShowTemplateComponent")
|
|
25165
25195
|
self._SkipUploadFile = params.get("SkipUploadFile")
|
|
25166
25196
|
self._ForbidEditWatermark = params.get("ForbidEditWatermark")
|
|
25197
|
+
self._SealDescription = params.get("SealDescription")
|
|
25198
|
+
self._ForbidEditSealDescription = params.get("ForbidEditSealDescription")
|
|
25167
25199
|
memeber_set = set(params.keys())
|
|
25168
25200
|
for name, value in vars(self).items():
|
|
25169
25201
|
property_name = name[1:]
|
|
@@ -21367,11 +21367,18 @@ class EmbedUrlOption(AbstractModel):
|
|
|
21367
21367
|
:param _ForbidEditWatermark: 是否禁止编辑(展示)水印控件属性
|
|
21368
21368
|
<ul><li>(默认) false -否</li> <li> true - 禁止编辑</li></ul>
|
|
21369
21369
|
:type ForbidEditWatermark: bool
|
|
21370
|
+
:param _SealDescription: 印章描述
|
|
21371
|
+
:type SealDescription: str
|
|
21372
|
+
:param _ForbidEditSealDescription: 是否禁止编辑印章描述内容
|
|
21373
|
+
<ul><li>(默认) false -否</li> <li> true - 禁止编辑</li></ul>
|
|
21374
|
+
:type ForbidEditSealDescription: str
|
|
21370
21375
|
"""
|
|
21371
21376
|
self._ShowFlowDetailComponent = None
|
|
21372
21377
|
self._ShowTemplateComponent = None
|
|
21373
21378
|
self._SkipUploadFile = None
|
|
21374
21379
|
self._ForbidEditWatermark = None
|
|
21380
|
+
self._SealDescription = None
|
|
21381
|
+
self._ForbidEditSealDescription = None
|
|
21375
21382
|
|
|
21376
21383
|
@property
|
|
21377
21384
|
def ShowFlowDetailComponent(self):
|
|
@@ -21429,12 +21436,37 @@ class EmbedUrlOption(AbstractModel):
|
|
|
21429
21436
|
def ForbidEditWatermark(self, ForbidEditWatermark):
|
|
21430
21437
|
self._ForbidEditWatermark = ForbidEditWatermark
|
|
21431
21438
|
|
|
21439
|
+
@property
|
|
21440
|
+
def SealDescription(self):
|
|
21441
|
+
"""印章描述
|
|
21442
|
+
:rtype: str
|
|
21443
|
+
"""
|
|
21444
|
+
return self._SealDescription
|
|
21445
|
+
|
|
21446
|
+
@SealDescription.setter
|
|
21447
|
+
def SealDescription(self, SealDescription):
|
|
21448
|
+
self._SealDescription = SealDescription
|
|
21449
|
+
|
|
21450
|
+
@property
|
|
21451
|
+
def ForbidEditSealDescription(self):
|
|
21452
|
+
"""是否禁止编辑印章描述内容
|
|
21453
|
+
<ul><li>(默认) false -否</li> <li> true - 禁止编辑</li></ul>
|
|
21454
|
+
:rtype: str
|
|
21455
|
+
"""
|
|
21456
|
+
return self._ForbidEditSealDescription
|
|
21457
|
+
|
|
21458
|
+
@ForbidEditSealDescription.setter
|
|
21459
|
+
def ForbidEditSealDescription(self, ForbidEditSealDescription):
|
|
21460
|
+
self._ForbidEditSealDescription = ForbidEditSealDescription
|
|
21461
|
+
|
|
21432
21462
|
|
|
21433
21463
|
def _deserialize(self, params):
|
|
21434
21464
|
self._ShowFlowDetailComponent = params.get("ShowFlowDetailComponent")
|
|
21435
21465
|
self._ShowTemplateComponent = params.get("ShowTemplateComponent")
|
|
21436
21466
|
self._SkipUploadFile = params.get("SkipUploadFile")
|
|
21437
21467
|
self._ForbidEditWatermark = params.get("ForbidEditWatermark")
|
|
21468
|
+
self._SealDescription = params.get("SealDescription")
|
|
21469
|
+
self._ForbidEditSealDescription = params.get("ForbidEditSealDescription")
|
|
21438
21470
|
memeber_set = set(params.keys())
|
|
21439
21471
|
for name, value in vars(self).items():
|
|
21440
21472
|
property_name = name[1:]
|
|
@@ -27182,9 +27214,15 @@ class OrganizationAuthUrl(AbstractModel):
|
|
|
27182
27214
|
:type AuthUrl: str
|
|
27183
27215
|
:param _ErrorMessage: 企业批量注册的错误信息,例如:企业三要素不通过
|
|
27184
27216
|
:type ErrorMessage: str
|
|
27217
|
+
:param _OrganizationName: 企业批量注册 传递过来的企业名称,方便客户定位企业
|
|
27218
|
+
:type OrganizationName: str
|
|
27219
|
+
:param _SubTaskId: 企业批量注册的唯一 Id, 此 Id 可以用在[创建企业批量认证链接-单链接](https://qian.tencent.com/developers/partnerApis/accounts/CreateBatchOrganizationRegistrationTasks)。
|
|
27220
|
+
:type SubTaskId: str
|
|
27185
27221
|
"""
|
|
27186
27222
|
self._AuthUrl = None
|
|
27187
27223
|
self._ErrorMessage = None
|
|
27224
|
+
self._OrganizationName = None
|
|
27225
|
+
self._SubTaskId = None
|
|
27188
27226
|
|
|
27189
27227
|
@property
|
|
27190
27228
|
def AuthUrl(self):
|
|
@@ -27213,10 +27251,34 @@ class OrganizationAuthUrl(AbstractModel):
|
|
|
27213
27251
|
def ErrorMessage(self, ErrorMessage):
|
|
27214
27252
|
self._ErrorMessage = ErrorMessage
|
|
27215
27253
|
|
|
27254
|
+
@property
|
|
27255
|
+
def OrganizationName(self):
|
|
27256
|
+
"""企业批量注册 传递过来的企业名称,方便客户定位企业
|
|
27257
|
+
:rtype: str
|
|
27258
|
+
"""
|
|
27259
|
+
return self._OrganizationName
|
|
27260
|
+
|
|
27261
|
+
@OrganizationName.setter
|
|
27262
|
+
def OrganizationName(self, OrganizationName):
|
|
27263
|
+
self._OrganizationName = OrganizationName
|
|
27264
|
+
|
|
27265
|
+
@property
|
|
27266
|
+
def SubTaskId(self):
|
|
27267
|
+
"""企业批量注册的唯一 Id, 此 Id 可以用在[创建企业批量认证链接-单链接](https://qian.tencent.com/developers/partnerApis/accounts/CreateBatchOrganizationRegistrationTasks)。
|
|
27268
|
+
:rtype: str
|
|
27269
|
+
"""
|
|
27270
|
+
return self._SubTaskId
|
|
27271
|
+
|
|
27272
|
+
@SubTaskId.setter
|
|
27273
|
+
def SubTaskId(self, SubTaskId):
|
|
27274
|
+
self._SubTaskId = SubTaskId
|
|
27275
|
+
|
|
27216
27276
|
|
|
27217
27277
|
def _deserialize(self, params):
|
|
27218
27278
|
self._AuthUrl = params.get("AuthUrl")
|
|
27219
27279
|
self._ErrorMessage = params.get("ErrorMessage")
|
|
27280
|
+
self._OrganizationName = params.get("OrganizationName")
|
|
27281
|
+
self._SubTaskId = params.get("SubTaskId")
|
|
27220
27282
|
memeber_set = set(params.keys())
|
|
27221
27283
|
for name, value in vars(self).items():
|
|
27222
27284
|
property_name = name[1:]
|
|
@@ -434,40 +434,29 @@ class CreateDeviceVirtualGroupRequest(AbstractModel):
|
|
|
434
434
|
|
|
435
435
|
def __init__(self):
|
|
436
436
|
r"""
|
|
437
|
-
:param _DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
|
|
438
|
-
:type DomainInstanceId: str
|
|
439
437
|
:param _DeviceVirtualGroupName: 必填,终端自定义分组名
|
|
440
438
|
:type DeviceVirtualGroupName: str
|
|
439
|
+
:param _DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
|
|
440
|
+
:type DomainInstanceId: str
|
|
441
441
|
:param _Description: 详情
|
|
442
442
|
:type Description: str
|
|
443
|
-
:param _OsType:
|
|
443
|
+
:param _OsType: 系统类型(0: win,1:linux,2: mac,4:android,5:ios ; 默认值0)(只支持32位)
|
|
444
444
|
:type OsType: int
|
|
445
|
-
:param _TimeType:
|
|
445
|
+
:param _TimeType: 分组类型(0:手动分组;非0为自动划分分组;具体枚举值为:1:自动每小时划分分组、2:自动每天划分分组、3:自定义时间划分分组; 默认值0)(只支持32位)
|
|
446
446
|
:type TimeType: int
|
|
447
447
|
:param _AutoMinute: 选填,TimeType=3时的自动划分时间,其他情况为0(单位min)(只支持32位)
|
|
448
448
|
:type AutoMinute: int
|
|
449
449
|
:param _AutoRules: 选填,手动分组不填,自动划分分组的划分规则数据
|
|
450
450
|
:type AutoRules: :class:`tencentcloud.ioa.v20220601.models.ComplexRule`
|
|
451
451
|
"""
|
|
452
|
-
self._DomainInstanceId = None
|
|
453
452
|
self._DeviceVirtualGroupName = None
|
|
453
|
+
self._DomainInstanceId = None
|
|
454
454
|
self._Description = None
|
|
455
455
|
self._OsType = None
|
|
456
456
|
self._TimeType = None
|
|
457
457
|
self._AutoMinute = None
|
|
458
458
|
self._AutoRules = None
|
|
459
459
|
|
|
460
|
-
@property
|
|
461
|
-
def DomainInstanceId(self):
|
|
462
|
-
"""管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
|
|
463
|
-
:rtype: str
|
|
464
|
-
"""
|
|
465
|
-
return self._DomainInstanceId
|
|
466
|
-
|
|
467
|
-
@DomainInstanceId.setter
|
|
468
|
-
def DomainInstanceId(self, DomainInstanceId):
|
|
469
|
-
self._DomainInstanceId = DomainInstanceId
|
|
470
|
-
|
|
471
460
|
@property
|
|
472
461
|
def DeviceVirtualGroupName(self):
|
|
473
462
|
"""必填,终端自定义分组名
|
|
@@ -479,6 +468,17 @@ class CreateDeviceVirtualGroupRequest(AbstractModel):
|
|
|
479
468
|
def DeviceVirtualGroupName(self, DeviceVirtualGroupName):
|
|
480
469
|
self._DeviceVirtualGroupName = DeviceVirtualGroupName
|
|
481
470
|
|
|
471
|
+
@property
|
|
472
|
+
def DomainInstanceId(self):
|
|
473
|
+
"""管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
|
|
474
|
+
:rtype: str
|
|
475
|
+
"""
|
|
476
|
+
return self._DomainInstanceId
|
|
477
|
+
|
|
478
|
+
@DomainInstanceId.setter
|
|
479
|
+
def DomainInstanceId(self, DomainInstanceId):
|
|
480
|
+
self._DomainInstanceId = DomainInstanceId
|
|
481
|
+
|
|
482
482
|
@property
|
|
483
483
|
def Description(self):
|
|
484
484
|
"""详情
|
|
@@ -492,7 +492,7 @@ class CreateDeviceVirtualGroupRequest(AbstractModel):
|
|
|
492
492
|
|
|
493
493
|
@property
|
|
494
494
|
def OsType(self):
|
|
495
|
-
"""
|
|
495
|
+
"""系统类型(0: win,1:linux,2: mac,4:android,5:ios ; 默认值0)(只支持32位)
|
|
496
496
|
:rtype: int
|
|
497
497
|
"""
|
|
498
498
|
return self._OsType
|
|
@@ -503,7 +503,7 @@ class CreateDeviceVirtualGroupRequest(AbstractModel):
|
|
|
503
503
|
|
|
504
504
|
@property
|
|
505
505
|
def TimeType(self):
|
|
506
|
-
"""
|
|
506
|
+
"""分组类型(0:手动分组;非0为自动划分分组;具体枚举值为:1:自动每小时划分分组、2:自动每天划分分组、3:自定义时间划分分组; 默认值0)(只支持32位)
|
|
507
507
|
:rtype: int
|
|
508
508
|
"""
|
|
509
509
|
return self._TimeType
|
|
@@ -536,8 +536,8 @@ class CreateDeviceVirtualGroupRequest(AbstractModel):
|
|
|
536
536
|
|
|
537
537
|
|
|
538
538
|
def _deserialize(self, params):
|
|
539
|
-
self._DomainInstanceId = params.get("DomainInstanceId")
|
|
540
539
|
self._DeviceVirtualGroupName = params.get("DeviceVirtualGroupName")
|
|
540
|
+
self._DomainInstanceId = params.get("DomainInstanceId")
|
|
541
541
|
self._Description = params.get("Description")
|
|
542
542
|
self._OsType = params.get("OsType")
|
|
543
543
|
self._TimeType = params.get("TimeType")
|
|
@@ -643,13 +643,27 @@ class CreatePrivilegeCodeRequest(AbstractModel):
|
|
|
643
643
|
|
|
644
644
|
def __init__(self):
|
|
645
645
|
r"""
|
|
646
|
-
:param _DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
|
|
647
|
-
:type DomainInstanceId: str
|
|
648
646
|
:param _Mid: 必填;设备唯一标识符;
|
|
649
647
|
:type Mid: str
|
|
648
|
+
:param _DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
|
|
649
|
+
:type DomainInstanceId: str
|
|
650
|
+
:param _OsType: 系统类型(0: win,1:linux,2: mac,4:android,5:ios );默认值0
|
|
651
|
+
:type OsType: int
|
|
650
652
|
"""
|
|
651
|
-
self._DomainInstanceId = None
|
|
652
653
|
self._Mid = None
|
|
654
|
+
self._DomainInstanceId = None
|
|
655
|
+
self._OsType = None
|
|
656
|
+
|
|
657
|
+
@property
|
|
658
|
+
def Mid(self):
|
|
659
|
+
"""必填;设备唯一标识符;
|
|
660
|
+
:rtype: str
|
|
661
|
+
"""
|
|
662
|
+
return self._Mid
|
|
663
|
+
|
|
664
|
+
@Mid.setter
|
|
665
|
+
def Mid(self, Mid):
|
|
666
|
+
self._Mid = Mid
|
|
653
667
|
|
|
654
668
|
@property
|
|
655
669
|
def DomainInstanceId(self):
|
|
@@ -663,20 +677,21 @@ class CreatePrivilegeCodeRequest(AbstractModel):
|
|
|
663
677
|
self._DomainInstanceId = DomainInstanceId
|
|
664
678
|
|
|
665
679
|
@property
|
|
666
|
-
def
|
|
667
|
-
"""
|
|
668
|
-
:rtype:
|
|
680
|
+
def OsType(self):
|
|
681
|
+
"""系统类型(0: win,1:linux,2: mac,4:android,5:ios );默认值0
|
|
682
|
+
:rtype: int
|
|
669
683
|
"""
|
|
670
|
-
return self.
|
|
684
|
+
return self._OsType
|
|
671
685
|
|
|
672
|
-
@
|
|
673
|
-
def
|
|
674
|
-
self.
|
|
686
|
+
@OsType.setter
|
|
687
|
+
def OsType(self, OsType):
|
|
688
|
+
self._OsType = OsType
|
|
675
689
|
|
|
676
690
|
|
|
677
691
|
def _deserialize(self, params):
|
|
678
|
-
self._DomainInstanceId = params.get("DomainInstanceId")
|
|
679
692
|
self._Mid = params.get("Mid")
|
|
693
|
+
self._DomainInstanceId = params.get("DomainInstanceId")
|
|
694
|
+
self._OsType = params.get("OsType")
|
|
680
695
|
memeber_set = set(params.keys())
|
|
681
696
|
for name, value in vars(self).items():
|
|
682
697
|
property_name = name[1:]
|
|
@@ -695,7 +710,6 @@ class CreatePrivilegeCodeResponse(AbstractModel):
|
|
|
695
710
|
def __init__(self):
|
|
696
711
|
r"""
|
|
697
712
|
:param _Data: 业务响应数据
|
|
698
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
699
713
|
:type Data: :class:`tencentcloud.ioa.v20220601.models.CreatePrivilegeCodeRspData`
|
|
700
714
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
701
715
|
:type RequestId: str
|
|
@@ -706,7 +720,6 @@ class CreatePrivilegeCodeResponse(AbstractModel):
|
|
|
706
720
|
@property
|
|
707
721
|
def Data(self):
|
|
708
722
|
"""业务响应数据
|
|
709
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
710
723
|
:rtype: :class:`tencentcloud.ioa.v20220601.models.CreatePrivilegeCodeRspData`
|
|
711
724
|
"""
|
|
712
725
|
return self._Data
|
|
@@ -1502,6 +1515,8 @@ class DescribeDeviceHardwareInfoItem(AbstractModel):
|
|
|
1502
1515
|
:type HardDiskSize: str
|
|
1503
1516
|
:param _Monitor: 显示器品牌型号
|
|
1504
1517
|
:type Monitor: str
|
|
1518
|
+
:param _RemarkName: 终端备注名
|
|
1519
|
+
:type RemarkName: str
|
|
1505
1520
|
"""
|
|
1506
1521
|
self._Id = None
|
|
1507
1522
|
self._Mid = None
|
|
@@ -1519,6 +1534,7 @@ class DescribeDeviceHardwareInfoItem(AbstractModel):
|
|
|
1519
1534
|
self._Memory = None
|
|
1520
1535
|
self._HardDiskSize = None
|
|
1521
1536
|
self._Monitor = None
|
|
1537
|
+
self._RemarkName = None
|
|
1522
1538
|
|
|
1523
1539
|
@property
|
|
1524
1540
|
def Id(self):
|
|
@@ -1696,6 +1712,17 @@ class DescribeDeviceHardwareInfoItem(AbstractModel):
|
|
|
1696
1712
|
def Monitor(self, Monitor):
|
|
1697
1713
|
self._Monitor = Monitor
|
|
1698
1714
|
|
|
1715
|
+
@property
|
|
1716
|
+
def RemarkName(self):
|
|
1717
|
+
"""终端备注名
|
|
1718
|
+
:rtype: str
|
|
1719
|
+
"""
|
|
1720
|
+
return self._RemarkName
|
|
1721
|
+
|
|
1722
|
+
@RemarkName.setter
|
|
1723
|
+
def RemarkName(self, RemarkName):
|
|
1724
|
+
self._RemarkName = RemarkName
|
|
1725
|
+
|
|
1699
1726
|
|
|
1700
1727
|
def _deserialize(self, params):
|
|
1701
1728
|
self._Id = params.get("Id")
|
|
@@ -1714,6 +1741,7 @@ class DescribeDeviceHardwareInfoItem(AbstractModel):
|
|
|
1714
1741
|
self._Memory = params.get("Memory")
|
|
1715
1742
|
self._HardDiskSize = params.get("HardDiskSize")
|
|
1716
1743
|
self._Monitor = params.get("Monitor")
|
|
1744
|
+
self._RemarkName = params.get("RemarkName")
|
|
1717
1745
|
memeber_set = set(params.keys())
|
|
1718
1746
|
for name, value in vars(self).items():
|
|
1719
1747
|
property_name = name[1:]
|
|
@@ -5789,23 +5817,34 @@ class ModifyVirtualDeviceGroupsRequest(AbstractModel):
|
|
|
5789
5817
|
|
|
5790
5818
|
def __init__(self):
|
|
5791
5819
|
r"""
|
|
5820
|
+
:param _DeviceList: 必填,操作的设备列表数据
|
|
5821
|
+
:type DeviceList: list of ModifyVirtualDeviceGroupsReqItem
|
|
5792
5822
|
:param _DomainInstanceId: 管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
|
|
5793
5823
|
:type DomainInstanceId: str
|
|
5794
5824
|
:param _DeviceVirtualGroupId: 添加到的终端自定义分组id。和DeviceVirtualGroupIds互斥,必填其一,优先使用本参数
|
|
5795
5825
|
:type DeviceVirtualGroupId: int
|
|
5796
|
-
:param _DeviceList: 必填,操作的设备列表数据
|
|
5797
|
-
:type DeviceList: list of ModifyVirtualDeviceGroupsReqItem
|
|
5798
5826
|
:param _DeviceVirtualGroupIds: 要添加的终端自定义分组id列表
|
|
5799
5827
|
:type DeviceVirtualGroupIds: list of int
|
|
5800
|
-
:param _OsType:
|
|
5828
|
+
:param _OsType: 系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0)
|
|
5801
5829
|
:type OsType: int
|
|
5802
5830
|
"""
|
|
5831
|
+
self._DeviceList = None
|
|
5803
5832
|
self._DomainInstanceId = None
|
|
5804
5833
|
self._DeviceVirtualGroupId = None
|
|
5805
|
-
self._DeviceList = None
|
|
5806
5834
|
self._DeviceVirtualGroupIds = None
|
|
5807
5835
|
self._OsType = None
|
|
5808
5836
|
|
|
5837
|
+
@property
|
|
5838
|
+
def DeviceList(self):
|
|
5839
|
+
"""必填,操作的设备列表数据
|
|
5840
|
+
:rtype: list of ModifyVirtualDeviceGroupsReqItem
|
|
5841
|
+
"""
|
|
5842
|
+
return self._DeviceList
|
|
5843
|
+
|
|
5844
|
+
@DeviceList.setter
|
|
5845
|
+
def DeviceList(self, DeviceList):
|
|
5846
|
+
self._DeviceList = DeviceList
|
|
5847
|
+
|
|
5809
5848
|
@property
|
|
5810
5849
|
def DomainInstanceId(self):
|
|
5811
5850
|
"""管理域实例ID,用于CAM管理域权限分配。若企业未进行管理域的划分,可直接传入根域"1",此时表示针对当前企业的全部设备和账号进行接口CRUD,具体CRUD的影响范围限制于相应接口的入参。
|
|
@@ -5828,17 +5867,6 @@ class ModifyVirtualDeviceGroupsRequest(AbstractModel):
|
|
|
5828
5867
|
def DeviceVirtualGroupId(self, DeviceVirtualGroupId):
|
|
5829
5868
|
self._DeviceVirtualGroupId = DeviceVirtualGroupId
|
|
5830
5869
|
|
|
5831
|
-
@property
|
|
5832
|
-
def DeviceList(self):
|
|
5833
|
-
"""必填,操作的设备列表数据
|
|
5834
|
-
:rtype: list of ModifyVirtualDeviceGroupsReqItem
|
|
5835
|
-
"""
|
|
5836
|
-
return self._DeviceList
|
|
5837
|
-
|
|
5838
|
-
@DeviceList.setter
|
|
5839
|
-
def DeviceList(self, DeviceList):
|
|
5840
|
-
self._DeviceList = DeviceList
|
|
5841
|
-
|
|
5842
5870
|
@property
|
|
5843
5871
|
def DeviceVirtualGroupIds(self):
|
|
5844
5872
|
"""要添加的终端自定义分组id列表
|
|
@@ -5852,7 +5880,7 @@ class ModifyVirtualDeviceGroupsRequest(AbstractModel):
|
|
|
5852
5880
|
|
|
5853
5881
|
@property
|
|
5854
5882
|
def OsType(self):
|
|
5855
|
-
"""
|
|
5883
|
+
"""系统类型(0: win,1:linux,2: mac,4:android,5:ios 默认值0)
|
|
5856
5884
|
:rtype: int
|
|
5857
5885
|
"""
|
|
5858
5886
|
return self._OsType
|
|
@@ -5863,14 +5891,14 @@ class ModifyVirtualDeviceGroupsRequest(AbstractModel):
|
|
|
5863
5891
|
|
|
5864
5892
|
|
|
5865
5893
|
def _deserialize(self, params):
|
|
5866
|
-
self._DomainInstanceId = params.get("DomainInstanceId")
|
|
5867
|
-
self._DeviceVirtualGroupId = params.get("DeviceVirtualGroupId")
|
|
5868
5894
|
if params.get("DeviceList") is not None:
|
|
5869
5895
|
self._DeviceList = []
|
|
5870
5896
|
for item in params.get("DeviceList"):
|
|
5871
5897
|
obj = ModifyVirtualDeviceGroupsReqItem()
|
|
5872
5898
|
obj._deserialize(item)
|
|
5873
5899
|
self._DeviceList.append(obj)
|
|
5900
|
+
self._DomainInstanceId = params.get("DomainInstanceId")
|
|
5901
|
+
self._DeviceVirtualGroupId = params.get("DeviceVirtualGroupId")
|
|
5874
5902
|
self._DeviceVirtualGroupIds = params.get("DeviceVirtualGroupIds")
|
|
5875
5903
|
self._OsType = params.get("OsType")
|
|
5876
5904
|
memeber_set = set(params.keys())
|