alibabacloud-sls20201230 5.5.0__py3-none-any.whl → 5.5.1__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.
- alibabacloud_sls20201230/__init__.py +1 -1
- alibabacloud_sls20201230/client.py +0 -1
- alibabacloud_sls20201230/models.py +18 -0
- {alibabacloud_sls20201230-5.5.0.dist-info → alibabacloud_sls20201230-5.5.1.dist-info}/METADATA +1 -1
- alibabacloud_sls20201230-5.5.1.dist-info/RECORD +8 -0
- alibabacloud_sls20201230-5.5.0.dist-info/RECORD +0 -8
- {alibabacloud_sls20201230-5.5.0.dist-info → alibabacloud_sls20201230-5.5.1.dist-info}/LICENSE +0 -0
- {alibabacloud_sls20201230-5.5.0.dist-info → alibabacloud_sls20201230-5.5.1.dist-info}/WHEEL +0 -0
- {alibabacloud_sls20201230-5.5.0.dist-info → alibabacloud_sls20201230-5.5.1.dist-info}/top_level.txt +0 -0
@@ -1 +1 @@
|
|
1
|
-
__version__ = '5.5.
|
1
|
+
__version__ = '5.5.1'
|
@@ -4242,11 +4242,13 @@ class Logstore(TeaModel):
|
|
4242
4242
|
class Machine(TeaModel):
|
4243
4243
|
def __init__(
|
4244
4244
|
self,
|
4245
|
+
host_id: str = None,
|
4245
4246
|
ip: str = None,
|
4246
4247
|
last_heartbeat_time: int = None,
|
4247
4248
|
machine_uniqueid: str = None,
|
4248
4249
|
userdefined_id: str = None,
|
4249
4250
|
):
|
4251
|
+
self.host_id = host_id
|
4250
4252
|
self.ip = ip
|
4251
4253
|
self.last_heartbeat_time = last_heartbeat_time
|
4252
4254
|
self.machine_uniqueid = machine_uniqueid
|
@@ -4261,6 +4263,8 @@ class Machine(TeaModel):
|
|
4261
4263
|
return _map
|
4262
4264
|
|
4263
4265
|
result = dict()
|
4266
|
+
if self.host_id is not None:
|
4267
|
+
result['host-id'] = self.host_id
|
4264
4268
|
if self.ip is not None:
|
4265
4269
|
result['ip'] = self.ip
|
4266
4270
|
if self.last_heartbeat_time is not None:
|
@@ -4273,6 +4277,8 @@ class Machine(TeaModel):
|
|
4273
4277
|
|
4274
4278
|
def from_map(self, m: dict = None):
|
4275
4279
|
m = m or dict()
|
4280
|
+
if m.get('host-id') is not None:
|
4281
|
+
self.host_id = m.get('host-id')
|
4276
4282
|
if m.get('ip') is not None:
|
4277
4283
|
self.ip = m.get('ip')
|
4278
4284
|
if m.get('lastHeartbeatTime') is not None:
|
@@ -10143,6 +10149,7 @@ class GetDownloadJobResponseBodyExecutionDetails(TeaModel):
|
|
10143
10149
|
file_path: str = None,
|
10144
10150
|
file_size: int = None,
|
10145
10151
|
log_count: int = None,
|
10152
|
+
notice: str = None,
|
10146
10153
|
progress: int = None,
|
10147
10154
|
):
|
10148
10155
|
self.check_sum = check_sum
|
@@ -10156,6 +10163,7 @@ class GetDownloadJobResponseBodyExecutionDetails(TeaModel):
|
|
10156
10163
|
self.file_size = file_size
|
10157
10164
|
# 下载日志条数
|
10158
10165
|
self.log_count = log_count
|
10166
|
+
self.notice = notice
|
10159
10167
|
# 下载进度
|
10160
10168
|
self.progress = progress
|
10161
10169
|
|
@@ -10180,6 +10188,8 @@ class GetDownloadJobResponseBodyExecutionDetails(TeaModel):
|
|
10180
10188
|
result['fileSize'] = self.file_size
|
10181
10189
|
if self.log_count is not None:
|
10182
10190
|
result['logCount'] = self.log_count
|
10191
|
+
if self.notice is not None:
|
10192
|
+
result['notice'] = self.notice
|
10183
10193
|
if self.progress is not None:
|
10184
10194
|
result['progress'] = self.progress
|
10185
10195
|
return result
|
@@ -10198,6 +10208,8 @@ class GetDownloadJobResponseBodyExecutionDetails(TeaModel):
|
|
10198
10208
|
self.file_size = m.get('fileSize')
|
10199
10209
|
if m.get('logCount') is not None:
|
10200
10210
|
self.log_count = m.get('logCount')
|
10211
|
+
if m.get('notice') is not None:
|
10212
|
+
self.notice = m.get('notice')
|
10201
10213
|
if m.get('progress') is not None:
|
10202
10214
|
self.progress = m.get('progress')
|
10203
10215
|
return self
|
@@ -14268,6 +14280,7 @@ class ListDownloadJobsResponseBodyResultsExecutionDetails(TeaModel):
|
|
14268
14280
|
file_path: str = None,
|
14269
14281
|
file_size: int = None,
|
14270
14282
|
log_count: int = None,
|
14283
|
+
notice: str = None,
|
14271
14284
|
progress: int = None,
|
14272
14285
|
):
|
14273
14286
|
self.check_sum = check_sum
|
@@ -14281,6 +14294,7 @@ class ListDownloadJobsResponseBodyResultsExecutionDetails(TeaModel):
|
|
14281
14294
|
self.file_size = file_size
|
14282
14295
|
# 下载日志条数
|
14283
14296
|
self.log_count = log_count
|
14297
|
+
self.notice = notice
|
14284
14298
|
# 下载进度
|
14285
14299
|
self.progress = progress
|
14286
14300
|
|
@@ -14305,6 +14319,8 @@ class ListDownloadJobsResponseBodyResultsExecutionDetails(TeaModel):
|
|
14305
14319
|
result['fileSize'] = self.file_size
|
14306
14320
|
if self.log_count is not None:
|
14307
14321
|
result['logCount'] = self.log_count
|
14322
|
+
if self.notice is not None:
|
14323
|
+
result['notice'] = self.notice
|
14308
14324
|
if self.progress is not None:
|
14309
14325
|
result['progress'] = self.progress
|
14310
14326
|
return result
|
@@ -14323,6 +14339,8 @@ class ListDownloadJobsResponseBodyResultsExecutionDetails(TeaModel):
|
|
14323
14339
|
self.file_size = m.get('fileSize')
|
14324
14340
|
if m.get('logCount') is not None:
|
14325
14341
|
self.log_count = m.get('logCount')
|
14342
|
+
if m.get('notice') is not None:
|
14343
|
+
self.notice = m.get('notice')
|
14326
14344
|
if m.get('progress') is not None:
|
14327
14345
|
self.progress = m.get('progress')
|
14328
14346
|
return self
|
@@ -0,0 +1,8 @@
|
|
1
|
+
alibabacloud_sls20201230/__init__.py,sha256=zSnfgH_gtbVxSCVmJ4RYavNfFCcc17inoPWuzyziXqk,21
|
2
|
+
alibabacloud_sls20201230/client.py,sha256=nADaOcQxaOj7okQqy7vXCw8AS8k7m-DKqoX9ajWyKCk,1001780
|
3
|
+
alibabacloud_sls20201230/models.py,sha256=SMQ1wRfFNTLaQ2oRvtvRuCctoZtddbC2-ef3NzzPm0o,655858
|
4
|
+
alibabacloud_sls20201230-5.5.1.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
+
alibabacloud_sls20201230-5.5.1.dist-info/METADATA,sha256=WBwRfaGCLZ1l9KV7B1YRj9X14xLaVA0g4qTsmfSKc9U,2318
|
6
|
+
alibabacloud_sls20201230-5.5.1.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
7
|
+
alibabacloud_sls20201230-5.5.1.dist-info/top_level.txt,sha256=_m_h-kYhApsSWSuotU7YSM9-BDg5IBt6N8Tw-HaO3zU,25
|
8
|
+
alibabacloud_sls20201230-5.5.1.dist-info/RECORD,,
|
@@ -1,8 +0,0 @@
|
|
1
|
-
alibabacloud_sls20201230/__init__.py,sha256=dddEuygHpYiuV1RwbvRruMr49pkRGRUOQG8xW2w2DAE,21
|
2
|
-
alibabacloud_sls20201230/client.py,sha256=7eumAQ7ADPlDT-zzWvGIg-QOS_aHNRZtAMo48Cvmw1o,1001821
|
3
|
-
alibabacloud_sls20201230/models.py,sha256=z6sODtZZ64bf4SD9tKwMO3yYuedniT4aBUY1WOvivO0,655195
|
4
|
-
alibabacloud_sls20201230-5.5.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
5
|
-
alibabacloud_sls20201230-5.5.0.dist-info/METADATA,sha256=hYBaNaJ2xTT8VztLQuK-ZZQAKF9UWGetgkuc6_ule10,2318
|
6
|
-
alibabacloud_sls20201230-5.5.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
7
|
-
alibabacloud_sls20201230-5.5.0.dist-info/top_level.txt,sha256=_m_h-kYhApsSWSuotU7YSM9-BDg5IBt6N8Tw-HaO3zU,25
|
8
|
-
alibabacloud_sls20201230-5.5.0.dist-info/RECORD,,
|
{alibabacloud_sls20201230-5.5.0.dist-info → alibabacloud_sls20201230-5.5.1.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|
{alibabacloud_sls20201230-5.5.0.dist-info → alibabacloud_sls20201230-5.5.1.dist-info}/top_level.txt
RENAMED
File without changes
|