tencentcloud-sdk-python 3.0.1401__py2.py3-none-any.whl → 3.0.1403__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/bmvpc/v20180625/bmvpc_client.py +54 -18
- tencentcloud/cdb/v20170320/models.py +8 -8
- tencentcloud/cdn/v20180606/models.py +4 -4
- tencentcloud/cfs/v20190719/models.py +2 -2
- tencentcloud/cfw/v20190904/models.py +2 -2
- tencentcloud/ckafka/v20190819/errorcodes.py +1 -1
- tencentcloud/clb/v20180317/models.py +2 -2
- tencentcloud/csip/v20221121/csip_client.py +23 -0
- tencentcloud/csip/v20221121/models.py +767 -0
- tencentcloud/domain/v20180808/errorcodes.py +3 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -0
- tencentcloud/ess/v20201111/models.py +55 -6
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -0
- tencentcloud/essbasic/v20210526/models.py +49 -12
- tencentcloud/goosefs/v20220519/goosefs_client.py +23 -0
- tencentcloud/goosefs/v20220519/models.py +94 -0
- tencentcloud/gs/v20191118/gs_client.py +69 -0
- tencentcloud/gs/v20191118/models.py +408 -2
- tencentcloud/hunyuan/v20230901/models.py +119 -0
- tencentcloud/ioa/v20220601/errorcodes.py +3 -0
- tencentcloud/ioa/v20220601/ioa_client.py +46 -0
- tencentcloud/ioa/v20220601/models.py +669 -0
- tencentcloud/lke/v20231130/models.py +49 -4
- tencentcloud/ocr/v20181119/models.py +6 -6
- tencentcloud/tat/v20201028/errorcodes.py +3 -0
- tencentcloud/tke/v20180525/models.py +218 -0
- tencentcloud/tke/v20180525/tke_client.py +46 -0
- tencentcloud/trtc/v20190722/errorcodes.py +5 -2
- tencentcloud/trtc/v20190722/models.py +91 -4
- {tencentcloud_sdk_python-3.0.1401.dist-info → tencentcloud_sdk_python-3.0.1403.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1401.dist-info → tencentcloud_sdk_python-3.0.1403.dist-info}/RECORD +35 -35
- {tencentcloud_sdk_python-3.0.1401.dist-info → tencentcloud_sdk_python-3.0.1403.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1401.dist-info → tencentcloud_sdk_python-3.0.1403.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1401.dist-info → tencentcloud_sdk_python-3.0.1403.dist-info}/top_level.txt +0 -0
@@ -363,6 +363,70 @@ class CreateDLPFileDetectionTaskResponse(AbstractModel):
|
|
363
363
|
self._RequestId = params.get("RequestId")
|
364
364
|
|
365
365
|
|
366
|
+
class CreateDeviceTaskRequest(AbstractModel):
|
367
|
+
"""CreateDeviceTask请求参数结构体
|
368
|
+
|
369
|
+
"""
|
370
|
+
|
371
|
+
def __init__(self):
|
372
|
+
r"""
|
373
|
+
:param _Mid: 终端id
|
374
|
+
:type Mid: str
|
375
|
+
"""
|
376
|
+
self._Mid = None
|
377
|
+
|
378
|
+
@property
|
379
|
+
def Mid(self):
|
380
|
+
"""终端id
|
381
|
+
:rtype: str
|
382
|
+
"""
|
383
|
+
return self._Mid
|
384
|
+
|
385
|
+
@Mid.setter
|
386
|
+
def Mid(self, Mid):
|
387
|
+
self._Mid = Mid
|
388
|
+
|
389
|
+
|
390
|
+
def _deserialize(self, params):
|
391
|
+
self._Mid = params.get("Mid")
|
392
|
+
memeber_set = set(params.keys())
|
393
|
+
for name, value in vars(self).items():
|
394
|
+
property_name = name[1:]
|
395
|
+
if property_name in memeber_set:
|
396
|
+
memeber_set.remove(property_name)
|
397
|
+
if len(memeber_set) > 0:
|
398
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
399
|
+
|
400
|
+
|
401
|
+
|
402
|
+
class CreateDeviceTaskResponse(AbstractModel):
|
403
|
+
"""CreateDeviceTask返回参数结构体
|
404
|
+
|
405
|
+
"""
|
406
|
+
|
407
|
+
def __init__(self):
|
408
|
+
r"""
|
409
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
410
|
+
:type RequestId: str
|
411
|
+
"""
|
412
|
+
self._RequestId = None
|
413
|
+
|
414
|
+
@property
|
415
|
+
def RequestId(self):
|
416
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
417
|
+
:rtype: str
|
418
|
+
"""
|
419
|
+
return self._RequestId
|
420
|
+
|
421
|
+
@RequestId.setter
|
422
|
+
def RequestId(self, RequestId):
|
423
|
+
self._RequestId = RequestId
|
424
|
+
|
425
|
+
|
426
|
+
def _deserialize(self, params):
|
427
|
+
self._RequestId = params.get("RequestId")
|
428
|
+
|
429
|
+
|
366
430
|
class CreateDeviceVirtualGroupRequest(AbstractModel):
|
367
431
|
"""CreateDeviceVirtualGroup请求参数结构体
|
368
432
|
|
@@ -1831,6 +1895,191 @@ class DescribeDeviceHardwareInfoListRspData(AbstractModel):
|
|
1831
1895
|
|
1832
1896
|
|
1833
1897
|
|
1898
|
+
class DescribeDeviceInfoRequest(AbstractModel):
|
1899
|
+
"""DescribeDeviceInfo请求参数结构体
|
1900
|
+
|
1901
|
+
"""
|
1902
|
+
|
1903
|
+
def __init__(self):
|
1904
|
+
r"""
|
1905
|
+
:param _Mid: 终端id
|
1906
|
+
:type Mid: str
|
1907
|
+
:param _Type: 查询类型 process_list network_list service_list
|
1908
|
+
:type Type: str
|
1909
|
+
"""
|
1910
|
+
self._Mid = None
|
1911
|
+
self._Type = None
|
1912
|
+
|
1913
|
+
@property
|
1914
|
+
def Mid(self):
|
1915
|
+
"""终端id
|
1916
|
+
:rtype: str
|
1917
|
+
"""
|
1918
|
+
return self._Mid
|
1919
|
+
|
1920
|
+
@Mid.setter
|
1921
|
+
def Mid(self, Mid):
|
1922
|
+
self._Mid = Mid
|
1923
|
+
|
1924
|
+
@property
|
1925
|
+
def Type(self):
|
1926
|
+
"""查询类型 process_list network_list service_list
|
1927
|
+
:rtype: str
|
1928
|
+
"""
|
1929
|
+
return self._Type
|
1930
|
+
|
1931
|
+
@Type.setter
|
1932
|
+
def Type(self, Type):
|
1933
|
+
self._Type = Type
|
1934
|
+
|
1935
|
+
|
1936
|
+
def _deserialize(self, params):
|
1937
|
+
self._Mid = params.get("Mid")
|
1938
|
+
self._Type = params.get("Type")
|
1939
|
+
memeber_set = set(params.keys())
|
1940
|
+
for name, value in vars(self).items():
|
1941
|
+
property_name = name[1:]
|
1942
|
+
if property_name in memeber_set:
|
1943
|
+
memeber_set.remove(property_name)
|
1944
|
+
if len(memeber_set) > 0:
|
1945
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1946
|
+
|
1947
|
+
|
1948
|
+
|
1949
|
+
class DescribeDeviceInfoResponse(AbstractModel):
|
1950
|
+
"""DescribeDeviceInfo返回参数结构体
|
1951
|
+
|
1952
|
+
"""
|
1953
|
+
|
1954
|
+
def __init__(self):
|
1955
|
+
r"""
|
1956
|
+
:param _Data: 业务响应数据
|
1957
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1958
|
+
:type Data: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceInfoRspData`
|
1959
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1960
|
+
:type RequestId: str
|
1961
|
+
"""
|
1962
|
+
self._Data = None
|
1963
|
+
self._RequestId = None
|
1964
|
+
|
1965
|
+
@property
|
1966
|
+
def Data(self):
|
1967
|
+
"""业务响应数据
|
1968
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1969
|
+
:rtype: :class:`tencentcloud.ioa.v20220601.models.DescribeDeviceInfoRspData`
|
1970
|
+
"""
|
1971
|
+
return self._Data
|
1972
|
+
|
1973
|
+
@Data.setter
|
1974
|
+
def Data(self, Data):
|
1975
|
+
self._Data = Data
|
1976
|
+
|
1977
|
+
@property
|
1978
|
+
def RequestId(self):
|
1979
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1980
|
+
:rtype: str
|
1981
|
+
"""
|
1982
|
+
return self._RequestId
|
1983
|
+
|
1984
|
+
@RequestId.setter
|
1985
|
+
def RequestId(self, RequestId):
|
1986
|
+
self._RequestId = RequestId
|
1987
|
+
|
1988
|
+
|
1989
|
+
def _deserialize(self, params):
|
1990
|
+
if params.get("Data") is not None:
|
1991
|
+
self._Data = DescribeDeviceInfoRspData()
|
1992
|
+
self._Data._deserialize(params.get("Data"))
|
1993
|
+
self._RequestId = params.get("RequestId")
|
1994
|
+
|
1995
|
+
|
1996
|
+
class DescribeDeviceInfoRspData(AbstractModel):
|
1997
|
+
"""业务响应数据
|
1998
|
+
|
1999
|
+
"""
|
2000
|
+
|
2001
|
+
def __init__(self):
|
2002
|
+
r"""
|
2003
|
+
:param _ProcessList: 分页的具体数据对象
|
2004
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2005
|
+
:type ProcessList: list of DeviceProcessInfo
|
2006
|
+
:param _NetworkList: 分页的具体数据对象
|
2007
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2008
|
+
:type NetworkList: list of DeviceNetworkInfo
|
2009
|
+
:param _ServiceList: 分页的具体数据对象
|
2010
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2011
|
+
:type ServiceList: list of DeviceServiceInfo
|
2012
|
+
"""
|
2013
|
+
self._ProcessList = None
|
2014
|
+
self._NetworkList = None
|
2015
|
+
self._ServiceList = None
|
2016
|
+
|
2017
|
+
@property
|
2018
|
+
def ProcessList(self):
|
2019
|
+
"""分页的具体数据对象
|
2020
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2021
|
+
:rtype: list of DeviceProcessInfo
|
2022
|
+
"""
|
2023
|
+
return self._ProcessList
|
2024
|
+
|
2025
|
+
@ProcessList.setter
|
2026
|
+
def ProcessList(self, ProcessList):
|
2027
|
+
self._ProcessList = ProcessList
|
2028
|
+
|
2029
|
+
@property
|
2030
|
+
def NetworkList(self):
|
2031
|
+
"""分页的具体数据对象
|
2032
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2033
|
+
:rtype: list of DeviceNetworkInfo
|
2034
|
+
"""
|
2035
|
+
return self._NetworkList
|
2036
|
+
|
2037
|
+
@NetworkList.setter
|
2038
|
+
def NetworkList(self, NetworkList):
|
2039
|
+
self._NetworkList = NetworkList
|
2040
|
+
|
2041
|
+
@property
|
2042
|
+
def ServiceList(self):
|
2043
|
+
"""分页的具体数据对象
|
2044
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2045
|
+
:rtype: list of DeviceServiceInfo
|
2046
|
+
"""
|
2047
|
+
return self._ServiceList
|
2048
|
+
|
2049
|
+
@ServiceList.setter
|
2050
|
+
def ServiceList(self, ServiceList):
|
2051
|
+
self._ServiceList = ServiceList
|
2052
|
+
|
2053
|
+
|
2054
|
+
def _deserialize(self, params):
|
2055
|
+
if params.get("ProcessList") is not None:
|
2056
|
+
self._ProcessList = []
|
2057
|
+
for item in params.get("ProcessList"):
|
2058
|
+
obj = DeviceProcessInfo()
|
2059
|
+
obj._deserialize(item)
|
2060
|
+
self._ProcessList.append(obj)
|
2061
|
+
if params.get("NetworkList") is not None:
|
2062
|
+
self._NetworkList = []
|
2063
|
+
for item in params.get("NetworkList"):
|
2064
|
+
obj = DeviceNetworkInfo()
|
2065
|
+
obj._deserialize(item)
|
2066
|
+
self._NetworkList.append(obj)
|
2067
|
+
if params.get("ServiceList") is not None:
|
2068
|
+
self._ServiceList = []
|
2069
|
+
for item in params.get("ServiceList"):
|
2070
|
+
obj = DeviceServiceInfo()
|
2071
|
+
obj._deserialize(item)
|
2072
|
+
self._ServiceList.append(obj)
|
2073
|
+
memeber_set = set(params.keys())
|
2074
|
+
for name, value in vars(self).items():
|
2075
|
+
property_name = name[1:]
|
2076
|
+
if property_name in memeber_set:
|
2077
|
+
memeber_set.remove(property_name)
|
2078
|
+
if len(memeber_set) > 0:
|
2079
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
2080
|
+
|
2081
|
+
|
2082
|
+
|
1834
2083
|
class DescribeDevicesPageRsp(AbstractModel):
|
1835
2084
|
"""分页的data数据
|
1836
2085
|
|
@@ -4091,6 +4340,426 @@ class DeviceDetail(AbstractModel):
|
|
4091
4340
|
|
4092
4341
|
|
4093
4342
|
|
4343
|
+
class DeviceNetworkInfo(AbstractModel):
|
4344
|
+
"""分页的具体数据对象
|
4345
|
+
|
4346
|
+
"""
|
4347
|
+
|
4348
|
+
def __init__(self):
|
4349
|
+
r"""
|
4350
|
+
:param _LocalAddr: 本地地址
|
4351
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4352
|
+
:type LocalAddr: str
|
4353
|
+
:param _LocalPort: 本地端口
|
4354
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4355
|
+
:type LocalPort: int
|
4356
|
+
:param _ProcessId: 进程id
|
4357
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4358
|
+
:type ProcessId: int
|
4359
|
+
:param _ProcessName: 进程名称
|
4360
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4361
|
+
:type ProcessName: str
|
4362
|
+
:param _Protocol: 协议
|
4363
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4364
|
+
:type Protocol: str
|
4365
|
+
:param _RemoteAddr: 远程地址
|
4366
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4367
|
+
:type RemoteAddr: str
|
4368
|
+
:param _RemotePort: 远程端口
|
4369
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4370
|
+
:type RemotePort: int
|
4371
|
+
:param _State: 状态
|
4372
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4373
|
+
:type State: int
|
4374
|
+
"""
|
4375
|
+
self._LocalAddr = None
|
4376
|
+
self._LocalPort = None
|
4377
|
+
self._ProcessId = None
|
4378
|
+
self._ProcessName = None
|
4379
|
+
self._Protocol = None
|
4380
|
+
self._RemoteAddr = None
|
4381
|
+
self._RemotePort = None
|
4382
|
+
self._State = None
|
4383
|
+
|
4384
|
+
@property
|
4385
|
+
def LocalAddr(self):
|
4386
|
+
"""本地地址
|
4387
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4388
|
+
:rtype: str
|
4389
|
+
"""
|
4390
|
+
return self._LocalAddr
|
4391
|
+
|
4392
|
+
@LocalAddr.setter
|
4393
|
+
def LocalAddr(self, LocalAddr):
|
4394
|
+
self._LocalAddr = LocalAddr
|
4395
|
+
|
4396
|
+
@property
|
4397
|
+
def LocalPort(self):
|
4398
|
+
"""本地端口
|
4399
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4400
|
+
:rtype: int
|
4401
|
+
"""
|
4402
|
+
return self._LocalPort
|
4403
|
+
|
4404
|
+
@LocalPort.setter
|
4405
|
+
def LocalPort(self, LocalPort):
|
4406
|
+
self._LocalPort = LocalPort
|
4407
|
+
|
4408
|
+
@property
|
4409
|
+
def ProcessId(self):
|
4410
|
+
"""进程id
|
4411
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4412
|
+
:rtype: int
|
4413
|
+
"""
|
4414
|
+
return self._ProcessId
|
4415
|
+
|
4416
|
+
@ProcessId.setter
|
4417
|
+
def ProcessId(self, ProcessId):
|
4418
|
+
self._ProcessId = ProcessId
|
4419
|
+
|
4420
|
+
@property
|
4421
|
+
def ProcessName(self):
|
4422
|
+
"""进程名称
|
4423
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4424
|
+
:rtype: str
|
4425
|
+
"""
|
4426
|
+
return self._ProcessName
|
4427
|
+
|
4428
|
+
@ProcessName.setter
|
4429
|
+
def ProcessName(self, ProcessName):
|
4430
|
+
self._ProcessName = ProcessName
|
4431
|
+
|
4432
|
+
@property
|
4433
|
+
def Protocol(self):
|
4434
|
+
"""协议
|
4435
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4436
|
+
:rtype: str
|
4437
|
+
"""
|
4438
|
+
return self._Protocol
|
4439
|
+
|
4440
|
+
@Protocol.setter
|
4441
|
+
def Protocol(self, Protocol):
|
4442
|
+
self._Protocol = Protocol
|
4443
|
+
|
4444
|
+
@property
|
4445
|
+
def RemoteAddr(self):
|
4446
|
+
"""远程地址
|
4447
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4448
|
+
:rtype: str
|
4449
|
+
"""
|
4450
|
+
return self._RemoteAddr
|
4451
|
+
|
4452
|
+
@RemoteAddr.setter
|
4453
|
+
def RemoteAddr(self, RemoteAddr):
|
4454
|
+
self._RemoteAddr = RemoteAddr
|
4455
|
+
|
4456
|
+
@property
|
4457
|
+
def RemotePort(self):
|
4458
|
+
"""远程端口
|
4459
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4460
|
+
:rtype: int
|
4461
|
+
"""
|
4462
|
+
return self._RemotePort
|
4463
|
+
|
4464
|
+
@RemotePort.setter
|
4465
|
+
def RemotePort(self, RemotePort):
|
4466
|
+
self._RemotePort = RemotePort
|
4467
|
+
|
4468
|
+
@property
|
4469
|
+
def State(self):
|
4470
|
+
"""状态
|
4471
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4472
|
+
:rtype: int
|
4473
|
+
"""
|
4474
|
+
return self._State
|
4475
|
+
|
4476
|
+
@State.setter
|
4477
|
+
def State(self, State):
|
4478
|
+
self._State = State
|
4479
|
+
|
4480
|
+
|
4481
|
+
def _deserialize(self, params):
|
4482
|
+
self._LocalAddr = params.get("LocalAddr")
|
4483
|
+
self._LocalPort = params.get("LocalPort")
|
4484
|
+
self._ProcessId = params.get("ProcessId")
|
4485
|
+
self._ProcessName = params.get("ProcessName")
|
4486
|
+
self._Protocol = params.get("Protocol")
|
4487
|
+
self._RemoteAddr = params.get("RemoteAddr")
|
4488
|
+
self._RemotePort = params.get("RemotePort")
|
4489
|
+
self._State = params.get("State")
|
4490
|
+
memeber_set = set(params.keys())
|
4491
|
+
for name, value in vars(self).items():
|
4492
|
+
property_name = name[1:]
|
4493
|
+
if property_name in memeber_set:
|
4494
|
+
memeber_set.remove(property_name)
|
4495
|
+
if len(memeber_set) > 0:
|
4496
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
4497
|
+
|
4498
|
+
|
4499
|
+
|
4500
|
+
class DeviceProcessInfo(AbstractModel):
|
4501
|
+
"""分页的具体数据对象
|
4502
|
+
|
4503
|
+
"""
|
4504
|
+
|
4505
|
+
def __init__(self):
|
4506
|
+
r"""
|
4507
|
+
:param _CmdLine: 命令行
|
4508
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4509
|
+
:type CmdLine: str
|
4510
|
+
:param _Memory: 内存
|
4511
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4512
|
+
:type Memory: str
|
4513
|
+
:param _Name: 名称
|
4514
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4515
|
+
:type Name: str
|
4516
|
+
:param _Path: 路径
|
4517
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4518
|
+
:type Path: str
|
4519
|
+
:param _ProcessId: 进程id
|
4520
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4521
|
+
:type ProcessId: int
|
4522
|
+
:param _User: 启动用户
|
4523
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4524
|
+
:type User: str
|
4525
|
+
"""
|
4526
|
+
self._CmdLine = None
|
4527
|
+
self._Memory = None
|
4528
|
+
self._Name = None
|
4529
|
+
self._Path = None
|
4530
|
+
self._ProcessId = None
|
4531
|
+
self._User = None
|
4532
|
+
|
4533
|
+
@property
|
4534
|
+
def CmdLine(self):
|
4535
|
+
"""命令行
|
4536
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4537
|
+
:rtype: str
|
4538
|
+
"""
|
4539
|
+
return self._CmdLine
|
4540
|
+
|
4541
|
+
@CmdLine.setter
|
4542
|
+
def CmdLine(self, CmdLine):
|
4543
|
+
self._CmdLine = CmdLine
|
4544
|
+
|
4545
|
+
@property
|
4546
|
+
def Memory(self):
|
4547
|
+
"""内存
|
4548
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4549
|
+
:rtype: str
|
4550
|
+
"""
|
4551
|
+
return self._Memory
|
4552
|
+
|
4553
|
+
@Memory.setter
|
4554
|
+
def Memory(self, Memory):
|
4555
|
+
self._Memory = Memory
|
4556
|
+
|
4557
|
+
@property
|
4558
|
+
def Name(self):
|
4559
|
+
"""名称
|
4560
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4561
|
+
:rtype: str
|
4562
|
+
"""
|
4563
|
+
return self._Name
|
4564
|
+
|
4565
|
+
@Name.setter
|
4566
|
+
def Name(self, Name):
|
4567
|
+
self._Name = Name
|
4568
|
+
|
4569
|
+
@property
|
4570
|
+
def Path(self):
|
4571
|
+
"""路径
|
4572
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4573
|
+
:rtype: str
|
4574
|
+
"""
|
4575
|
+
return self._Path
|
4576
|
+
|
4577
|
+
@Path.setter
|
4578
|
+
def Path(self, Path):
|
4579
|
+
self._Path = Path
|
4580
|
+
|
4581
|
+
@property
|
4582
|
+
def ProcessId(self):
|
4583
|
+
"""进程id
|
4584
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4585
|
+
:rtype: int
|
4586
|
+
"""
|
4587
|
+
return self._ProcessId
|
4588
|
+
|
4589
|
+
@ProcessId.setter
|
4590
|
+
def ProcessId(self, ProcessId):
|
4591
|
+
self._ProcessId = ProcessId
|
4592
|
+
|
4593
|
+
@property
|
4594
|
+
def User(self):
|
4595
|
+
"""启动用户
|
4596
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4597
|
+
:rtype: str
|
4598
|
+
"""
|
4599
|
+
return self._User
|
4600
|
+
|
4601
|
+
@User.setter
|
4602
|
+
def User(self, User):
|
4603
|
+
self._User = User
|
4604
|
+
|
4605
|
+
|
4606
|
+
def _deserialize(self, params):
|
4607
|
+
self._CmdLine = params.get("CmdLine")
|
4608
|
+
self._Memory = params.get("Memory")
|
4609
|
+
self._Name = params.get("Name")
|
4610
|
+
self._Path = params.get("Path")
|
4611
|
+
self._ProcessId = params.get("ProcessId")
|
4612
|
+
self._User = params.get("User")
|
4613
|
+
memeber_set = set(params.keys())
|
4614
|
+
for name, value in vars(self).items():
|
4615
|
+
property_name = name[1:]
|
4616
|
+
if property_name in memeber_set:
|
4617
|
+
memeber_set.remove(property_name)
|
4618
|
+
if len(memeber_set) > 0:
|
4619
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
4620
|
+
|
4621
|
+
|
4622
|
+
|
4623
|
+
class DeviceServiceInfo(AbstractModel):
|
4624
|
+
"""分页的具体数据对象
|
4625
|
+
|
4626
|
+
"""
|
4627
|
+
|
4628
|
+
def __init__(self):
|
4629
|
+
r"""
|
4630
|
+
:param _CmdLine: 命令行
|
4631
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4632
|
+
:type CmdLine: str
|
4633
|
+
:param _Description: 内存
|
4634
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4635
|
+
:type Description: str
|
4636
|
+
:param _Name: 名称
|
4637
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4638
|
+
:type Name: str
|
4639
|
+
:param _ProcessId: 进程id
|
4640
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4641
|
+
:type ProcessId: int
|
4642
|
+
:param _StartType: 启动类型
|
4643
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4644
|
+
:type StartType: int
|
4645
|
+
:param _State: 状态
|
4646
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4647
|
+
:type State: int
|
4648
|
+
:param _User: 启动用户
|
4649
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4650
|
+
:type User: str
|
4651
|
+
"""
|
4652
|
+
self._CmdLine = None
|
4653
|
+
self._Description = None
|
4654
|
+
self._Name = None
|
4655
|
+
self._ProcessId = None
|
4656
|
+
self._StartType = None
|
4657
|
+
self._State = None
|
4658
|
+
self._User = None
|
4659
|
+
|
4660
|
+
@property
|
4661
|
+
def CmdLine(self):
|
4662
|
+
"""命令行
|
4663
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4664
|
+
:rtype: str
|
4665
|
+
"""
|
4666
|
+
return self._CmdLine
|
4667
|
+
|
4668
|
+
@CmdLine.setter
|
4669
|
+
def CmdLine(self, CmdLine):
|
4670
|
+
self._CmdLine = CmdLine
|
4671
|
+
|
4672
|
+
@property
|
4673
|
+
def Description(self):
|
4674
|
+
"""内存
|
4675
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4676
|
+
:rtype: str
|
4677
|
+
"""
|
4678
|
+
return self._Description
|
4679
|
+
|
4680
|
+
@Description.setter
|
4681
|
+
def Description(self, Description):
|
4682
|
+
self._Description = Description
|
4683
|
+
|
4684
|
+
@property
|
4685
|
+
def Name(self):
|
4686
|
+
"""名称
|
4687
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4688
|
+
:rtype: str
|
4689
|
+
"""
|
4690
|
+
return self._Name
|
4691
|
+
|
4692
|
+
@Name.setter
|
4693
|
+
def Name(self, Name):
|
4694
|
+
self._Name = Name
|
4695
|
+
|
4696
|
+
@property
|
4697
|
+
def ProcessId(self):
|
4698
|
+
"""进程id
|
4699
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4700
|
+
:rtype: int
|
4701
|
+
"""
|
4702
|
+
return self._ProcessId
|
4703
|
+
|
4704
|
+
@ProcessId.setter
|
4705
|
+
def ProcessId(self, ProcessId):
|
4706
|
+
self._ProcessId = ProcessId
|
4707
|
+
|
4708
|
+
@property
|
4709
|
+
def StartType(self):
|
4710
|
+
"""启动类型
|
4711
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4712
|
+
:rtype: int
|
4713
|
+
"""
|
4714
|
+
return self._StartType
|
4715
|
+
|
4716
|
+
@StartType.setter
|
4717
|
+
def StartType(self, StartType):
|
4718
|
+
self._StartType = StartType
|
4719
|
+
|
4720
|
+
@property
|
4721
|
+
def State(self):
|
4722
|
+
"""状态
|
4723
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4724
|
+
:rtype: int
|
4725
|
+
"""
|
4726
|
+
return self._State
|
4727
|
+
|
4728
|
+
@State.setter
|
4729
|
+
def State(self, State):
|
4730
|
+
self._State = State
|
4731
|
+
|
4732
|
+
@property
|
4733
|
+
def User(self):
|
4734
|
+
"""启动用户
|
4735
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4736
|
+
:rtype: str
|
4737
|
+
"""
|
4738
|
+
return self._User
|
4739
|
+
|
4740
|
+
@User.setter
|
4741
|
+
def User(self, User):
|
4742
|
+
self._User = User
|
4743
|
+
|
4744
|
+
|
4745
|
+
def _deserialize(self, params):
|
4746
|
+
self._CmdLine = params.get("CmdLine")
|
4747
|
+
self._Description = params.get("Description")
|
4748
|
+
self._Name = params.get("Name")
|
4749
|
+
self._ProcessId = params.get("ProcessId")
|
4750
|
+
self._StartType = params.get("StartType")
|
4751
|
+
self._State = params.get("State")
|
4752
|
+
self._User = params.get("User")
|
4753
|
+
memeber_set = set(params.keys())
|
4754
|
+
for name, value in vars(self).items():
|
4755
|
+
property_name = name[1:]
|
4756
|
+
if property_name in memeber_set:
|
4757
|
+
memeber_set.remove(property_name)
|
4758
|
+
if len(memeber_set) > 0:
|
4759
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
4760
|
+
|
4761
|
+
|
4762
|
+
|
4094
4763
|
class Filter(AbstractModel):
|
4095
4764
|
"""Filters 条件过滤
|
4096
4765
|
|