tencentcloud-sdk-python-cwp 3.1.111__tar.gz → 3.1.112__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.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/setup.py +1 -1
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/tencentcloud/cwp/v20180228/models.py +111 -102
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/tencentcloud_sdk_python_cwp.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cwp-3.1.112/tencentcloud_sdk_python_cwp.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cwp-3.1.111/tencentcloud_sdk_python_cwp.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/README.rst +0 -0
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/tencentcloud/cwp/__init__.py +0 -0
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/tencentcloud/cwp/v20180228/__init__.py +0 -0
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/tencentcloud/cwp/v20180228/cwp_client.py +0 -0
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/tencentcloud/cwp/v20180228/cwp_client_async.py +0 -0
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/tencentcloud/cwp/v20180228/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/tencentcloud_sdk_python_cwp.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/tencentcloud_sdk_python_cwp.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cwp-3.1.111 → tencentcloud_sdk_python_cwp-3.1.112}/tencentcloud_sdk_python_cwp.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cwp
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.112
|
|
4
4
|
Summary: Tencent Cloud Cwp SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.112
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -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.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.112,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cwp SDK for Python',
|
|
@@ -127,14 +127,11 @@ class AddLoginWhiteListsRequest(AbstractModel):
|
|
|
127
127
|
|
|
128
128
|
def __init__(self):
|
|
129
129
|
r"""
|
|
130
|
-
:param _HostLoginWhiteObj:
|
|
130
|
+
:param _HostLoginWhiteObj: <p>异地登录白名单实体</p>
|
|
131
131
|
:type HostLoginWhiteObj: :class:`tencentcloud.cwp.v20180228.models.HostLoginWhiteObj`
|
|
132
|
-
:param _ProcessType:
|
|
133
|
-
"" -- 不操作
|
|
134
|
-
"All" -- 将符合此配置的所有事件记录加白
|
|
135
|
-
"Id" -- 将EventId对应的事件记录加白
|
|
132
|
+
:param _ProcessType: <p>事件同步处理方式:<br> "" -- 不操作<br> "All" -- 将符合此配置的所有事件记录加白<br> "Id" -- 将EventId对应的事件记录加白</p>
|
|
136
133
|
:type ProcessType: str
|
|
137
|
-
:param _EventId:
|
|
134
|
+
:param _EventId: <p>异地登录事件ID,当ProcessType为Id时此项必填</p>
|
|
138
135
|
:type EventId: int
|
|
139
136
|
"""
|
|
140
137
|
self._HostLoginWhiteObj = None
|
|
@@ -143,7 +140,7 @@ class AddLoginWhiteListsRequest(AbstractModel):
|
|
|
143
140
|
|
|
144
141
|
@property
|
|
145
142
|
def HostLoginWhiteObj(self):
|
|
146
|
-
r"""
|
|
143
|
+
r"""<p>异地登录白名单实体</p>
|
|
147
144
|
:rtype: :class:`tencentcloud.cwp.v20180228.models.HostLoginWhiteObj`
|
|
148
145
|
"""
|
|
149
146
|
return self._HostLoginWhiteObj
|
|
@@ -154,10 +151,7 @@ class AddLoginWhiteListsRequest(AbstractModel):
|
|
|
154
151
|
|
|
155
152
|
@property
|
|
156
153
|
def ProcessType(self):
|
|
157
|
-
r"""
|
|
158
|
-
"" -- 不操作
|
|
159
|
-
"All" -- 将符合此配置的所有事件记录加白
|
|
160
|
-
"Id" -- 将EventId对应的事件记录加白
|
|
154
|
+
r"""<p>事件同步处理方式:<br> "" -- 不操作<br> "All" -- 将符合此配置的所有事件记录加白<br> "Id" -- 将EventId对应的事件记录加白</p>
|
|
161
155
|
:rtype: str
|
|
162
156
|
"""
|
|
163
157
|
return self._ProcessType
|
|
@@ -168,7 +162,7 @@ class AddLoginWhiteListsRequest(AbstractModel):
|
|
|
168
162
|
|
|
169
163
|
@property
|
|
170
164
|
def EventId(self):
|
|
171
|
-
r"""
|
|
165
|
+
r"""<p>异地登录事件ID,当ProcessType为Id时此项必填</p>
|
|
172
166
|
:rtype: int
|
|
173
167
|
"""
|
|
174
168
|
return self._EventId
|
|
@@ -201,7 +195,7 @@ class AddLoginWhiteListsResponse(AbstractModel):
|
|
|
201
195
|
|
|
202
196
|
def __init__(self):
|
|
203
197
|
r"""
|
|
204
|
-
:param _DuplicateHosts:
|
|
198
|
+
:param _DuplicateHosts: <p>重复添加的提示列表</p>
|
|
205
199
|
:type DuplicateHosts: list of DuplicateHosts
|
|
206
200
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
207
201
|
:type RequestId: str
|
|
@@ -211,7 +205,7 @@ class AddLoginWhiteListsResponse(AbstractModel):
|
|
|
211
205
|
|
|
212
206
|
@property
|
|
213
207
|
def DuplicateHosts(self):
|
|
214
|
-
r"""
|
|
208
|
+
r"""<p>重复添加的提示列表</p>
|
|
215
209
|
:rtype: list of DuplicateHosts
|
|
216
210
|
"""
|
|
217
211
|
return self._DuplicateHosts
|
|
@@ -20329,14 +20323,14 @@ class DeleteLoginWhiteListRequest(AbstractModel):
|
|
|
20329
20323
|
|
|
20330
20324
|
def __init__(self):
|
|
20331
20325
|
r"""
|
|
20332
|
-
:param _Ids:
|
|
20326
|
+
:param _Ids: <p>白名单ID (最大 100 条)</p>
|
|
20333
20327
|
:type Ids: list of int non-negative
|
|
20334
20328
|
"""
|
|
20335
20329
|
self._Ids = None
|
|
20336
20330
|
|
|
20337
20331
|
@property
|
|
20338
20332
|
def Ids(self):
|
|
20339
|
-
r"""
|
|
20333
|
+
r"""<p>白名单ID (最大 100 条)</p>
|
|
20340
20334
|
:rtype: list of int non-negative
|
|
20341
20335
|
"""
|
|
20342
20336
|
return self._Ids
|
|
@@ -43077,11 +43071,11 @@ class DescribeLoginWhiteCombinedListRequest(AbstractModel):
|
|
|
43077
43071
|
|
|
43078
43072
|
def __init__(self):
|
|
43079
43073
|
r"""
|
|
43080
|
-
:param _Limit:
|
|
43074
|
+
:param _Limit: <p>需要返回的数量,默认为10,最大值为100</p>
|
|
43081
43075
|
:type Limit: int
|
|
43082
|
-
:param _Offset:
|
|
43076
|
+
:param _Offset: <p>偏移量,默认为0。</p>
|
|
43083
43077
|
:type Offset: int
|
|
43084
|
-
:param _Filters:
|
|
43078
|
+
:param _Filters: <p>过滤条件。<li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li><li>UserName - String - 是否必填:否 - 用户名筛选</li><li>SrcIP - String - 是否必填:否 - 来源IP筛选</li><li>Location - String - 是否必填:否 - 登录地筛选</li><li>ModifyBeginTime - String - 是否必填:否 - 按照修改时间段筛选,开始时间</li><li>ModifyEndTime - String - 是否必填:否 - 按照修改时间段筛选,结束时间</li></p>
|
|
43085
43079
|
:type Filters: list of Filter
|
|
43086
43080
|
"""
|
|
43087
43081
|
self._Limit = None
|
|
@@ -43090,7 +43084,7 @@ class DescribeLoginWhiteCombinedListRequest(AbstractModel):
|
|
|
43090
43084
|
|
|
43091
43085
|
@property
|
|
43092
43086
|
def Limit(self):
|
|
43093
|
-
r"""
|
|
43087
|
+
r"""<p>需要返回的数量,默认为10,最大值为100</p>
|
|
43094
43088
|
:rtype: int
|
|
43095
43089
|
"""
|
|
43096
43090
|
return self._Limit
|
|
@@ -43101,7 +43095,7 @@ class DescribeLoginWhiteCombinedListRequest(AbstractModel):
|
|
|
43101
43095
|
|
|
43102
43096
|
@property
|
|
43103
43097
|
def Offset(self):
|
|
43104
|
-
r"""
|
|
43098
|
+
r"""<p>偏移量,默认为0。</p>
|
|
43105
43099
|
:rtype: int
|
|
43106
43100
|
"""
|
|
43107
43101
|
return self._Offset
|
|
@@ -43112,7 +43106,7 @@ class DescribeLoginWhiteCombinedListRequest(AbstractModel):
|
|
|
43112
43106
|
|
|
43113
43107
|
@property
|
|
43114
43108
|
def Filters(self):
|
|
43115
|
-
r"""
|
|
43109
|
+
r"""<p>过滤条件。<li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li><li>UserName - String - 是否必填:否 - 用户名筛选</li><li>SrcIP - String - 是否必填:否 - 来源IP筛选</li><li>Location - String - 是否必填:否 - 登录地筛选</li><li>ModifyBeginTime - String - 是否必填:否 - 按照修改时间段筛选,开始时间</li><li>ModifyEndTime - String - 是否必填:否 - 按照修改时间段筛选,结束时间</li></p>
|
|
43116
43110
|
:rtype: list of Filter
|
|
43117
43111
|
"""
|
|
43118
43112
|
return self._Filters
|
|
@@ -43148,9 +43142,9 @@ class DescribeLoginWhiteCombinedListResponse(AbstractModel):
|
|
|
43148
43142
|
|
|
43149
43143
|
def __init__(self):
|
|
43150
43144
|
r"""
|
|
43151
|
-
:param _TotalCount:
|
|
43145
|
+
:param _TotalCount: <p>总数量</p>
|
|
43152
43146
|
:type TotalCount: int
|
|
43153
|
-
:param _LoginWhiteCombinedInfos:
|
|
43147
|
+
:param _LoginWhiteCombinedInfos: <p>合并后的白名单列表</p>
|
|
43154
43148
|
:type LoginWhiteCombinedInfos: list of LoginWhiteCombinedInfo
|
|
43155
43149
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
43156
43150
|
:type RequestId: str
|
|
@@ -43161,7 +43155,7 @@ class DescribeLoginWhiteCombinedListResponse(AbstractModel):
|
|
|
43161
43155
|
|
|
43162
43156
|
@property
|
|
43163
43157
|
def TotalCount(self):
|
|
43164
|
-
r"""
|
|
43158
|
+
r"""<p>总数量</p>
|
|
43165
43159
|
:rtype: int
|
|
43166
43160
|
"""
|
|
43167
43161
|
return self._TotalCount
|
|
@@ -43172,7 +43166,7 @@ class DescribeLoginWhiteCombinedListResponse(AbstractModel):
|
|
|
43172
43166
|
|
|
43173
43167
|
@property
|
|
43174
43168
|
def LoginWhiteCombinedInfos(self):
|
|
43175
|
-
r"""
|
|
43169
|
+
r"""<p>合并后的白名单列表</p>
|
|
43176
43170
|
:rtype: list of LoginWhiteCombinedInfo
|
|
43177
43171
|
"""
|
|
43178
43172
|
return self._LoginWhiteCombinedInfos
|
|
@@ -43211,13 +43205,13 @@ class DescribeLoginWhiteHostListRequest(AbstractModel):
|
|
|
43211
43205
|
|
|
43212
43206
|
def __init__(self):
|
|
43213
43207
|
r"""
|
|
43214
|
-
:param _Id:
|
|
43208
|
+
:param _Id: <p>白名单ID</p>
|
|
43215
43209
|
:type Id: int
|
|
43216
|
-
:param _Limit:
|
|
43210
|
+
:param _Limit: <p>需要返回的数量,最大值为1000</p>
|
|
43217
43211
|
:type Limit: int
|
|
43218
|
-
:param _Offset:
|
|
43212
|
+
:param _Offset: <p>偏移量,默认为0。</p>
|
|
43219
43213
|
:type Offset: int
|
|
43220
|
-
:param _Filters:
|
|
43214
|
+
:param _Filters: <p>过滤条件 <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li></p>
|
|
43221
43215
|
:type Filters: list of AssetFilters
|
|
43222
43216
|
"""
|
|
43223
43217
|
self._Id = None
|
|
@@ -43227,7 +43221,7 @@ class DescribeLoginWhiteHostListRequest(AbstractModel):
|
|
|
43227
43221
|
|
|
43228
43222
|
@property
|
|
43229
43223
|
def Id(self):
|
|
43230
|
-
r"""
|
|
43224
|
+
r"""<p>白名单ID</p>
|
|
43231
43225
|
:rtype: int
|
|
43232
43226
|
"""
|
|
43233
43227
|
return self._Id
|
|
@@ -43238,7 +43232,7 @@ class DescribeLoginWhiteHostListRequest(AbstractModel):
|
|
|
43238
43232
|
|
|
43239
43233
|
@property
|
|
43240
43234
|
def Limit(self):
|
|
43241
|
-
r"""
|
|
43235
|
+
r"""<p>需要返回的数量,最大值为1000</p>
|
|
43242
43236
|
:rtype: int
|
|
43243
43237
|
"""
|
|
43244
43238
|
return self._Limit
|
|
@@ -43249,7 +43243,7 @@ class DescribeLoginWhiteHostListRequest(AbstractModel):
|
|
|
43249
43243
|
|
|
43250
43244
|
@property
|
|
43251
43245
|
def Offset(self):
|
|
43252
|
-
r"""
|
|
43246
|
+
r"""<p>偏移量,默认为0。</p>
|
|
43253
43247
|
:rtype: int
|
|
43254
43248
|
"""
|
|
43255
43249
|
return self._Offset
|
|
@@ -43260,7 +43254,7 @@ class DescribeLoginWhiteHostListRequest(AbstractModel):
|
|
|
43260
43254
|
|
|
43261
43255
|
@property
|
|
43262
43256
|
def Filters(self):
|
|
43263
|
-
r"""
|
|
43257
|
+
r"""<p>过滤条件 <li>IpOrAlias - String - 是否必填:否 - 主机ip或别名筛选</li></p>
|
|
43264
43258
|
:rtype: list of AssetFilters
|
|
43265
43259
|
"""
|
|
43266
43260
|
return self._Filters
|
|
@@ -43297,9 +43291,9 @@ class DescribeLoginWhiteHostListResponse(AbstractModel):
|
|
|
43297
43291
|
|
|
43298
43292
|
def __init__(self):
|
|
43299
43293
|
r"""
|
|
43300
|
-
:param _TotalCount:
|
|
43294
|
+
:param _TotalCount: <p>总数</p>
|
|
43301
43295
|
:type TotalCount: int
|
|
43302
|
-
:param _Hosts:
|
|
43296
|
+
:param _Hosts: <p>服务器列表</p>
|
|
43303
43297
|
:type Hosts: list of HostDesc
|
|
43304
43298
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
43305
43299
|
:type RequestId: str
|
|
@@ -43310,7 +43304,7 @@ class DescribeLoginWhiteHostListResponse(AbstractModel):
|
|
|
43310
43304
|
|
|
43311
43305
|
@property
|
|
43312
43306
|
def TotalCount(self):
|
|
43313
|
-
r"""
|
|
43307
|
+
r"""<p>总数</p>
|
|
43314
43308
|
:rtype: int
|
|
43315
43309
|
"""
|
|
43316
43310
|
return self._TotalCount
|
|
@@ -43321,7 +43315,7 @@ class DescribeLoginWhiteHostListResponse(AbstractModel):
|
|
|
43321
43315
|
|
|
43322
43316
|
@property
|
|
43323
43317
|
def Hosts(self):
|
|
43324
|
-
r"""
|
|
43318
|
+
r"""<p>服务器列表</p>
|
|
43325
43319
|
:rtype: list of HostDesc
|
|
43326
43320
|
"""
|
|
43327
43321
|
return self._Hosts
|
|
@@ -43902,45 +43896,45 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
43902
43896
|
|
|
43903
43897
|
def __init__(self):
|
|
43904
43898
|
r"""
|
|
43905
|
-
:param _MachineCnt:
|
|
43899
|
+
:param _MachineCnt: <p>资产总数</p>
|
|
43906
43900
|
:type MachineCnt: int
|
|
43907
|
-
:param _TencentCloudMachineCnt:
|
|
43901
|
+
:param _TencentCloudMachineCnt: <p>腾讯云服务商机器数</p>
|
|
43908
43902
|
:type TencentCloudMachineCnt: int
|
|
43909
|
-
:param _AliCloudMachineCnt:
|
|
43903
|
+
:param _AliCloudMachineCnt: <p>阿里云服务商机器数</p>
|
|
43910
43904
|
:type AliCloudMachineCnt: int
|
|
43911
|
-
:param _BaiduCloudMachineCnt:
|
|
43905
|
+
:param _BaiduCloudMachineCnt: <p>百度云服务商机器数</p>
|
|
43912
43906
|
:type BaiduCloudMachineCnt: int
|
|
43913
|
-
:param _IDCMachineCnt: IDC
|
|
43907
|
+
:param _IDCMachineCnt: <p>IDC机器数</p>
|
|
43914
43908
|
:type IDCMachineCnt: int
|
|
43915
|
-
:param _OtherCloudMachineCnt:
|
|
43909
|
+
:param _OtherCloudMachineCnt: <p>其他云服务商机器数</p>
|
|
43916
43910
|
:type OtherCloudMachineCnt: int
|
|
43917
|
-
:param _ProtectMachineCnt:
|
|
43911
|
+
:param _ProtectMachineCnt: <p>已防护机器数</p>
|
|
43918
43912
|
:type ProtectMachineCnt: int
|
|
43919
|
-
:param _BaseMachineCnt:
|
|
43913
|
+
:param _BaseMachineCnt: <p>已防护基础版机器数</p>
|
|
43920
43914
|
:type BaseMachineCnt: int
|
|
43921
|
-
:param _SpecialtyMachineCnt:
|
|
43915
|
+
:param _SpecialtyMachineCnt: <p>已防护专业版机器数</p>
|
|
43922
43916
|
:type SpecialtyMachineCnt: int
|
|
43923
|
-
:param _FlagshipMachineCnt:
|
|
43917
|
+
:param _FlagshipMachineCnt: <p>已防护旗舰版机器数</p>
|
|
43924
43918
|
:type FlagshipMachineCnt: int
|
|
43925
|
-
:param _RiskMachineCnt:
|
|
43919
|
+
:param _RiskMachineCnt: <p>存在风险的机器数</p>
|
|
43926
43920
|
:type RiskMachineCnt: int
|
|
43927
|
-
:param _CompareYesterdayRiskMachineCnt:
|
|
43921
|
+
:param _CompareYesterdayRiskMachineCnt: <p>比较昨日风险机器数</p>
|
|
43928
43922
|
:type CompareYesterdayRiskMachineCnt: int
|
|
43929
|
-
:param _CompareYesterdayNotProtectMachineCnt:
|
|
43923
|
+
:param _CompareYesterdayNotProtectMachineCnt: <p>比较昨日未防护机器数</p>
|
|
43930
43924
|
:type CompareYesterdayNotProtectMachineCnt: int
|
|
43931
|
-
:param _CompareYesterdayDeadlineMachineCnt:
|
|
43925
|
+
:param _CompareYesterdayDeadlineMachineCnt: <p>比较昨日即将到期的机器数</p>
|
|
43932
43926
|
:type CompareYesterdayDeadlineMachineCnt: int
|
|
43933
|
-
:param _DeadlineMachineCnt:
|
|
43927
|
+
:param _DeadlineMachineCnt: <p>即将到期的机器数</p>
|
|
43934
43928
|
:type DeadlineMachineCnt: int
|
|
43935
|
-
:param _NotProtectMachineCnt:
|
|
43929
|
+
:param _NotProtectMachineCnt: <p>未防护机器数</p>
|
|
43936
43930
|
:type NotProtectMachineCnt: int
|
|
43937
|
-
:param _LHGeneralDiscountCnt:
|
|
43931
|
+
:param _LHGeneralDiscountCnt: <p>已防护轻量机器数(Lighthouse机器)</p>
|
|
43938
43932
|
:type LHGeneralDiscountCnt: int
|
|
43939
|
-
:param _CompareYesterdayMachineCnt:
|
|
43933
|
+
:param _CompareYesterdayMachineCnt: <p>比较昨日新增的主机数</p>
|
|
43940
43934
|
:type CompareYesterdayMachineCnt: int
|
|
43941
|
-
:param _MachineDestroyAfterOfflineHours:
|
|
43935
|
+
:param _MachineDestroyAfterOfflineHours: <p>自动清理时间,最大720小时,最小0, 默认0 ,0=关闭</p>
|
|
43942
43936
|
:type MachineDestroyAfterOfflineHours: int
|
|
43943
|
-
:param _CloudFrom:
|
|
43937
|
+
:param _CloudFrom: <p>云服务器类型数组</p>
|
|
43944
43938
|
:type CloudFrom: list of CloudFromCnt
|
|
43945
43939
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
43946
43940
|
:type RequestId: str
|
|
@@ -43969,7 +43963,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
43969
43963
|
|
|
43970
43964
|
@property
|
|
43971
43965
|
def MachineCnt(self):
|
|
43972
|
-
r"""
|
|
43966
|
+
r"""<p>资产总数</p>
|
|
43973
43967
|
:rtype: int
|
|
43974
43968
|
"""
|
|
43975
43969
|
return self._MachineCnt
|
|
@@ -43982,7 +43976,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
43982
43976
|
def TencentCloudMachineCnt(self):
|
|
43983
43977
|
warnings.warn("parameter `TencentCloudMachineCnt` is deprecated", DeprecationWarning)
|
|
43984
43978
|
|
|
43985
|
-
r"""
|
|
43979
|
+
r"""<p>腾讯云服务商机器数</p>
|
|
43986
43980
|
:rtype: int
|
|
43987
43981
|
"""
|
|
43988
43982
|
return self._TencentCloudMachineCnt
|
|
@@ -43997,7 +43991,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
43997
43991
|
def AliCloudMachineCnt(self):
|
|
43998
43992
|
warnings.warn("parameter `AliCloudMachineCnt` is deprecated", DeprecationWarning)
|
|
43999
43993
|
|
|
44000
|
-
r"""
|
|
43994
|
+
r"""<p>阿里云服务商机器数</p>
|
|
44001
43995
|
:rtype: int
|
|
44002
43996
|
"""
|
|
44003
43997
|
return self._AliCloudMachineCnt
|
|
@@ -44012,7 +44006,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44012
44006
|
def BaiduCloudMachineCnt(self):
|
|
44013
44007
|
warnings.warn("parameter `BaiduCloudMachineCnt` is deprecated", DeprecationWarning)
|
|
44014
44008
|
|
|
44015
|
-
r"""
|
|
44009
|
+
r"""<p>百度云服务商机器数</p>
|
|
44016
44010
|
:rtype: int
|
|
44017
44011
|
"""
|
|
44018
44012
|
return self._BaiduCloudMachineCnt
|
|
@@ -44027,7 +44021,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44027
44021
|
def IDCMachineCnt(self):
|
|
44028
44022
|
warnings.warn("parameter `IDCMachineCnt` is deprecated", DeprecationWarning)
|
|
44029
44023
|
|
|
44030
|
-
r"""IDC
|
|
44024
|
+
r"""<p>IDC机器数</p>
|
|
44031
44025
|
:rtype: int
|
|
44032
44026
|
"""
|
|
44033
44027
|
return self._IDCMachineCnt
|
|
@@ -44042,7 +44036,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44042
44036
|
def OtherCloudMachineCnt(self):
|
|
44043
44037
|
warnings.warn("parameter `OtherCloudMachineCnt` is deprecated", DeprecationWarning)
|
|
44044
44038
|
|
|
44045
|
-
r"""
|
|
44039
|
+
r"""<p>其他云服务商机器数</p>
|
|
44046
44040
|
:rtype: int
|
|
44047
44041
|
"""
|
|
44048
44042
|
return self._OtherCloudMachineCnt
|
|
@@ -44055,7 +44049,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44055
44049
|
|
|
44056
44050
|
@property
|
|
44057
44051
|
def ProtectMachineCnt(self):
|
|
44058
|
-
r"""
|
|
44052
|
+
r"""<p>已防护机器数</p>
|
|
44059
44053
|
:rtype: int
|
|
44060
44054
|
"""
|
|
44061
44055
|
return self._ProtectMachineCnt
|
|
@@ -44066,7 +44060,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44066
44060
|
|
|
44067
44061
|
@property
|
|
44068
44062
|
def BaseMachineCnt(self):
|
|
44069
|
-
r"""
|
|
44063
|
+
r"""<p>已防护基础版机器数</p>
|
|
44070
44064
|
:rtype: int
|
|
44071
44065
|
"""
|
|
44072
44066
|
return self._BaseMachineCnt
|
|
@@ -44077,7 +44071,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44077
44071
|
|
|
44078
44072
|
@property
|
|
44079
44073
|
def SpecialtyMachineCnt(self):
|
|
44080
|
-
r"""
|
|
44074
|
+
r"""<p>已防护专业版机器数</p>
|
|
44081
44075
|
:rtype: int
|
|
44082
44076
|
"""
|
|
44083
44077
|
return self._SpecialtyMachineCnt
|
|
@@ -44088,7 +44082,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44088
44082
|
|
|
44089
44083
|
@property
|
|
44090
44084
|
def FlagshipMachineCnt(self):
|
|
44091
|
-
r"""
|
|
44085
|
+
r"""<p>已防护旗舰版机器数</p>
|
|
44092
44086
|
:rtype: int
|
|
44093
44087
|
"""
|
|
44094
44088
|
return self._FlagshipMachineCnt
|
|
@@ -44099,7 +44093,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44099
44093
|
|
|
44100
44094
|
@property
|
|
44101
44095
|
def RiskMachineCnt(self):
|
|
44102
|
-
r"""
|
|
44096
|
+
r"""<p>存在风险的机器数</p>
|
|
44103
44097
|
:rtype: int
|
|
44104
44098
|
"""
|
|
44105
44099
|
return self._RiskMachineCnt
|
|
@@ -44110,7 +44104,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44110
44104
|
|
|
44111
44105
|
@property
|
|
44112
44106
|
def CompareYesterdayRiskMachineCnt(self):
|
|
44113
|
-
r"""
|
|
44107
|
+
r"""<p>比较昨日风险机器数</p>
|
|
44114
44108
|
:rtype: int
|
|
44115
44109
|
"""
|
|
44116
44110
|
return self._CompareYesterdayRiskMachineCnt
|
|
@@ -44121,7 +44115,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44121
44115
|
|
|
44122
44116
|
@property
|
|
44123
44117
|
def CompareYesterdayNotProtectMachineCnt(self):
|
|
44124
|
-
r"""
|
|
44118
|
+
r"""<p>比较昨日未防护机器数</p>
|
|
44125
44119
|
:rtype: int
|
|
44126
44120
|
"""
|
|
44127
44121
|
return self._CompareYesterdayNotProtectMachineCnt
|
|
@@ -44132,7 +44126,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44132
44126
|
|
|
44133
44127
|
@property
|
|
44134
44128
|
def CompareYesterdayDeadlineMachineCnt(self):
|
|
44135
|
-
r"""
|
|
44129
|
+
r"""<p>比较昨日即将到期的机器数</p>
|
|
44136
44130
|
:rtype: int
|
|
44137
44131
|
"""
|
|
44138
44132
|
return self._CompareYesterdayDeadlineMachineCnt
|
|
@@ -44143,7 +44137,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44143
44137
|
|
|
44144
44138
|
@property
|
|
44145
44139
|
def DeadlineMachineCnt(self):
|
|
44146
|
-
r"""
|
|
44140
|
+
r"""<p>即将到期的机器数</p>
|
|
44147
44141
|
:rtype: int
|
|
44148
44142
|
"""
|
|
44149
44143
|
return self._DeadlineMachineCnt
|
|
@@ -44154,7 +44148,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44154
44148
|
|
|
44155
44149
|
@property
|
|
44156
44150
|
def NotProtectMachineCnt(self):
|
|
44157
|
-
r"""
|
|
44151
|
+
r"""<p>未防护机器数</p>
|
|
44158
44152
|
:rtype: int
|
|
44159
44153
|
"""
|
|
44160
44154
|
return self._NotProtectMachineCnt
|
|
@@ -44165,7 +44159,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44165
44159
|
|
|
44166
44160
|
@property
|
|
44167
44161
|
def LHGeneralDiscountCnt(self):
|
|
44168
|
-
r"""
|
|
44162
|
+
r"""<p>已防护轻量机器数(Lighthouse机器)</p>
|
|
44169
44163
|
:rtype: int
|
|
44170
44164
|
"""
|
|
44171
44165
|
return self._LHGeneralDiscountCnt
|
|
@@ -44176,7 +44170,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44176
44170
|
|
|
44177
44171
|
@property
|
|
44178
44172
|
def CompareYesterdayMachineCnt(self):
|
|
44179
|
-
r"""
|
|
44173
|
+
r"""<p>比较昨日新增的主机数</p>
|
|
44180
44174
|
:rtype: int
|
|
44181
44175
|
"""
|
|
44182
44176
|
return self._CompareYesterdayMachineCnt
|
|
@@ -44187,7 +44181,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44187
44181
|
|
|
44188
44182
|
@property
|
|
44189
44183
|
def MachineDestroyAfterOfflineHours(self):
|
|
44190
|
-
r"""
|
|
44184
|
+
r"""<p>自动清理时间,最大720小时,最小0, 默认0 ,0=关闭</p>
|
|
44191
44185
|
:rtype: int
|
|
44192
44186
|
"""
|
|
44193
44187
|
return self._MachineDestroyAfterOfflineHours
|
|
@@ -44198,7 +44192,7 @@ class DescribeMachineGeneralResponse(AbstractModel):
|
|
|
44198
44192
|
|
|
44199
44193
|
@property
|
|
44200
44194
|
def CloudFrom(self):
|
|
44201
|
-
r"""
|
|
44195
|
+
r"""<p>云服务器类型数组</p>
|
|
44202
44196
|
:rtype: list of CloudFromCnt
|
|
44203
44197
|
"""
|
|
44204
44198
|
return self._CloudFrom
|
|
@@ -73263,14 +73257,14 @@ class ExportTasksRequest(AbstractModel):
|
|
|
73263
73257
|
|
|
73264
73258
|
def __init__(self):
|
|
73265
73259
|
r"""
|
|
73266
|
-
:param _TaskId:
|
|
73260
|
+
:param _TaskId: <p>任务ID</p>
|
|
73267
73261
|
:type TaskId: str
|
|
73268
73262
|
"""
|
|
73269
73263
|
self._TaskId = None
|
|
73270
73264
|
|
|
73271
73265
|
@property
|
|
73272
73266
|
def TaskId(self):
|
|
73273
|
-
r"""
|
|
73267
|
+
r"""<p>任务ID</p>
|
|
73274
73268
|
:rtype: str
|
|
73275
73269
|
"""
|
|
73276
73270
|
return self._TaskId
|
|
@@ -73299,20 +73293,23 @@ class ExportTasksResponse(AbstractModel):
|
|
|
73299
73293
|
|
|
73300
73294
|
def __init__(self):
|
|
73301
73295
|
r"""
|
|
73302
|
-
:param _Status: PENDING:正在生成下载链接,FINISHED:下载链接已生成,ERROR
|
|
73296
|
+
:param _Status: <p>PENDING:正在生成下载链接,FINISHED:下载链接已生成,ERROR:网络异常等异常情况</p>
|
|
73303
73297
|
:type Status: str
|
|
73304
|
-
:param _DownloadUrl:
|
|
73298
|
+
:param _DownloadUrl: <p>下载链接</p>
|
|
73305
73299
|
:type DownloadUrl: str
|
|
73300
|
+
:param _FileName: <p>文件名称</p>
|
|
73301
|
+
:type FileName: str
|
|
73306
73302
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
73307
73303
|
:type RequestId: str
|
|
73308
73304
|
"""
|
|
73309
73305
|
self._Status = None
|
|
73310
73306
|
self._DownloadUrl = None
|
|
73307
|
+
self._FileName = None
|
|
73311
73308
|
self._RequestId = None
|
|
73312
73309
|
|
|
73313
73310
|
@property
|
|
73314
73311
|
def Status(self):
|
|
73315
|
-
r"""PENDING:正在生成下载链接,FINISHED:下载链接已生成,ERROR
|
|
73312
|
+
r"""<p>PENDING:正在生成下载链接,FINISHED:下载链接已生成,ERROR:网络异常等异常情况</p>
|
|
73316
73313
|
:rtype: str
|
|
73317
73314
|
"""
|
|
73318
73315
|
return self._Status
|
|
@@ -73323,7 +73320,7 @@ class ExportTasksResponse(AbstractModel):
|
|
|
73323
73320
|
|
|
73324
73321
|
@property
|
|
73325
73322
|
def DownloadUrl(self):
|
|
73326
|
-
r"""
|
|
73323
|
+
r"""<p>下载链接</p>
|
|
73327
73324
|
:rtype: str
|
|
73328
73325
|
"""
|
|
73329
73326
|
return self._DownloadUrl
|
|
@@ -73332,6 +73329,17 @@ class ExportTasksResponse(AbstractModel):
|
|
|
73332
73329
|
def DownloadUrl(self, DownloadUrl):
|
|
73333
73330
|
self._DownloadUrl = DownloadUrl
|
|
73334
73331
|
|
|
73332
|
+
@property
|
|
73333
|
+
def FileName(self):
|
|
73334
|
+
r"""<p>文件名称</p>
|
|
73335
|
+
:rtype: str
|
|
73336
|
+
"""
|
|
73337
|
+
return self._FileName
|
|
73338
|
+
|
|
73339
|
+
@FileName.setter
|
|
73340
|
+
def FileName(self, FileName):
|
|
73341
|
+
self._FileName = FileName
|
|
73342
|
+
|
|
73335
73343
|
@property
|
|
73336
73344
|
def RequestId(self):
|
|
73337
73345
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -73347,6 +73355,7 @@ class ExportTasksResponse(AbstractModel):
|
|
|
73347
73355
|
def _deserialize(self, params):
|
|
73348
73356
|
self._Status = params.get("Status")
|
|
73349
73357
|
self._DownloadUrl = params.get("DownloadUrl")
|
|
73358
|
+
self._FileName = params.get("FileName")
|
|
73350
73359
|
self._RequestId = params.get("RequestId")
|
|
73351
73360
|
|
|
73352
73361
|
|
|
@@ -86663,23 +86672,23 @@ class ModifyLoginWhiteRecordRequest(AbstractModel):
|
|
|
86663
86672
|
|
|
86664
86673
|
def __init__(self):
|
|
86665
86674
|
r"""
|
|
86666
|
-
:param _UserName:
|
|
86675
|
+
:param _UserName: <p>白名单用户(多个用户逗号隔开)</p>
|
|
86667
86676
|
:type UserName: str
|
|
86668
|
-
:param _SrcIp:
|
|
86677
|
+
:param _SrcIp: <p>更新后记录的白名单维度信息</p>
|
|
86669
86678
|
:type SrcIp: str
|
|
86670
|
-
:param _StartTime:
|
|
86679
|
+
:param _StartTime: <p>开始时间</p>
|
|
86671
86680
|
:type StartTime: str
|
|
86672
|
-
:param _EndTime:
|
|
86681
|
+
:param _EndTime: <p>结束时间</p>
|
|
86673
86682
|
:type EndTime: str
|
|
86674
|
-
:param _Remark:
|
|
86683
|
+
:param _Remark: <p>备注</p>
|
|
86675
86684
|
:type Remark: str
|
|
86676
|
-
:param _IsGlobal:
|
|
86685
|
+
:param _IsGlobal: <p>是否对所有服务器生效,0-否,1-是</p>
|
|
86677
86686
|
:type IsGlobal: int
|
|
86678
|
-
:param _Id:
|
|
86687
|
+
:param _Id: <p>白名单ID</p>
|
|
86679
86688
|
:type Id: int
|
|
86680
|
-
:param _Hosts:
|
|
86689
|
+
:param _Hosts: <p>服务器列表</p>
|
|
86681
86690
|
:type Hosts: list of HostInfo
|
|
86682
|
-
:param _Places:
|
|
86691
|
+
:param _Places: <p>地域列表</p>
|
|
86683
86692
|
:type Places: list of Place
|
|
86684
86693
|
"""
|
|
86685
86694
|
self._UserName = None
|
|
@@ -86694,7 +86703,7 @@ class ModifyLoginWhiteRecordRequest(AbstractModel):
|
|
|
86694
86703
|
|
|
86695
86704
|
@property
|
|
86696
86705
|
def UserName(self):
|
|
86697
|
-
r"""
|
|
86706
|
+
r"""<p>白名单用户(多个用户逗号隔开)</p>
|
|
86698
86707
|
:rtype: str
|
|
86699
86708
|
"""
|
|
86700
86709
|
return self._UserName
|
|
@@ -86705,7 +86714,7 @@ class ModifyLoginWhiteRecordRequest(AbstractModel):
|
|
|
86705
86714
|
|
|
86706
86715
|
@property
|
|
86707
86716
|
def SrcIp(self):
|
|
86708
|
-
r"""
|
|
86717
|
+
r"""<p>更新后记录的白名单维度信息</p>
|
|
86709
86718
|
:rtype: str
|
|
86710
86719
|
"""
|
|
86711
86720
|
return self._SrcIp
|
|
@@ -86716,7 +86725,7 @@ class ModifyLoginWhiteRecordRequest(AbstractModel):
|
|
|
86716
86725
|
|
|
86717
86726
|
@property
|
|
86718
86727
|
def StartTime(self):
|
|
86719
|
-
r"""
|
|
86728
|
+
r"""<p>开始时间</p>
|
|
86720
86729
|
:rtype: str
|
|
86721
86730
|
"""
|
|
86722
86731
|
return self._StartTime
|
|
@@ -86727,7 +86736,7 @@ class ModifyLoginWhiteRecordRequest(AbstractModel):
|
|
|
86727
86736
|
|
|
86728
86737
|
@property
|
|
86729
86738
|
def EndTime(self):
|
|
86730
|
-
r"""
|
|
86739
|
+
r"""<p>结束时间</p>
|
|
86731
86740
|
:rtype: str
|
|
86732
86741
|
"""
|
|
86733
86742
|
return self._EndTime
|
|
@@ -86738,7 +86747,7 @@ class ModifyLoginWhiteRecordRequest(AbstractModel):
|
|
|
86738
86747
|
|
|
86739
86748
|
@property
|
|
86740
86749
|
def Remark(self):
|
|
86741
|
-
r"""
|
|
86750
|
+
r"""<p>备注</p>
|
|
86742
86751
|
:rtype: str
|
|
86743
86752
|
"""
|
|
86744
86753
|
return self._Remark
|
|
@@ -86749,7 +86758,7 @@ class ModifyLoginWhiteRecordRequest(AbstractModel):
|
|
|
86749
86758
|
|
|
86750
86759
|
@property
|
|
86751
86760
|
def IsGlobal(self):
|
|
86752
|
-
r"""
|
|
86761
|
+
r"""<p>是否对所有服务器生效,0-否,1-是</p>
|
|
86753
86762
|
:rtype: int
|
|
86754
86763
|
"""
|
|
86755
86764
|
return self._IsGlobal
|
|
@@ -86760,7 +86769,7 @@ class ModifyLoginWhiteRecordRequest(AbstractModel):
|
|
|
86760
86769
|
|
|
86761
86770
|
@property
|
|
86762
86771
|
def Id(self):
|
|
86763
|
-
r"""
|
|
86772
|
+
r"""<p>白名单ID</p>
|
|
86764
86773
|
:rtype: int
|
|
86765
86774
|
"""
|
|
86766
86775
|
return self._Id
|
|
@@ -86771,7 +86780,7 @@ class ModifyLoginWhiteRecordRequest(AbstractModel):
|
|
|
86771
86780
|
|
|
86772
86781
|
@property
|
|
86773
86782
|
def Hosts(self):
|
|
86774
|
-
r"""
|
|
86783
|
+
r"""<p>服务器列表</p>
|
|
86775
86784
|
:rtype: list of HostInfo
|
|
86776
86785
|
"""
|
|
86777
86786
|
return self._Hosts
|
|
@@ -86782,7 +86791,7 @@ class ModifyLoginWhiteRecordRequest(AbstractModel):
|
|
|
86782
86791
|
|
|
86783
86792
|
@property
|
|
86784
86793
|
def Places(self):
|
|
86785
|
-
r"""
|
|
86794
|
+
r"""<p>地域列表</p>
|
|
86786
86795
|
:rtype: list of Place
|
|
86787
86796
|
"""
|
|
86788
86797
|
return self._Places
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cwp
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.112
|
|
4
4
|
Summary: Tencent Cloud Cwp SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.112
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.112
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.111
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|