tencentcloud-sdk-python-cwp 3.0.1001__tar.gz → 3.0.1005__tar.gz
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-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/setup.py +1 -1
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/tencentcloud/cwp/v20180228/models.py +123 -1
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/tencentcloud_sdk_python_cwp.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cwp-3.0.1005/tencentcloud_sdk_python_cwp.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cwp-3.0.1001/tencentcloud_sdk_python_cwp.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/README.rst +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/tencentcloud/cwp/__init__.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/tencentcloud/cwp/v20180228/__init__.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/tencentcloud/cwp/v20180228/cwp_client.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/tencentcloud/cwp/v20180228/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/tencentcloud_sdk_python_cwp.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/tencentcloud_sdk_python_cwp.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1001 → tencentcloud-sdk-python-cwp-3.0.1005}/tencentcloud_sdk_python_cwp.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-cwp',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1005"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cwp SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -16107,6 +16107,93 @@ class CreateWhiteListOrderRequest(AbstractModel):
|
|
|
16107
16107
|
|
|
16108
16108
|
"""
|
|
16109
16109
|
|
|
16110
|
+
def __init__(self):
|
|
16111
|
+
r"""
|
|
16112
|
+
:param _LicenseType: 授权类型
|
|
16113
|
+
:type LicenseType: int
|
|
16114
|
+
:param _LicenseNum: 授权数量,最小为1 最大99999
|
|
16115
|
+
:type LicenseNum: int
|
|
16116
|
+
:param _Deadline: 到期时间,最小为1
|
|
16117
|
+
:type Deadline: int
|
|
16118
|
+
:param _RuleName: 规则名称,大资产中心:asset_center
|
|
16119
|
+
:type RuleName: str
|
|
16120
|
+
:param _RegionId: 地域, 1 广州 9新加坡, 默认为 1. 非必要情况不要选9
|
|
16121
|
+
:type RegionId: int
|
|
16122
|
+
:param _ExtraParam: 额外参数,json字符串,包含ResourceId 资源ID,LicenseType 授权类型
|
|
16123
|
+
:type ExtraParam: str
|
|
16124
|
+
"""
|
|
16125
|
+
self._LicenseType = None
|
|
16126
|
+
self._LicenseNum = None
|
|
16127
|
+
self._Deadline = None
|
|
16128
|
+
self._RuleName = None
|
|
16129
|
+
self._RegionId = None
|
|
16130
|
+
self._ExtraParam = None
|
|
16131
|
+
|
|
16132
|
+
@property
|
|
16133
|
+
def LicenseType(self):
|
|
16134
|
+
return self._LicenseType
|
|
16135
|
+
|
|
16136
|
+
@LicenseType.setter
|
|
16137
|
+
def LicenseType(self, LicenseType):
|
|
16138
|
+
self._LicenseType = LicenseType
|
|
16139
|
+
|
|
16140
|
+
@property
|
|
16141
|
+
def LicenseNum(self):
|
|
16142
|
+
return self._LicenseNum
|
|
16143
|
+
|
|
16144
|
+
@LicenseNum.setter
|
|
16145
|
+
def LicenseNum(self, LicenseNum):
|
|
16146
|
+
self._LicenseNum = LicenseNum
|
|
16147
|
+
|
|
16148
|
+
@property
|
|
16149
|
+
def Deadline(self):
|
|
16150
|
+
return self._Deadline
|
|
16151
|
+
|
|
16152
|
+
@Deadline.setter
|
|
16153
|
+
def Deadline(self, Deadline):
|
|
16154
|
+
self._Deadline = Deadline
|
|
16155
|
+
|
|
16156
|
+
@property
|
|
16157
|
+
def RuleName(self):
|
|
16158
|
+
return self._RuleName
|
|
16159
|
+
|
|
16160
|
+
@RuleName.setter
|
|
16161
|
+
def RuleName(self, RuleName):
|
|
16162
|
+
self._RuleName = RuleName
|
|
16163
|
+
|
|
16164
|
+
@property
|
|
16165
|
+
def RegionId(self):
|
|
16166
|
+
return self._RegionId
|
|
16167
|
+
|
|
16168
|
+
@RegionId.setter
|
|
16169
|
+
def RegionId(self, RegionId):
|
|
16170
|
+
self._RegionId = RegionId
|
|
16171
|
+
|
|
16172
|
+
@property
|
|
16173
|
+
def ExtraParam(self):
|
|
16174
|
+
return self._ExtraParam
|
|
16175
|
+
|
|
16176
|
+
@ExtraParam.setter
|
|
16177
|
+
def ExtraParam(self, ExtraParam):
|
|
16178
|
+
self._ExtraParam = ExtraParam
|
|
16179
|
+
|
|
16180
|
+
|
|
16181
|
+
def _deserialize(self, params):
|
|
16182
|
+
self._LicenseType = params.get("LicenseType")
|
|
16183
|
+
self._LicenseNum = params.get("LicenseNum")
|
|
16184
|
+
self._Deadline = params.get("Deadline")
|
|
16185
|
+
self._RuleName = params.get("RuleName")
|
|
16186
|
+
self._RegionId = params.get("RegionId")
|
|
16187
|
+
self._ExtraParam = params.get("ExtraParam")
|
|
16188
|
+
memeber_set = set(params.keys())
|
|
16189
|
+
for name, value in vars(self).items():
|
|
16190
|
+
property_name = name[1:]
|
|
16191
|
+
if property_name in memeber_set:
|
|
16192
|
+
memeber_set.remove(property_name)
|
|
16193
|
+
if len(memeber_set) > 0:
|
|
16194
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
16195
|
+
|
|
16196
|
+
|
|
16110
16197
|
|
|
16111
16198
|
class CreateWhiteListOrderResponse(AbstractModel):
|
|
16112
16199
|
"""CreateWhiteListOrder返回参数结构体
|
|
@@ -21857,7 +21944,15 @@ class DescribeAssetMachineListRequest(AbstractModel):
|
|
|
21857
21944
|
def __init__(self):
|
|
21858
21945
|
r"""
|
|
21859
21946
|
:param _Filters: 过滤条件。
|
|
21860
|
-
<li>
|
|
21947
|
+
<li>MachineName 主机名称
|
|
21948
|
+
|
|
21949
|
+
|
|
21950
|
+
|
|
21951
|
+
InstanceID 实例ID
|
|
21952
|
+
|
|
21953
|
+
|
|
21954
|
+
|
|
21955
|
+
IP 内网IP或公网IP</li>
|
|
21861
21956
|
<li>OsType - String - 是否必填:否 - windows或linux</li>
|
|
21862
21957
|
<li>CpuLoad - Int - 是否必填:否 -
|
|
21863
21958
|
0: 未知 1: 低负载
|
|
@@ -36240,6 +36335,33 @@ class DescribeLicenseWhiteConfigRequest(AbstractModel):
|
|
|
36240
36335
|
|
|
36241
36336
|
"""
|
|
36242
36337
|
|
|
36338
|
+
def __init__(self):
|
|
36339
|
+
r"""
|
|
36340
|
+
:param _RuleName: 规则名称,例如: cwp
|
|
36341
|
+
:type RuleName: str
|
|
36342
|
+
"""
|
|
36343
|
+
self._RuleName = None
|
|
36344
|
+
|
|
36345
|
+
@property
|
|
36346
|
+
def RuleName(self):
|
|
36347
|
+
return self._RuleName
|
|
36348
|
+
|
|
36349
|
+
@RuleName.setter
|
|
36350
|
+
def RuleName(self, RuleName):
|
|
36351
|
+
self._RuleName = RuleName
|
|
36352
|
+
|
|
36353
|
+
|
|
36354
|
+
def _deserialize(self, params):
|
|
36355
|
+
self._RuleName = params.get("RuleName")
|
|
36356
|
+
memeber_set = set(params.keys())
|
|
36357
|
+
for name, value in vars(self).items():
|
|
36358
|
+
property_name = name[1:]
|
|
36359
|
+
if property_name in memeber_set:
|
|
36360
|
+
memeber_set.remove(property_name)
|
|
36361
|
+
if len(memeber_set) > 0:
|
|
36362
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
36363
|
+
|
|
36364
|
+
|
|
36243
36365
|
|
|
36244
36366
|
class DescribeLicenseWhiteConfigResponse(AbstractModel):
|
|
36245
36367
|
"""DescribeLicenseWhiteConfig返回参数结构体
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1005
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1001
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|